Compare commits

...

1 Commits

Author SHA1 Message Date
c2f44f3580 Prototype: 500GiB task queue 2023-03-27 15:00:17 +02:00

View File

@ -69,7 +69,7 @@ const DEFAULT_LOG_EVERY_N: usize = 100_000;
// The size of the virtual address space is limited by the OS. About 100TB for Linux and about 10TB for Windows.
// This means that the number of indexes is limited to about 200 for Linux and about 20 for Windows.
pub const INDEX_SIZE: u64 = 536_870_912_000; // 500 GiB
pub const TASK_DB_SIZE: u64 = 10_737_418_240; // 10 GiB
pub const TASK_DB_SIZE: u64 = 10_737_418_240 * 50; // 500 GiB
#[derive(Debug, Default, Clone, Copy, Serialize, Deserialize)]
#[serde(rename_all = "UPPERCASE")]