Fix Snapshot restoration failure on Windows (#9491)
* Close Blooms DB files before DB restoration * PR Grumbles I * PR Grumble * Grumble
This commit is contained in:
parent
f3aed42dd6
commit
baf5be09dc
@ -35,6 +35,7 @@ use encoded;
|
|||||||
use engines::epoch::{Transition as EpochTransition, PendingTransition as PendingEpochTransition};
|
use engines::epoch::{Transition as EpochTransition, PendingTransition as PendingEpochTransition};
|
||||||
use engines::ForkChoice;
|
use engines::ForkChoice;
|
||||||
use ethereum_types::{H256, Bloom, BloomRef, U256};
|
use ethereum_types::{H256, Bloom, BloomRef, U256};
|
||||||
|
use error::Error as EthcoreError;
|
||||||
use header::*;
|
use header::*;
|
||||||
use heapsize::HeapSizeOf;
|
use heapsize::HeapSizeOf;
|
||||||
use itertools::Itertools;
|
use itertools::Itertools;
|
||||||
@ -60,6 +61,21 @@ pub trait BlockChainDB: Send + Sync {
|
|||||||
|
|
||||||
/// Trace blooms database.
|
/// Trace blooms database.
|
||||||
fn trace_blooms(&self) -> &blooms_db::Database;
|
fn trace_blooms(&self) -> &blooms_db::Database;
|
||||||
|
|
||||||
|
/// Restore the DB from the given path
|
||||||
|
fn restore(&self, new_db: &str) -> Result<(), EthcoreError> {
|
||||||
|
// First, close the Blooms databases
|
||||||
|
self.blooms().close()?;
|
||||||
|
self.trace_blooms().close()?;
|
||||||
|
|
||||||
|
// Restore the key_value DB
|
||||||
|
self.key_value().restore(new_db)?;
|
||||||
|
|
||||||
|
// Re-open the Blooms databases
|
||||||
|
self.blooms().reopen()?;
|
||||||
|
self.trace_blooms().reopen()?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Generic database handler. This trait contains one function `open`. When called, it opens database with a
|
/// Generic database handler. This trait contains one function `open`. When called, it opens database with a
|
||||||
|
@ -1298,9 +1298,7 @@ impl snapshot::DatabaseRestore for Client {
|
|||||||
let mut tracedb = self.tracedb.write();
|
let mut tracedb = self.tracedb.write();
|
||||||
self.importer.miner.clear();
|
self.importer.miner.clear();
|
||||||
let db = self.db.write();
|
let db = self.db.write();
|
||||||
db.key_value().restore(new_db)?;
|
db.restore(new_db)?;
|
||||||
db.blooms().reopen()?;
|
|
||||||
db.trace_blooms().reopen()?;
|
|
||||||
|
|
||||||
let cache_size = state_db.cache_size();
|
let cache_size = state_db.cache_size();
|
||||||
*state_db = StateDB::new(journaldb::new(db.key_value().clone(), self.pruning, ::db::COL_STATE), cache_size);
|
*state_db = StateDB::new(journaldb::new(db.key_value().clone(), self.pruning, ::db::COL_STATE), cache_size);
|
||||||
|
@ -14,13 +14,17 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
use std::{io, fmt};
|
use std::{error, io, fmt};
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
|
|
||||||
use ethbloom;
|
use ethbloom;
|
||||||
|
|
||||||
use file::{File, FileIterator};
|
use file::{File, FileIterator};
|
||||||
|
|
||||||
|
fn other_io_err<E>(e: E) -> io::Error where E: Into<Box<error::Error + Send + Sync>> {
|
||||||
|
io::Error::new(io::ErrorKind::Other, e)
|
||||||
|
}
|
||||||
|
|
||||||
/// Bloom positions in database files.
|
/// Bloom positions in database files.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct Positions {
|
struct Positions {
|
||||||
@ -39,8 +43,14 @@ impl Positions {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Blooms database.
|
struct DatabaseFilesIterator<'a> {
|
||||||
pub struct Database {
|
pub top: FileIterator<'a>,
|
||||||
|
pub mid: FileIterator<'a>,
|
||||||
|
pub bot: FileIterator<'a>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Blooms database files.
|
||||||
|
struct DatabaseFiles {
|
||||||
/// Top level bloom file
|
/// Top level bloom file
|
||||||
///
|
///
|
||||||
/// Every bloom represents 16 blooms on mid level
|
/// Every bloom represents 16 blooms on mid level
|
||||||
@ -53,6 +63,52 @@ pub struct Database {
|
|||||||
///
|
///
|
||||||
/// Every bloom is an ethereum header bloom
|
/// Every bloom is an ethereum header bloom
|
||||||
bot: File,
|
bot: File,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DatabaseFiles {
|
||||||
|
/// Open the blooms db files
|
||||||
|
pub fn open(path: &Path) -> io::Result<DatabaseFiles> {
|
||||||
|
Ok(DatabaseFiles {
|
||||||
|
top: File::open(path.join("top.bdb"))?,
|
||||||
|
mid: File::open(path.join("mid.bdb"))?,
|
||||||
|
bot: File::open(path.join("bot.bdb"))?,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn accrue_bloom(&mut self, pos: Positions, bloom: ethbloom::BloomRef) -> io::Result<()> {
|
||||||
|
self.top.accrue_bloom::<ethbloom::BloomRef>(pos.top, bloom)?;
|
||||||
|
self.mid.accrue_bloom::<ethbloom::BloomRef>(pos.mid, bloom)?;
|
||||||
|
self.bot.replace_bloom::<ethbloom::BloomRef>(pos.bot, bloom)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn iterator_from(&mut self, pos: Positions) -> io::Result<DatabaseFilesIterator> {
|
||||||
|
Ok(DatabaseFilesIterator {
|
||||||
|
top: self.top.iterator_from(pos.top)?,
|
||||||
|
mid: self.mid.iterator_from(pos.mid)?,
|
||||||
|
bot: self.bot.iterator_from(pos.bot)?,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fn flush(&mut self) -> io::Result<()> {
|
||||||
|
self.top.flush()?;
|
||||||
|
self.mid.flush()?;
|
||||||
|
self.bot.flush()?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for DatabaseFiles {
|
||||||
|
/// Flush the database files on drop
|
||||||
|
fn drop(&mut self) {
|
||||||
|
self.flush().ok();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Blooms database.
|
||||||
|
pub struct Database {
|
||||||
|
/// Database files
|
||||||
|
db_files: Option<DatabaseFiles>,
|
||||||
/// Database path
|
/// Database path
|
||||||
path: PathBuf,
|
path: PathBuf,
|
||||||
}
|
}
|
||||||
@ -60,61 +116,71 @@ pub struct Database {
|
|||||||
impl Database {
|
impl Database {
|
||||||
/// Opens blooms database.
|
/// Opens blooms database.
|
||||||
pub fn open<P>(path: P) -> io::Result<Database> where P: AsRef<Path> {
|
pub fn open<P>(path: P) -> io::Result<Database> where P: AsRef<Path> {
|
||||||
let path = path.as_ref();
|
let path: PathBuf = path.as_ref().to_path_buf();
|
||||||
let database = Database {
|
let database = Database {
|
||||||
top: File::open(path.join("top.bdb"))?,
|
db_files: Some(DatabaseFiles::open(&path)?),
|
||||||
mid: File::open(path.join("mid.bdb"))?,
|
path: path,
|
||||||
bot: File::open(path.join("bot.bdb"))?,
|
|
||||||
path: path.to_owned(),
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(database)
|
Ok(database)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Reopens the database at the same location.
|
/// Close the inner-files
|
||||||
pub fn reopen(&mut self) -> io::Result<()> {
|
pub fn close(&mut self) -> io::Result<()> {
|
||||||
self.top = File::open(self.path.join("top.bdb"))?;
|
self.db_files = None;
|
||||||
self.mid = File::open(self.path.join("mid.bdb"))?;
|
|
||||||
self.bot = File::open(self.path.join("bot.bdb"))?;
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Insert consecutive blooms into database starting with positon from.
|
/// Reopens the database at the same location.
|
||||||
|
pub fn reopen(&mut self) -> io::Result<()> {
|
||||||
|
self.db_files = Some(DatabaseFiles::open(&self.path)?);
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Insert consecutive blooms into database starting at the given positon.
|
||||||
pub fn insert_blooms<'a, I, B>(&mut self, from: u64, blooms: I) -> io::Result<()>
|
pub fn insert_blooms<'a, I, B>(&mut self, from: u64, blooms: I) -> io::Result<()>
|
||||||
where ethbloom::BloomRef<'a>: From<B>, I: Iterator<Item = B> {
|
where ethbloom::BloomRef<'a>: From<B>, I: Iterator<Item = B> {
|
||||||
for (index, bloom) in (from..).into_iter().zip(blooms.map(Into::into)) {
|
match self.db_files {
|
||||||
let pos = Positions::from_index(index);
|
Some(ref mut db_files) => {
|
||||||
|
for (index, bloom) in (from..).into_iter().zip(blooms.map(Into::into)) {
|
||||||
|
let pos = Positions::from_index(index);
|
||||||
|
|
||||||
// constant forks make lead to increased ration of false positives in bloom filters
|
// Constant forks may lead to increased ratio of false positives in bloom filters
|
||||||
// since we do not rebuild top or mid level, but we should not be worried about that
|
// since we do not rebuild top or mid level, but we should not be worried about that
|
||||||
// most of the time events at block n(a) occur also on block n(b) or n+1(b)
|
// because most of the time events at block n(a) occur also on block n(b) or n+1(b)
|
||||||
self.top.accrue_bloom::<ethbloom::BloomRef>(pos.top, bloom)?;
|
db_files.accrue_bloom(pos, bloom)?;
|
||||||
self.mid.accrue_bloom::<ethbloom::BloomRef>(pos.mid, bloom)?;
|
}
|
||||||
self.bot.replace_bloom::<ethbloom::BloomRef>(pos.bot, bloom)?;
|
db_files.flush()?;
|
||||||
|
Ok(())
|
||||||
|
},
|
||||||
|
None => Err(other_io_err("Database is closed")),
|
||||||
}
|
}
|
||||||
self.top.flush()?;
|
|
||||||
self.mid.flush()?;
|
|
||||||
self.bot.flush()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns an iterator yielding all indexes containing given bloom.
|
/// Returns an iterator yielding all indexes containing given bloom.
|
||||||
pub fn iterate_matching<'a, 'b, B, I, II>(&'a mut self, from: u64, to: u64, blooms: II) -> io::Result<DatabaseIterator<'a, II>>
|
pub fn iterate_matching<'a, 'b, B, I, II>(&'a mut self, from: u64, to: u64, blooms: II) -> io::Result<DatabaseIterator<'a, II>>
|
||||||
where ethbloom::BloomRef<'b>: From<B>, 'b: 'a, II: IntoIterator<Item = B, IntoIter = I> + Copy, I: Iterator<Item = B> {
|
where ethbloom::BloomRef<'b>: From<B>, 'b: 'a, II: IntoIterator<Item = B, IntoIter = I> + Copy, I: Iterator<Item = B> {
|
||||||
let index = from / 256 * 256;
|
match self.db_files {
|
||||||
let pos = Positions::from_index(index);
|
Some(ref mut db_files) => {
|
||||||
|
let index = from / 256 * 256;
|
||||||
|
let pos = Positions::from_index(index);
|
||||||
|
let files_iter = db_files.iterator_from(pos)?;
|
||||||
|
|
||||||
let iter = DatabaseIterator {
|
let iter = DatabaseIterator {
|
||||||
top: self.top.iterator_from(pos.top)?,
|
top: files_iter.top,
|
||||||
mid: self.mid.iterator_from(pos.mid)?,
|
mid: files_iter.mid,
|
||||||
bot: self.bot.iterator_from(pos.bot)?,
|
bot: files_iter.bot,
|
||||||
state: IteratorState::Top,
|
state: IteratorState::Top,
|
||||||
from,
|
from,
|
||||||
to,
|
to,
|
||||||
index,
|
index,
|
||||||
blooms,
|
blooms,
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(iter)
|
Ok(iter)
|
||||||
|
},
|
||||||
|
None => Err(other_io_err("Database is closed")),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,4 +351,19 @@ mod tests {
|
|||||||
let matches = database.iterate_matching(256, 257, Some(&Bloom::from(0x10))).unwrap().collect::<Result<Vec<_>, _>>().unwrap();
|
let matches = database.iterate_matching(256, 257, Some(&Bloom::from(0x10))).unwrap().collect::<Result<Vec<_>, _>>().unwrap();
|
||||||
assert_eq!(matches, vec![256, 257]);
|
assert_eq!(matches, vec![256, 257]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_db_close() {
|
||||||
|
let tempdir = TempDir::new("").unwrap();
|
||||||
|
let blooms = vec![Bloom::from(0x100), Bloom::from(0x01), Bloom::from(0x10), Bloom::from(0x11)];
|
||||||
|
let mut database = Database::open(tempdir.path()).unwrap();
|
||||||
|
|
||||||
|
// Close the DB and ensure inserting blooms errors
|
||||||
|
database.close().unwrap();
|
||||||
|
assert!(database.insert_blooms(254, blooms.iter()).is_err());
|
||||||
|
|
||||||
|
// Reopen it and ensure inserting blooms is OK
|
||||||
|
database.reopen().unwrap();
|
||||||
|
assert!(database.insert_blooms(254, blooms.iter()).is_ok());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -54,6 +54,11 @@ impl Database {
|
|||||||
Ok(result)
|
Ok(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Closes the inner database
|
||||||
|
pub fn close(&self) -> io::Result<()> {
|
||||||
|
self.database.lock().close()
|
||||||
|
}
|
||||||
|
|
||||||
/// Reopens database at the same location.
|
/// Reopens database at the same location.
|
||||||
pub fn reopen(&self) -> io::Result<()> {
|
pub fn reopen(&self) -> io::Result<()> {
|
||||||
self.database.lock().reopen()
|
self.database.lock().reopen()
|
||||||
|
Loading…
Reference in New Issue
Block a user