You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minimal code sample that helps to reproduce the issue:
let db_file = env::var("SLED_DB_PATH").expect("$SLED_DB_PATH not set");let config = sled::Config::default().path(db_file.clone()).cache_capacity(10_000_000);let db = config.open().map(|db| Arc::new(db)).with_context(|| format!("Unable to open sled database: {}", db_file))?;
config.open()
to open the databaseconfig.open()
some times fails with the following stack trace (note this is in reverse order due to journalctl): https://gist.github.com/D1plo1d/e1ac7171375f8fbd47c1aed9947b59d6config.open()
fails once it will continue to fail if retried indicating that the database is corrupted(?)The text was updated successfully, but these errors were encountered: