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
Confirmed, it works. Do you think modifying the rocksdb adapter layer in Restate to add a warning would be appropriate ?
implRocksError{pub(crate)fnfrom_rocksdb_error(err: rocksdb::Error) -> Self{let err_message = err.to_string();if err_message.starts_with("IO error: While lock file:")
&& err_message.ends_with("Resource temporarily unavailable"){Self::DbLocked(err)}else{if err_message.contains("Direct I/O is not supported"){warn!(r#"""Direct I/O can be disabled by configuring rocks-db-disable-direct-io-for-reads and rocksdb-disable-direct-io-for-flush-and-compactions. RocksDB is better run with Direct I/O enabled, are you running on an encrypted fs?"""#);}Self::Other(err)}}}
Following the procedure here https://docs.restate.dev/get_started/quickstart/ to download binaries doesn't work:
It might be because my home folder uses
ecryptfs
?https://www.ecryptfs.org/The text was updated successfully, but these errors were encountered: