diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..64821f093 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "cSpell.words": [ + "vrpath" + ] +} \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 70888ef8e..4a41786ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -689,6 +689,7 @@ dependencies = [ "iana-time-zone", "js-sys", "num-traits", + "serde", "wasm-bindgen", "windows-targets", ] diff --git a/shinkai-libs/shinkai-message-primitives/src/schemas/shinkai_name.rs b/shinkai-libs/shinkai-message-primitives/src/schemas/shinkai_name.rs index a355b30c5..7f064a3df 100644 --- a/shinkai-libs/shinkai-message-primitives/src/schemas/shinkai_name.rs +++ b/shinkai-libs/shinkai-message-primitives/src/schemas/shinkai_name.rs @@ -1,7 +1,10 @@ +use crate::{ + shinkai_message::shinkai_message::{MessageBody, ShinkaiMessage}, + shinkai_utils::shinkai_logging::{shinkai_log, ShinkaiLogLevel, ShinkaiLogOption}, +}; use regex::Regex; use serde::{Deserialize, Serialize}; use std::fmt; -use crate::{shinkai_message::shinkai_message::{MessageBody, ShinkaiMessage}, shinkai_utils::shinkai_logging::{ShinkaiLogOption, ShinkaiLogLevel, shinkai_log}}; #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Hash)] pub struct ShinkaiName { @@ -92,7 +95,11 @@ impl ShinkaiName { } else if *s == "device" { ShinkaiSubidentityType::Device } else { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Error, &format!("Invalid subidentity type: {}", s)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Error, + &format!("Invalid subidentity type: {}", s), + ); panic!("Invalid subidentity type"); } }); @@ -111,7 +118,11 @@ impl ShinkaiName { match Self::validate_name(&shinkai_name) { Ok(_) => true, Err(err) => { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("Validation error: {}", err)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!("Validation error: {}", err), + ); false } } @@ -121,17 +132,32 @@ impl ShinkaiName { let parts: Vec<&str> = raw_name.split('/').collect(); if !(parts.len() >= 1 && parts.len() <= 4) { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("Name should have one to four parts: node, profile, type (device or agent), and name: {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!( + "Name should have one to four parts: node, profile, type (device or agent), and name: {}", + raw_name + ), + ); return Err("Name should have one to four parts: node, profile, type (device or agent), and name."); } if !parts[0].starts_with("@@") || !parts[0].ends_with(".shinkai") { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("Validation error: {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!("Validation error: {}", raw_name), + ); return Err("Node part of the name should start with '@@' and end with '.shinkai'."); } if !Regex::new(r"^@@[a-zA-Z0-9\_\.]+\.shinkai$").unwrap().is_match(parts[0]) { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("Node part of the name contains invalid characters: {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!("Node part of the name contains invalid characters: {}", raw_name), + ); return Err("Node part of the name contains invalid characters."); } @@ -140,7 +166,11 @@ impl ShinkaiName { for (index, part) in parts.iter().enumerate() { if index == 0 { if part.contains("/") { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("Root node name cannot contain '/': {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!("Root node name cannot contain '/': {}", raw_name), + ); return Err("Root node name cannot contain '/'."); } continue; @@ -150,17 +180,35 @@ impl ShinkaiName { && !(part == &ShinkaiSubidentityType::Agent.to_string() || part == &ShinkaiSubidentityType::Device.to_string()) { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("The third part should either be 'agent' or 'device': {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!("The third part should either be 'agent' or 'device': {}", raw_name), + ); return Err("The third part should either be 'agent' or 'device'."); } if index == 3 && !re.is_match(part) { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("The fourth part (name after 'agent' or 'device') should be alphanumeric or underscore: {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!( + "The fourth part (name after 'agent' or 'device') should be alphanumeric or underscore: {}", + raw_name + ), + ); return Err("The fourth part (name after 'agent' or 'device') should be alphanumeric or underscore."); } if index != 0 && index != 2 && (!re.is_match(part) || part.contains(".shinkai")) { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("Name parts should be alphanumeric or underscore and not contain '.shinkai': {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!( + "Name parts should be alphanumeric or underscore and not contain '.shinkai': {}", + raw_name + ), + ); return Err("Name parts should be alphanumeric or underscore and not contain '.shinkai'."); } } @@ -169,7 +217,14 @@ impl ShinkaiName { && (parts[2] == &ShinkaiSubidentityType::Agent.to_string() || parts[2] == &ShinkaiSubidentityType::Device.to_string()) { - shinkai_log(ShinkaiLogOption::Identity, ShinkaiLogLevel::Info, &format!("If type is 'agent' or 'device', a fourth part is expected: {}", raw_name)); + shinkai_log( + ShinkaiLogOption::Identity, + ShinkaiLogLevel::Info, + &format!( + "If type is 'agent' or 'device', a fourth part is expected: {}", + raw_name + ), + ); return Err("If type is 'agent' or 'device', a fourth part is expected."); } @@ -225,7 +280,11 @@ impl ShinkaiName { } pub fn from_shinkai_message_using_sender_and_intra_sender(message: &ShinkaiMessage) -> Result { - let name = format!("{}/{}", message.external_metadata.sender.clone(), message.external_metadata.intra_sender.clone()); + let name = format!( + "{}/{}", + message.external_metadata.sender.clone(), + message.external_metadata.intra_sender.clone() + ); Self::new(name) } @@ -268,28 +327,34 @@ impl ShinkaiName { } } - pub fn from_shinkai_message_using_recipient_subidentity(message: &ShinkaiMessage) -> Result { + pub fn from_shinkai_message_using_recipient_subidentity( + message: &ShinkaiMessage, + ) -> Result { // Check if the message is encrypted let body = match &message.body { MessageBody::Unencrypted(body) => body, - _ => return Err(ShinkaiNameError::InvalidOperation( - "Cannot process encrypted ShinkaiMessage".to_string(), - )), + _ => { + return Err(ShinkaiNameError::InvalidOperation( + "Cannot process encrypted ShinkaiMessage".to_string(), + )) + } }; - + let node = match Self::new(message.external_metadata.recipient.clone()) { Ok(name) => name, - Err(_) => return Err(ShinkaiNameError::InvalidNameFormat( - message.external_metadata.recipient.clone(), - )), + Err(_) => { + return Err(ShinkaiNameError::InvalidNameFormat( + message.external_metadata.recipient.clone(), + )) + } }; - + let recipient_subidentity = if body.internal_metadata.recipient_subidentity.is_empty() { String::from("") } else { format!("/{}", body.internal_metadata.recipient_subidentity) }; - + match Self::new(format!("{}{}", node, recipient_subidentity)) { Ok(name) => Ok(name), Err(_) => Err(ShinkaiNameError::InvalidNameFormat(format!( diff --git a/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/job_scope.rs b/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/job_scope.rs index cc584c738..ff558b331 100644 --- a/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/job_scope.rs +++ b/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/job_scope.rs @@ -1,9 +1,9 @@ use serde::{Deserialize, Serialize}; -use shinkai_vector_resources::vector_resource::VectorResource; +use shinkai_vector_resources::vector_resource::{VectorResource, VectorResourceCore}; use shinkai_vector_resources::{ - base_vector_resources::BaseVectorResource, source::{SourceFile, VRSource}, - vector_resource_types::VRHeader, + vector_resource::BaseVectorResource, + vector_resource::VRHeader, }; use std::fmt; diff --git a/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/shinkai_message_builder.rs b/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/shinkai_message_builder.rs index 7f0d095ba..caba6f09c 100644 --- a/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/shinkai_message_builder.rs +++ b/shinkai-libs/shinkai-message-primitives/src/shinkai_utils/shinkai_message_builder.rs @@ -6,12 +6,12 @@ use x25519_dalek::{PublicKey as EncryptionPublicKey, StaticSecret as EncryptionS use crate::{ schemas::{ agents::serialized_agent::SerializedAgent, inbox_name::InboxName, registration_code::RegistrationCode, - shinkai_time::ShinkaiTime, + shinkai_time::ShinkaiStringTime, }, shinkai_message::{ shinkai_message::{ - ExternalMetadata, InternalMetadata, MessageBody, MessageData, - ShinkaiBody, ShinkaiData, ShinkaiMessage, ShinkaiVersion, + ExternalMetadata, InternalMetadata, MessageBody, MessageData, ShinkaiBody, ShinkaiData, ShinkaiMessage, + ShinkaiVersion, }, shinkai_message_schemas::{ APIAddAgentRequest, APIGetMessagesFromInboxRequest, APIReadUpToTimeRequest, IdentityPermissions, @@ -176,7 +176,7 @@ impl ShinkaiMessageBuilder { let signature = "".to_string(); let other = "".to_string(); let intra_sender = "".to_string(); - let scheduled_time = ShinkaiTime::generate_time_now(); + let scheduled_time = ShinkaiStringTime::generate_time_now(); self.external_metadata = Some(ExternalMetadata { sender, recipient, @@ -191,7 +191,7 @@ impl ShinkaiMessageBuilder { pub fn external_metadata_with_other(mut self, recipient: ProfileName, sender: ProfileName, other: String) -> Self { let signature = "".to_string(); let intra_sender = "".to_string(); - let scheduled_time = ShinkaiTime::generate_time_now(); + let scheduled_time = ShinkaiStringTime::generate_time_now(); self.external_metadata = Some(ExternalMetadata { sender, recipient, @@ -211,7 +211,7 @@ impl ShinkaiMessageBuilder { intra_sender: String, ) -> Self { let signature = "".to_string(); - let scheduled_time = ShinkaiTime::generate_time_now(); + let scheduled_time = ShinkaiStringTime::generate_time_now(); self.external_metadata = Some(ExternalMetadata { sender, recipient, @@ -231,7 +231,7 @@ impl ShinkaiMessageBuilder { ) -> Self { let signature = "".to_string(); let other = "".to_string(); - let scheduled_time = ShinkaiTime::generate_time_now(); + let scheduled_time = ShinkaiStringTime::generate_time_now(); self.external_metadata = Some(ExternalMetadata { sender, recipient, @@ -975,8 +975,7 @@ impl std::fmt::Debug for ShinkaiMessageBuilder { #[cfg(test)] mod tests { use crate::shinkai_utils::{ - encryption::unsafe_deterministic_encryption_keypair, - signatures::{unsafe_deterministic_signature_keypair}, + encryption::unsafe_deterministic_encryption_keypair, signatures::unsafe_deterministic_signature_keypair, }; use super::*; diff --git a/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm.d.ts b/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm.d.ts index d6addedc8..bcce409f8 100644 --- a/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm.d.ts +++ b/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm.d.ts @@ -14,626 +14,626 @@ export function calculate_blake3_hash(input: string): string; */ export class InboxNameWrapper { free(): void; -/** -* @param {any} inbox_name_js -*/ + /** + * @param {any} inbox_name_js + */ constructor(inbox_name_js: any); -/** -* @returns {any} -*/ + /** + * @returns {any} + */ to_jsvalue(): any; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ to_json_str(): string; -/** -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @param {boolean} is_e2e -* @returns {InboxNameWrapper} -*/ + /** + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @param {boolean} is_e2e + * @returns {InboxNameWrapper} + */ static get_regular_inbox_name_from_params(sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string, is_e2e: boolean): InboxNameWrapper; -/** -* @param {string} unique_id -* @returns {InboxNameWrapper} -*/ + /** + * @param {string} unique_id + * @returns {InboxNameWrapper} + */ static get_job_inbox_name_from_params(unique_id: string): InboxNameWrapper; -/** -* @returns {any} -*/ + /** + * @returns {any} + */ get_inner(): any; -/** -*/ + /** + */ readonly get_identities: any; -/** -*/ + /** + */ readonly get_is_e2e: boolean; -/** -*/ + /** + */ readonly get_unique_id: any; -/** -*/ + /** + */ readonly get_value: any; -/** -*/ + /** + */ readonly to_string: any; } /** */ export class JobCreationWrapper { free(): void; -/** -* @param {any} scope_js -*/ + /** + * @param {any} scope_js + */ constructor(scope_js: any); -/** -* @returns {any} -*/ + /** + * @returns {any} + */ to_jsvalue(): any; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ to_json_str(): string; -/** -* @param {string} s -* @returns {JobCreationWrapper} -*/ + /** + * @param {string} s + * @returns {JobCreationWrapper} + */ static from_json_str(s: string): JobCreationWrapper; -/** -* @param {any} js_value -* @returns {JobCreationWrapper} -*/ + /** + * @param {any} js_value + * @returns {JobCreationWrapper} + */ static from_jsvalue(js_value: any): JobCreationWrapper; -/** -* @returns {JobCreationWrapper} -*/ + /** + * @returns {JobCreationWrapper} + */ static empty(): JobCreationWrapper; -/** -*/ + /** + */ readonly get_scope: any; } /** */ export class JobMessageWrapper { free(): void; -/** -* @param {any} job_id_js -* @param {any} content_js -* @param {any} files_inbox -*/ + /** + * @param {any} job_id_js + * @param {any} content_js + * @param {any} files_inbox + */ constructor(job_id_js: any, content_js: any, files_inbox: any); -/** -* @returns {any} -*/ + /** + * @returns {any} + */ to_jsvalue(): any; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ to_json_str(): string; -/** -* @param {string} s -* @returns {JobMessageWrapper} -*/ + /** + * @param {string} s + * @returns {JobMessageWrapper} + */ static from_json_str(s: string): JobMessageWrapper; -/** -* @param {any} js_value -* @returns {JobMessageWrapper} -*/ + /** + * @param {any} js_value + * @returns {JobMessageWrapper} + */ static from_jsvalue(js_value: any): JobMessageWrapper; -/** -* @param {string} job_id -* @param {string} content -* @param {string} files_inbox -* @returns {JobMessageWrapper} -*/ + /** + * @param {string} job_id + * @param {string} content + * @param {string} files_inbox + * @returns {JobMessageWrapper} + */ static fromStrings(job_id: string, content: string, files_inbox: string): JobMessageWrapper; } /** */ export class JobScopeWrapper { free(): void; -/** -* @param {any} buckets_js -* @param {any} documents_js -*/ + /** + * @param {any} buckets_js + * @param {any} documents_js + */ constructor(buckets_js: any, documents_js: any); -/** -* @returns {any} -*/ + /** + * @returns {any} + */ to_jsvalue(): any; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ to_json_str(): string; } /** */ export class SerializedAgentWrapper { free(): void; -/** -* @param {any} serialized_agent_js -*/ + /** + * @param {any} serialized_agent_js + */ constructor(serialized_agent_js: any); -/** -* @param {string} id -* @param {string} full_identity_name -* @param {string} perform_locally -* @param {string} external_url -* @param {string} api_key -* @param {string} model -* @param {string} toolkit_permissions -* @param {string} storage_bucket_permissions -* @param {string} allowed_message_senders -* @returns {SerializedAgentWrapper} -*/ + /** + * @param {string} id + * @param {string} full_identity_name + * @param {string} perform_locally + * @param {string} external_url + * @param {string} api_key + * @param {string} model + * @param {string} toolkit_permissions + * @param {string} storage_bucket_permissions + * @param {string} allowed_message_senders + * @returns {SerializedAgentWrapper} + */ static fromStrings(id: string, full_identity_name: string, perform_locally: string, external_url: string, api_key: string, model: string, toolkit_permissions: string, storage_bucket_permissions: string, allowed_message_senders: string): SerializedAgentWrapper; -/** -* @returns {any} -*/ + /** + * @returns {any} + */ to_jsvalue(): any; -/** -* @param {any} j -* @returns {SerializedAgentWrapper} -*/ + /** + * @param {any} j + * @returns {SerializedAgentWrapper} + */ static fromJsValue(j: any): SerializedAgentWrapper; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ to_json_str(): string; -/** -* @param {string} s -* @returns {SerializedAgentWrapper} -*/ + /** + * @param {string} s + * @returns {SerializedAgentWrapper} + */ static from_json_str(s: string): SerializedAgentWrapper; -/** -*/ + /** + */ readonly inner: any; } /** */ export class ShinkaiMessageBuilderWrapper { free(): void; -/** -* @param {string} my_encryption_secret_key -* @param {string} my_signature_secret_key -* @param {string} receiver_public_key -*/ + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + */ constructor(my_encryption_secret_key: string, my_signature_secret_key: string, receiver_public_key: string); -/** -* @param {any} encryption -*/ + /** + * @param {any} encryption + */ body_encryption(encryption: any): void; -/** -*/ + /** + */ no_body_encryption(): void; -/** -* @param {string} message_raw_content -*/ + /** + * @param {string} message_raw_content + */ message_raw_content(message_raw_content: string): void; -/** -* @param {any} content -*/ + /** + * @param {any} content + */ message_schema_type(content: any): void; -/** -* @param {string} sender_subidentity -* @param {string} recipient_subidentity -* @param {any} encryption -*/ + /** + * @param {string} sender_subidentity + * @param {string} recipient_subidentity + * @param {any} encryption + */ internal_metadata(sender_subidentity: string, recipient_subidentity: string, encryption: any): void; -/** -* @param {string} sender_subidentity -* @param {string} recipient_subidentity -* @param {string} inbox -* @param {any} encryption -*/ + /** + * @param {string} sender_subidentity + * @param {string} recipient_subidentity + * @param {string} inbox + * @param {any} encryption + */ internal_metadata_with_inbox(sender_subidentity: string, recipient_subidentity: string, inbox: string, encryption: any): void; -/** -* @param {string} sender_subidentity -* @param {string} recipient_subidentity -* @param {string} inbox -* @param {any} message_schema -* @param {any} encryption -*/ + /** + * @param {string} sender_subidentity + * @param {string} recipient_subidentity + * @param {string} inbox + * @param {any} message_schema + * @param {any} encryption + */ internal_metadata_with_schema(sender_subidentity: string, recipient_subidentity: string, inbox: string, message_schema: any, encryption: any): void; -/** -*/ + /** + */ empty_encrypted_internal_metadata(): void; -/** -*/ + /** + */ empty_non_encrypted_internal_metadata(): void; -/** -* @param {string} recipient -* @param {string} sender -*/ + /** + * @param {string} recipient + * @param {string} sender + */ external_metadata(recipient: string, sender: string): void; -/** -* @param {string} recipient -* @param {string} sender -* @param {string} intra_sender -*/ + /** + * @param {string} recipient + * @param {string} sender + * @param {string} intra_sender + */ external_metadata_with_intra(recipient: string, sender: string, intra_sender: string): void; -/** -* @param {string} recipient -* @param {string} sender -* @param {string} other -*/ + /** + * @param {string} recipient + * @param {string} sender + * @param {string} other + */ external_metadata_with_other(recipient: string, sender: string, other: string): void; -/** -* @param {string} recipient -* @param {string} sender -* @param {string} other -* @param {string} intra_sender -*/ + /** + * @param {string} recipient + * @param {string} sender + * @param {string} other + * @param {string} intra_sender + */ external_metadata_with_other_and_intra_sender(recipient: string, sender: string, other: string, intra_sender: string): void; -/** -* @param {string} recipient -* @param {string} sender -* @param {string} scheduled_time -*/ + /** + * @param {string} recipient + * @param {string} sender + * @param {string} scheduled_time + */ external_metadata_with_schedule(recipient: string, sender: string, scheduled_time: string): void; -/** -* @returns {ShinkaiMessageWrapper} -*/ + /** + * @returns {ShinkaiMessageWrapper} + */ build(): ShinkaiMessageWrapper; -/** -* @returns {any} -*/ + /** + * @returns {any} + */ build_to_jsvalue(): any; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ build_to_string(): string; -/** -* @param {string} my_encryption_secret_key -* @param {string} my_signature_secret_key -* @param {string} receiver_public_key -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} receiver -* @returns {string} -*/ + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @returns {string} + */ static ack_message(my_encryption_secret_key: string, my_signature_secret_key: string, receiver_public_key: string, sender: string, sender_subidentity: string, receiver: string): string; -/** -* @param {string} my_subidentity_encryption_sk -* @param {string} my_subidentity_signature_sk -* @param {string} receiver_public_key -* @param {string} permissions -* @param {string} code_type -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} permissions + * @param {string} code_type + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static request_code_registration(my_subidentity_encryption_sk: string, my_subidentity_signature_sk: string, receiver_public_key: string, permissions: string, code_type: string, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} profile_encryption_sk -* @param {string} profile_signature_sk -* @param {string} receiver_public_key -* @param {string} code -* @param {string} identity_type -* @param {string} permission_type -* @param {string} registration_name -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} profile_encryption_sk + * @param {string} profile_signature_sk + * @param {string} receiver_public_key + * @param {string} code + * @param {string} identity_type + * @param {string} permission_type + * @param {string} registration_name + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static use_code_registration_for_profile(profile_encryption_sk: string, profile_signature_sk: string, receiver_public_key: string, code: string, identity_type: string, permission_type: string, registration_name: string, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} my_device_encryption_sk -* @param {string} my_device_signature_sk -* @param {string} profile_encryption_sk -* @param {string} profile_signature_sk -* @param {string} receiver_public_key -* @param {string} code -* @param {string} identity_type -* @param {string} permission_type -* @param {string} registration_name -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} my_device_encryption_sk + * @param {string} my_device_signature_sk + * @param {string} profile_encryption_sk + * @param {string} profile_signature_sk + * @param {string} receiver_public_key + * @param {string} code + * @param {string} identity_type + * @param {string} permission_type + * @param {string} registration_name + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static use_code_registration_for_device(my_device_encryption_sk: string, my_device_signature_sk: string, profile_encryption_sk: string, profile_signature_sk: string, receiver_public_key: string, code: string, identity_type: string, permission_type: string, registration_name: string, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} my_device_encryption_sk -* @param {string} my_device_signature_sk -* @param {string} profile_encryption_sk -* @param {string} profile_signature_sk -* @param {string} registration_name -* @param {string} sender_subidentity -* @param {string} sender -* @param {string} receiver -* @returns {string} -*/ + /** + * @param {string} my_device_encryption_sk + * @param {string} my_device_signature_sk + * @param {string} profile_encryption_sk + * @param {string} profile_signature_sk + * @param {string} registration_name + * @param {string} sender_subidentity + * @param {string} sender + * @param {string} receiver + * @returns {string} + */ static initial_registration_with_no_code_for_device(my_device_encryption_sk: string, my_device_signature_sk: string, profile_encryption_sk: string, profile_signature_sk: string, registration_name: string, sender_subidentity: string, sender: string, receiver: string): string; -/** -* @param {string} my_subidentity_encryption_sk -* @param {string} my_subidentity_signature_sk -* @param {string} receiver_public_key -* @param {string} inbox -* @param {number} count -* @param {string | undefined} offset -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} inbox + * @param {number} count + * @param {string | undefined} offset + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static get_last_messages_from_inbox(my_subidentity_encryption_sk: string, my_subidentity_signature_sk: string, receiver_public_key: string, inbox: string, count: number, offset: string | undefined, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} my_subidentity_encryption_sk -* @param {string} my_subidentity_signature_sk -* @param {string} receiver_public_key -* @param {string} inbox -* @param {number} count -* @param {string | undefined} offset -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} inbox + * @param {number} count + * @param {string | undefined} offset + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static get_last_unread_messages_from_inbox(my_subidentity_encryption_sk: string, my_subidentity_signature_sk: string, receiver_public_key: string, inbox: string, count: number, offset: string | undefined, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} my_subidentity_encryption_sk -* @param {string} my_subidentity_signature_sk -* @param {string} receiver_public_key -* @param {string} agent_json -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} agent_json + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static request_add_agent(my_subidentity_encryption_sk: string, my_subidentity_signature_sk: string, receiver_public_key: string, agent_json: string, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} my_subidentity_encryption_sk -* @param {string} my_subidentity_signature_sk -* @param {string} receiver_public_key -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static get_all_availability_agent(my_subidentity_encryption_sk: string, my_subidentity_signature_sk: string, receiver_public_key: string, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} my_subidentity_encryption_sk -* @param {string} my_subidentity_signature_sk -* @param {string} receiver_public_key -* @param {string} inbox -* @param {string} up_to_time -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @returns {string} -*/ + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} inbox + * @param {string} up_to_time + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ static read_up_to_time(my_subidentity_encryption_sk: string, my_subidentity_signature_sk: string, receiver_public_key: string, inbox: string, up_to_time: string, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string): string; -/** -* @param {string} my_subidentity_encryption_sk -* @param {string} my_subidentity_signature_sk -* @param {string} receiver_public_key -* @param {string} data -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} recipient -* @param {string} recipient_subidentity -* @param {string} other -* @param {string} schema -* @returns {string} -*/ + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} data + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @param {string} other + * @param {string} schema + * @returns {string} + */ static create_custom_shinkai_message_to_node(my_subidentity_encryption_sk: string, my_subidentity_signature_sk: string, receiver_public_key: string, data: string, sender: string, sender_subidentity: string, recipient: string, recipient_subidentity: string, other: string, schema: string): string; -/** -* @param {string} message -* @param {string} my_encryption_secret_key -* @param {string} my_signature_secret_key -* @param {string} receiver_public_key -* @param {string} sender -* @param {string} receiver -* @returns {string} -*/ + /** + * @param {string} message + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} receiver + * @returns {string} + */ static ping_pong_message(message: string, my_encryption_secret_key: string, my_signature_secret_key: string, receiver_public_key: string, sender: string, receiver: string): string; -/** -* @param {string} my_encryption_secret_key -* @param {string} my_signature_secret_key -* @param {string} receiver_public_key -* @param {any} scope -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} receiver -* @param {string} receiver_subidentity -* @returns {string} -*/ + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {any} scope + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @param {string} receiver_subidentity + * @returns {string} + */ static job_creation(my_encryption_secret_key: string, my_signature_secret_key: string, receiver_public_key: string, scope: any, sender: string, sender_subidentity: string, receiver: string, receiver_subidentity: string): string; -/** -* @param {string} job_id -* @param {string} content -* @param {string} files_inbox -* @param {string} my_encryption_secret_key -* @param {string} my_signature_secret_key -* @param {string} receiver_public_key -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} receiver -* @param {string} receiver_subidentity -* @returns {string} -*/ + /** + * @param {string} job_id + * @param {string} content + * @param {string} files_inbox + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @param {string} receiver_subidentity + * @returns {string} + */ static job_message(job_id: string, content: string, files_inbox: string, my_encryption_secret_key: string, my_signature_secret_key: string, receiver_public_key: string, sender: string, sender_subidentity: string, receiver: string, receiver_subidentity: string): string; -/** -* @param {string} my_encryption_secret_key -* @param {string} my_signature_secret_key -* @param {string} receiver_public_key -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} receiver -* @returns {string} -*/ + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @returns {string} + */ static terminate_message(my_encryption_secret_key: string, my_signature_secret_key: string, receiver_public_key: string, sender: string, sender_subidentity: string, receiver: string): string; -/** -* @param {string} my_encryption_secret_key -* @param {string} my_signature_secret_key -* @param {string} receiver_public_key -* @param {string} sender -* @param {string} sender_subidentity -* @param {string} receiver -* @param {string} error_msg -* @returns {string} -*/ + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @param {string} error_msg + * @returns {string} + */ static error_message(my_encryption_secret_key: string, my_signature_secret_key: string, receiver_public_key: string, sender: string, sender_subidentity: string, receiver: string, error_msg: string): string; } /** */ export class ShinkaiMessageWrapper { free(): void; -/** -* @param {any} shinkai_message_js -*/ + /** + * @param {any} shinkai_message_js + */ constructor(shinkai_message_js: any); -/** -* @returns {any} -*/ + /** + * @returns {any} + */ to_jsvalue(): any; -/** -* @param {any} j -* @returns {ShinkaiMessageWrapper} -*/ + /** + * @param {any} j + * @returns {ShinkaiMessageWrapper} + */ static fromJsValue(j: any): ShinkaiMessageWrapper; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ to_json_str(): string; -/** -* @param {string} s -* @returns {ShinkaiMessageWrapper} -*/ + /** + * @param {string} s + * @returns {ShinkaiMessageWrapper} + */ static from_json_str(s: string): ShinkaiMessageWrapper; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ calculate_blake3_hash(): string; -/** -* @returns {ShinkaiMessageWrapper} -*/ + /** + * @returns {ShinkaiMessageWrapper} + */ new_with_empty_outer_signature(): ShinkaiMessageWrapper; -/** -* @returns {ShinkaiMessageWrapper} -*/ + /** + * @returns {ShinkaiMessageWrapper} + */ new_with_empty_inner_signature(): ShinkaiMessageWrapper; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ inner_content_for_hashing(): string; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ calculate_blake3_hash_with_empty_outer_signature(): string; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ calculate_blake3_hash_with_empty_inner_signature(): string; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ static generate_time_now(): string; -/** -*/ + /** + */ encryption: string; -/** -*/ + /** + */ external_metadata: any; -/** -*/ + /** + */ message_body: any; } /** */ export class ShinkaiNameWrapper { free(): void; -/** -* @param {any} shinkai_name_js -*/ + /** + * @param {any} shinkai_name_js + */ constructor(shinkai_name_js: any); -/** -* @returns {any} -*/ + /** + * @returns {any} + */ to_jsvalue(): any; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ to_json_str(): string; -/** -* @returns {ShinkaiNameWrapper} -*/ + /** + * @returns {ShinkaiNameWrapper} + */ extract_profile(): ShinkaiNameWrapper; -/** -* @returns {ShinkaiNameWrapper} -*/ + /** + * @returns {ShinkaiNameWrapper} + */ extract_node(): ShinkaiNameWrapper; -/** -*/ + /** + */ readonly get_full_name: any; -/** -*/ + /** + */ readonly get_node_name: any; -/** -*/ + /** + */ readonly get_profile_name: any; -/** -*/ + /** + */ readonly get_subidentity_name: any; -/** -*/ + /** + */ readonly get_subidentity_type: any; } /** */ -export class ShinkaiTime { +export class ShinkaiStringTime { free(): void; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ static generateTimeNow(): string; -/** -* @param {bigint} secs -* @returns {string} -*/ + /** + * @param {bigint} secs + * @returns {string} + */ static generateTimeInFutureWithSecs(secs: bigint): string; -/** -* @param {number} year -* @param {number} month -* @param {number} day -* @param {number} hr -* @param {number} min -* @param {number} sec -* @returns {string} -*/ + /** + * @param {number} year + * @param {number} month + * @param {number} day + * @param {number} hr + * @param {number} min + * @param {number} sec + * @returns {string} + */ static generateSpecificTime(year: number, month: number, day: number, hr: number, min: number, sec: number): string; } /** */ export class WasmEncryptionMethod { free(): void; -/** -* @param {string} method -*/ + /** + * @param {string} method + */ constructor(method: string); -/** -* @returns {string} -*/ + /** + * @returns {string} + */ as_str(): string; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ static DiffieHellmanChaChaPoly1305(): string; -/** -* @returns {string} -*/ + /** + * @returns {string} + */ static None(): string; } diff --git a/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm_bg.js b/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm_bg.js index 07bd784b9..c4afe82d6 100644 --- a/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm_bg.js +++ b/shinkai-libs/shinkai-message-wasm/pkg/shinkai_message_wasm_bg.js @@ -1,36 +1,37 @@ let wasm; export function __wbg_set_wasm(val) { - wasm = val; + wasm = val; } - const heap = new Array(128).fill(undefined); heap.push(undefined, null, true, false); -function getObject(idx) { return heap[idx]; } +function getObject(idx) { + return heap[idx]; +} let heap_next = heap.length; function addHeapObject(obj) { - if (heap_next === heap.length) heap.push(heap.length + 1); - const idx = heap_next; - heap_next = heap[idx]; + if (heap_next === heap.length) heap.push(heap.length + 1); + const idx = heap_next; + heap_next = heap[idx]; - heap[idx] = obj; - return idx; + heap[idx] = obj; + return idx; } function dropObject(idx) { - if (idx < 132) return; - heap[idx] = heap_next; - heap_next = idx; + if (idx < 132) return; + heap[idx] = heap_next; + heap_next = idx; } function takeObject(idx) { - const ret = getObject(idx); - dropObject(idx); - return ret; + const ret = getObject(idx); + dropObject(idx); + return ret; } let WASM_VECTOR_LEN = 0; @@ -38,3316 +39,4824 @@ let WASM_VECTOR_LEN = 0; let cachedUint8Memory0 = null; function getUint8Memory0() { - if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { - cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); - } - return cachedUint8Memory0; + if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { + cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); + } + return cachedUint8Memory0; } -const lTextEncoder = typeof TextEncoder === 'undefined' ? (0, module.require)('util').TextEncoder : TextEncoder; +const lTextEncoder = + typeof TextEncoder === "undefined" + ? (0, module.require)("util").TextEncoder + : TextEncoder; -let cachedTextEncoder = new lTextEncoder('utf-8'); +let cachedTextEncoder = new lTextEncoder("utf-8"); -const encodeString = (typeof cachedTextEncoder.encodeInto === 'function' +const encodeString = + typeof cachedTextEncoder.encodeInto === "function" ? function (arg, view) { - return cachedTextEncoder.encodeInto(arg, view); -} + return cachedTextEncoder.encodeInto(arg, view); + } : function (arg, view) { - const buf = cachedTextEncoder.encode(arg); - view.set(buf); - return { - read: arg.length, - written: buf.length - }; -}); + const buf = cachedTextEncoder.encode(arg); + view.set(buf); + return { + read: arg.length, + written: buf.length, + }; + }; function passStringToWasm0(arg, malloc, realloc) { + if (realloc === undefined) { + const buf = cachedTextEncoder.encode(arg); + const ptr = malloc(buf.length, 1) >>> 0; + getUint8Memory0() + .subarray(ptr, ptr + buf.length) + .set(buf); + WASM_VECTOR_LEN = buf.length; + return ptr; + } - if (realloc === undefined) { - const buf = cachedTextEncoder.encode(arg); - const ptr = malloc(buf.length, 1) >>> 0; - getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf); - WASM_VECTOR_LEN = buf.length; - return ptr; - } + let len = arg.length; + let ptr = malloc(len, 1) >>> 0; - let len = arg.length; - let ptr = malloc(len, 1) >>> 0; + const mem = getUint8Memory0(); - const mem = getUint8Memory0(); + let offset = 0; - let offset = 0; + for (; offset < len; offset++) { + const code = arg.charCodeAt(offset); + if (code > 0x7f) break; + mem[ptr + offset] = code; + } - for (; offset < len; offset++) { - const code = arg.charCodeAt(offset); - if (code > 0x7F) break; - mem[ptr + offset] = code; + if (offset !== len) { + if (offset !== 0) { + arg = arg.slice(offset); } + ptr = realloc(ptr, len, (len = offset + arg.length * 3), 1) >>> 0; + const view = getUint8Memory0().subarray(ptr + offset, ptr + len); + const ret = encodeString(arg, view); - if (offset !== len) { - if (offset !== 0) { - arg = arg.slice(offset); - } - ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0; - const view = getUint8Memory0().subarray(ptr + offset, ptr + len); - const ret = encodeString(arg, view); - - offset += ret.written; - } + offset += ret.written; + } - WASM_VECTOR_LEN = offset; - return ptr; + WASM_VECTOR_LEN = offset; + return ptr; } function isLikeNone(x) { - return x === undefined || x === null; + return x === undefined || x === null; } let cachedInt32Memory0 = null; function getInt32Memory0() { - if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) { - cachedInt32Memory0 = new Int32Array(wasm.memory.buffer); - } - return cachedInt32Memory0; + if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) { + cachedInt32Memory0 = new Int32Array(wasm.memory.buffer); + } + return cachedInt32Memory0; } let cachedFloat64Memory0 = null; function getFloat64Memory0() { - if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) { - cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer); - } - return cachedFloat64Memory0; + if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) { + cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer); + } + return cachedFloat64Memory0; } -const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder; +const lTextDecoder = + typeof TextDecoder === "undefined" + ? (0, module.require)("util").TextDecoder + : TextDecoder; -let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true }); +let cachedTextDecoder = new lTextDecoder("utf-8", { + ignoreBOM: true, + fatal: true, +}); cachedTextDecoder.decode(); function getStringFromWasm0(ptr, len) { - ptr = ptr >>> 0; - return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); + ptr = ptr >>> 0; + return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); } let cachedBigInt64Memory0 = null; function getBigInt64Memory0() { - if (cachedBigInt64Memory0 === null || cachedBigInt64Memory0.byteLength === 0) { - cachedBigInt64Memory0 = new BigInt64Array(wasm.memory.buffer); - } - return cachedBigInt64Memory0; + if ( + cachedBigInt64Memory0 === null || + cachedBigInt64Memory0.byteLength === 0 + ) { + cachedBigInt64Memory0 = new BigInt64Array(wasm.memory.buffer); + } + return cachedBigInt64Memory0; } function debugString(val) { - // primitive types - const type = typeof val; - if (type == 'number' || type == 'boolean' || val == null) { - return `${val}`; - } - if (type == 'string') { - return `"${val}"`; - } - if (type == 'symbol') { - const description = val.description; - if (description == null) { - return 'Symbol'; - } else { - return `Symbol(${description})`; - } - } - if (type == 'function') { - const name = val.name; - if (typeof name == 'string' && name.length > 0) { - return `Function(${name})`; - } else { - return 'Function'; - } - } - // objects - if (Array.isArray(val)) { - const length = val.length; - let debug = '['; - if (length > 0) { - debug += debugString(val[0]); - } - for(let i = 1; i < length; i++) { - debug += ', ' + debugString(val[i]); - } - debug += ']'; - return debug; - } - // Test for built-in - const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val)); - let className; - if (builtInMatches.length > 1) { - className = builtInMatches[1]; + // primitive types + const type = typeof val; + if (type == "number" || type == "boolean" || val == null) { + return `${val}`; + } + if (type == "string") { + return `"${val}"`; + } + if (type == "symbol") { + const description = val.description; + if (description == null) { + return "Symbol"; } else { - // Failed to match the standard '[object ClassName]' - return toString.call(val); + return `Symbol(${description})`; } - if (className == 'Object') { - // we're a user defined class or Object - // JSON.stringify avoids problems with cycles, and is generally much - // easier than looping through ownProperties of `val`. - try { - return 'Object(' + JSON.stringify(val) + ')'; - } catch (_) { - return 'Object'; - } - } - // errors - if (val instanceof Error) { - return `${val.name}: ${val.message}\n${val.stack}`; - } - // TODO we could test for more things here, like `Set`s and `Map`s. - return className; + } + if (type == "function") { + const name = val.name; + if (typeof name == "string" && name.length > 0) { + return `Function(${name})`; + } else { + return "Function"; + } + } + // objects + if (Array.isArray(val)) { + const length = val.length; + let debug = "["; + if (length > 0) { + debug += debugString(val[0]); + } + for (let i = 1; i < length; i++) { + debug += ", " + debugString(val[i]); + } + debug += "]"; + return debug; + } + // Test for built-in + const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val)); + let className; + if (builtInMatches.length > 1) { + className = builtInMatches[1]; + } else { + // Failed to match the standard '[object ClassName]' + return toString.call(val); + } + if (className == "Object") { + // we're a user defined class or Object + // JSON.stringify avoids problems with cycles, and is generally much + // easier than looping through ownProperties of `val`. + try { + return "Object(" + JSON.stringify(val) + ")"; + } catch (_) { + return "Object"; + } + } + // errors + if (val instanceof Error) { + return `${val.name}: ${val.message}\n${val.stack}`; + } + // TODO we could test for more things here, like `Set`s and `Map`s. + return className; } let stack_pointer = 128; function addBorrowedObject(obj) { - if (stack_pointer == 1) throw new Error('out of js stack'); - heap[--stack_pointer] = obj; - return stack_pointer; + if (stack_pointer == 1) throw new Error("out of js stack"); + heap[--stack_pointer] = obj; + return stack_pointer; } /** -* @param {string} encryption_sk -* @returns {string} -*/ -export function convert_encryption_sk_string_to_encryption_pk_string(encryption_sk) { - let deferred3_0; - let deferred3_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.convert_encryption_sk_string_to_encryption_pk_string(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr2 = r0; - var len2 = r1; - if (r3) { - ptr2 = 0; len2 = 0; - throw takeObject(r2); - } - deferred3_0 = ptr2; - deferred3_1 = len2; - return getStringFromWasm0(ptr2, len2); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred3_0, deferred3_1, 1); - } + * @param {string} encryption_sk + * @returns {string} + */ +export function convert_encryption_sk_string_to_encryption_pk_string( + encryption_sk +) { + let deferred3_0; + let deferred3_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.convert_encryption_sk_string_to_encryption_pk_string( + retptr, + ptr0, + len0 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr2 = r0; + var len2 = r1; + if (r3) { + ptr2 = 0; + len2 = 0; + throw takeObject(r2); + } + deferred3_0 = ptr2; + deferred3_1 = len2; + return getStringFromWasm0(ptr2, len2); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred3_0, deferred3_1, 1); + } } /** -* @param {string} input -* @returns {string} -*/ + * @param {string} input + * @returns {string} + */ export function calculate_blake3_hash(input) { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(input, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.calculate_blake3_hash(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred2_0 = r0; - deferred2_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + input, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.calculate_blake3_hash(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred2_0 = r0; + deferred2_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } } function handleError(f, args) { - try { - return f.apply(this, args); - } catch (e) { - wasm.__wbindgen_exn_store(addHeapObject(e)); - } + try { + return f.apply(this, args); + } catch (e) { + wasm.__wbindgen_exn_store(addHeapObject(e)); + } } /** -*/ + */ export class InboxNameWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(InboxNameWrapper.prototype); + obj.__wbg_ptr = ptr; + + return obj; + } + + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(InboxNameWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_inboxnamewrapper_free(ptr); - } - /** - * @param {any} inbox_name_js - */ - constructor(inbox_name_js) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.inboxnamewrapper_new(retptr, addBorrowedObject(inbox_name_js)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return InboxNameWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {any} - */ - get to_string() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.inboxnamewrapper_to_string(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {any} - */ - get get_value() { - const ret = wasm.inboxnamewrapper_get_value(this.__wbg_ptr); - return takeObject(ret); - } - /** - * @returns {boolean} - */ - get get_is_e2e() { - const ret = wasm.inboxnamewrapper_get_is_e2e(this.__wbg_ptr); - return ret !== 0; - } - /** - * @returns {any} - */ - get get_identities() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.inboxnamewrapper_get_identities(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {any} - */ - get get_unique_id() { - const ret = wasm.inboxnamewrapper_get_unique_id(this.__wbg_ptr); - return takeObject(ret); - } - /** - * @returns {any} - */ - to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.inboxnamewrapper_to_jsvalue(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - to_json_str() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.inboxnamewrapper_to_json_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @param {boolean} is_e2e - * @returns {InboxNameWrapper} - */ - static get_regular_inbox_name_from_params(sender, sender_subidentity, recipient, recipient_subidentity, is_e2e) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - wasm.inboxnamewrapper_get_regular_inbox_name_from_params(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, is_e2e); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return InboxNameWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} unique_id - * @returns {InboxNameWrapper} - */ - static get_job_inbox_name_from_params(unique_id) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(unique_id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.inboxnamewrapper_get_job_inbox_name_from_params(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return InboxNameWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {any} - */ - get_inner() { - const ret = wasm.inboxnamewrapper_get_inner(this.__wbg_ptr); - return takeObject(ret); + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_inboxnamewrapper_free(ptr); + } + /** + * @param {any} inbox_name_js + */ + constructor(inbox_name_js) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.inboxnamewrapper_new(retptr, addBorrowedObject(inbox_name_js)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return InboxNameWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {any} + */ + get to_string() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.inboxnamewrapper_to_string(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {any} + */ + get get_value() { + const ret = wasm.inboxnamewrapper_get_value(this.__wbg_ptr); + return takeObject(ret); + } + /** + * @returns {boolean} + */ + get get_is_e2e() { + const ret = wasm.inboxnamewrapper_get_is_e2e(this.__wbg_ptr); + return ret !== 0; + } + /** + * @returns {any} + */ + get get_identities() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.inboxnamewrapper_get_identities(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {any} + */ + get get_unique_id() { + const ret = wasm.inboxnamewrapper_get_unique_id(this.__wbg_ptr); + return takeObject(ret); + } + /** + * @returns {any} + */ + to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.inboxnamewrapper_to_jsvalue(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); } + } + /** + * @returns {string} + */ + to_json_str() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.inboxnamewrapper_to_json_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @param {boolean} is_e2e + * @returns {InboxNameWrapper} + */ + static get_regular_inbox_name_from_params( + sender, + sender_subidentity, + recipient, + recipient_subidentity, + is_e2e + ) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + wasm.inboxnamewrapper_get_regular_inbox_name_from_params( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + is_e2e + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return InboxNameWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} unique_id + * @returns {InboxNameWrapper} + */ + static get_job_inbox_name_from_params(unique_id) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + unique_id, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.inboxnamewrapper_get_job_inbox_name_from_params(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return InboxNameWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {any} + */ + get_inner() { + const ret = wasm.inboxnamewrapper_get_inner(this.__wbg_ptr); + return takeObject(ret); + } } /** -*/ + */ export class JobCreationWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(JobCreationWrapper.prototype); + obj.__wbg_ptr = ptr; - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(JobCreationWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_jobcreationwrapper_free(ptr); - } - /** - * @param {any} scope_js - */ - constructor(scope_js) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobcreationwrapper_new(retptr, addBorrowedObject(scope_js)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobCreationWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {any} - */ - to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobcreationwrapper_to_jsvalue(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - to_json_str() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobcreationwrapper_to_json_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @returns {any} - */ - get get_scope() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobcreationwrapper_get_scope(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} s - * @returns {JobCreationWrapper} - */ - static from_json_str(s) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(s, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.jobcreationwrapper_from_json_str(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobCreationWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} js_value - * @returns {JobCreationWrapper} - */ - static from_jsvalue(js_value) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobcreationwrapper_from_jsvalue(retptr, addBorrowedObject(js_value)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobCreationWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {JobCreationWrapper} - */ - static empty() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobcreationwrapper_empty(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobCreationWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } + return obj; + } + + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; + + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_jobcreationwrapper_free(ptr); + } + /** + * @param {any} scope_js + */ + constructor(scope_js) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobcreationwrapper_new(retptr, addBorrowedObject(scope_js)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobCreationWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {any} + */ + to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobcreationwrapper_to_jsvalue(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {string} + */ + to_json_str() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobcreationwrapper_to_json_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @returns {any} + */ + get get_scope() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobcreationwrapper_get_scope(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} s + * @returns {JobCreationWrapper} + */ + static from_json_str(s) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + s, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.jobcreationwrapper_from_json_str(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobCreationWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} js_value + * @returns {JobCreationWrapper} + */ + static from_jsvalue(js_value) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobcreationwrapper_from_jsvalue(retptr, addBorrowedObject(js_value)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobCreationWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {JobCreationWrapper} + */ + static empty() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobcreationwrapper_empty(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobCreationWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); } + } } /** -*/ + */ export class JobMessageWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(JobMessageWrapper.prototype); + obj.__wbg_ptr = ptr; - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(JobMessageWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_jobmessagewrapper_free(ptr); - } - /** - * @param {any} job_id_js - * @param {any} content_js - * @param {any} files_inbox - */ - constructor(job_id_js, content_js, files_inbox) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobmessagewrapper_new(retptr, addBorrowedObject(job_id_js), addBorrowedObject(content_js), addBorrowedObject(files_inbox)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - heap[stack_pointer++] = undefined; - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {any} - */ - to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobmessagewrapper_to_jsvalue(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - to_json_str() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobmessagewrapper_to_json_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @param {string} s - * @returns {JobMessageWrapper} - */ - static from_json_str(s) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(s, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.jobmessagewrapper_from_json_str(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} js_value - * @returns {JobMessageWrapper} - */ - static from_jsvalue(js_value) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobmessagewrapper_from_jsvalue(retptr, addBorrowedObject(js_value)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @param {string} job_id - * @param {string} content - * @param {string} files_inbox - * @returns {JobMessageWrapper} - */ - static fromStrings(job_id, content, files_inbox) { - const ptr0 = passStringToWasm0(job_id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(content, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(files_inbox, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ret = wasm.jobmessagewrapper_fromStrings(ptr0, len0, ptr1, len1, ptr2, len2); - return JobMessageWrapper.__wrap(ret); + return obj; + } + + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; + + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_jobmessagewrapper_free(ptr); + } + /** + * @param {any} job_id_js + * @param {any} content_js + * @param {any} files_inbox + */ + constructor(job_id_js, content_js, files_inbox) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobmessagewrapper_new( + retptr, + addBorrowedObject(job_id_js), + addBorrowedObject(content_js), + addBorrowedObject(files_inbox) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + heap[stack_pointer++] = undefined; + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {any} + */ + to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobmessagewrapper_to_jsvalue(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); } + } + /** + * @returns {string} + */ + to_json_str() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobmessagewrapper_to_json_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @param {string} s + * @returns {JobMessageWrapper} + */ + static from_json_str(s) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + s, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.jobmessagewrapper_from_json_str(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} js_value + * @returns {JobMessageWrapper} + */ + static from_jsvalue(js_value) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobmessagewrapper_from_jsvalue(retptr, addBorrowedObject(js_value)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @param {string} job_id + * @param {string} content + * @param {string} files_inbox + * @returns {JobMessageWrapper} + */ + static fromStrings(job_id, content, files_inbox) { + const ptr0 = passStringToWasm0( + job_id, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + content, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + files_inbox, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ret = wasm.jobmessagewrapper_fromStrings( + ptr0, + len0, + ptr1, + len1, + ptr2, + len2 + ); + return JobMessageWrapper.__wrap(ret); + } } /** -*/ + */ export class JobScopeWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(JobScopeWrapper.prototype); + obj.__wbg_ptr = ptr; + + return obj; + } - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(JobScopeWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_jobscopewrapper_free(ptr); - } - /** - * @param {any} buckets_js - * @param {any} documents_js - */ - constructor(buckets_js, documents_js) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobscopewrapper_new(retptr, addBorrowedObject(buckets_js), addBorrowedObject(documents_js)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return JobScopeWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {any} - */ - to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobscopewrapper_to_jsvalue(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - to_json_str() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.jobscopewrapper_to_json_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; + + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_jobscopewrapper_free(ptr); + } + /** + * @param {any} buckets_js + * @param {any} documents_js + */ + constructor(buckets_js, documents_js) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobscopewrapper_new( + retptr, + addBorrowedObject(buckets_js), + addBorrowedObject(documents_js) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return JobScopeWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {any} + */ + to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobscopewrapper_to_jsvalue(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); } + } + /** + * @returns {string} + */ + to_json_str() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.jobscopewrapper_to_json_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } } /** -*/ + */ export class SerializedAgentWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(SerializedAgentWrapper.prototype); + obj.__wbg_ptr = ptr; + + return obj; + } - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(SerializedAgentWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_serializedagentwrapper_free(ptr); - } - /** - * @param {any} serialized_agent_js - */ - constructor(serialized_agent_js) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.serializedagentwrapper_fromJsValue(retptr, addBorrowedObject(serialized_agent_js)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return SerializedAgentWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @param {string} id - * @param {string} full_identity_name - * @param {string} perform_locally - * @param {string} external_url - * @param {string} api_key - * @param {string} model - * @param {string} toolkit_permissions - * @param {string} storage_bucket_permissions - * @param {string} allowed_message_senders - * @returns {SerializedAgentWrapper} - */ - static fromStrings(id, full_identity_name, perform_locally, external_url, api_key, model, toolkit_permissions, storage_bucket_permissions, allowed_message_senders) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(full_identity_name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(perform_locally, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(external_url, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(api_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(model, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(toolkit_permissions, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(storage_bucket_permissions, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(allowed_message_senders, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - wasm.serializedagentwrapper_fromStrings(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return SerializedAgentWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {any} - */ - to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.serializedagentwrapper_inner(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} j - * @returns {SerializedAgentWrapper} - */ - static fromJsValue(j) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.serializedagentwrapper_fromJsValue(retptr, addBorrowedObject(j)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return SerializedAgentWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {string} - */ - to_json_str() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.serializedagentwrapper_to_json_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @param {string} s - * @returns {SerializedAgentWrapper} - */ - static from_json_str(s) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(s, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.serializedagentwrapper_from_json_str(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return SerializedAgentWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {any} - */ - get inner() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.serializedagentwrapper_inner(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; + + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_serializedagentwrapper_free(ptr); + } + /** + * @param {any} serialized_agent_js + */ + constructor(serialized_agent_js) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.serializedagentwrapper_fromJsValue( + retptr, + addBorrowedObject(serialized_agent_js) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return SerializedAgentWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @param {string} id + * @param {string} full_identity_name + * @param {string} perform_locally + * @param {string} external_url + * @param {string} api_key + * @param {string} model + * @param {string} toolkit_permissions + * @param {string} storage_bucket_permissions + * @param {string} allowed_message_senders + * @returns {SerializedAgentWrapper} + */ + static fromStrings( + id, + full_identity_name, + perform_locally, + external_url, + api_key, + model, + toolkit_permissions, + storage_bucket_permissions, + allowed_message_senders + ) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + id, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + full_identity_name, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + perform_locally, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + external_url, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + api_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + model, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + toolkit_permissions, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + storage_bucket_permissions, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + allowed_message_senders, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + wasm.serializedagentwrapper_fromStrings( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return SerializedAgentWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); } + } + /** + * @returns {any} + */ + to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.serializedagentwrapper_inner(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} j + * @returns {SerializedAgentWrapper} + */ + static fromJsValue(j) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.serializedagentwrapper_fromJsValue(retptr, addBorrowedObject(j)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return SerializedAgentWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {string} + */ + to_json_str() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.serializedagentwrapper_to_json_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @param {string} s + * @returns {SerializedAgentWrapper} + */ + static from_json_str(s) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + s, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.serializedagentwrapper_from_json_str(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return SerializedAgentWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {any} + */ + get inner() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.serializedagentwrapper_inner(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } } /** -*/ + */ export class ShinkaiMessageBuilderWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(ShinkaiMessageBuilderWrapper.prototype); + obj.__wbg_ptr = ptr; - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(ShinkaiMessageBuilderWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_shinkaimessagebuilderwrapper_free(ptr); - } - /** - * @param {string} my_encryption_secret_key - * @param {string} my_signature_secret_key - * @param {string} receiver_public_key - */ - constructor(my_encryption_secret_key, my_signature_secret_key, receiver_public_key) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_encryption_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_signature_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_new(retptr, ptr0, len0, ptr1, len1, ptr2, len2); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiMessageBuilderWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} encryption - */ - body_encryption(encryption) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_body_encryption(retptr, this.__wbg_ptr, addHeapObject(encryption)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - */ - no_body_encryption() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_no_body_encryption(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} message_raw_content - */ - message_raw_content(message_raw_content) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(message_raw_content, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_message_raw_content(retptr, this.__wbg_ptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} content - */ - message_schema_type(content) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_message_schema_type(retptr, this.__wbg_ptr, addHeapObject(content)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} sender_subidentity - * @param {string} recipient_subidentity - * @param {any} encryption - */ - internal_metadata(sender_subidentity, recipient_subidentity, encryption) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_internal_metadata(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1, addHeapObject(encryption)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} sender_subidentity - * @param {string} recipient_subidentity - * @param {string} inbox - * @param {any} encryption - */ - internal_metadata_with_inbox(sender_subidentity, recipient_subidentity, inbox, encryption) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(inbox, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_internal_metadata_with_inbox(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2, addHeapObject(encryption)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} sender_subidentity - * @param {string} recipient_subidentity - * @param {string} inbox - * @param {any} message_schema - * @param {any} encryption - */ - internal_metadata_with_schema(sender_subidentity, recipient_subidentity, inbox, message_schema, encryption) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(inbox, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_internal_metadata_with_schema(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2, addHeapObject(message_schema), addHeapObject(encryption)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - */ - empty_encrypted_internal_metadata() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_empty_encrypted_internal_metadata(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - */ - empty_non_encrypted_internal_metadata() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_empty_non_encrypted_internal_metadata(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} recipient - * @param {string} sender - */ - external_metadata(recipient, sender) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_external_metadata(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} recipient - * @param {string} sender - * @param {string} intra_sender - */ - external_metadata_with_intra(recipient, sender, intra_sender) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(intra_sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_external_metadata_with_intra(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} recipient - * @param {string} sender - * @param {string} other - */ - external_metadata_with_other(recipient, sender, other) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(other, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_external_metadata_with_other(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} recipient - * @param {string} sender - * @param {string} other - * @param {string} intra_sender - */ - external_metadata_with_other_and_intra_sender(recipient, sender, other, intra_sender) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(other, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(intra_sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_external_metadata_with_other_and_intra_sender(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {string} recipient - * @param {string} sender - * @param {string} scheduled_time - */ - external_metadata_with_schedule(recipient, sender, scheduled_time) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(scheduled_time, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_external_metadata_with_schedule(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {ShinkaiMessageWrapper} - */ - build() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_build(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {any} - */ - build_to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_build_to_jsvalue(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - build_to_string() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagebuilderwrapper_build_to_string(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @param {string} my_encryption_secret_key - * @param {string} my_signature_secret_key - * @param {string} receiver_public_key - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} receiver - * @returns {string} - */ - static ack_message(my_encryption_secret_key, my_signature_secret_key, receiver_public_key, sender, sender_subidentity, receiver) { - let deferred8_0; - let deferred8_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_encryption_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_signature_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(receiver, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_ack_message(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr7 = r0; - var len7 = r1; - if (r3) { - ptr7 = 0; len7 = 0; - throw takeObject(r2); - } - deferred8_0 = ptr7; - deferred8_1 = len7; - return getStringFromWasm0(ptr7, len7); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred8_0, deferred8_1, 1); - } - } - /** - * @param {string} my_subidentity_encryption_sk - * @param {string} my_subidentity_signature_sk - * @param {string} receiver_public_key - * @param {string} permissions - * @param {string} code_type - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static request_code_registration(my_subidentity_encryption_sk, my_subidentity_signature_sk, receiver_public_key, permissions, code_type, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred11_0; - let deferred11_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_subidentity_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_subidentity_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(permissions, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(code_type, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_request_code_registration(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr10 = r0; - var len10 = r1; - if (r3) { - ptr10 = 0; len10 = 0; - throw takeObject(r2); - } - deferred11_0 = ptr10; - deferred11_1 = len10; - return getStringFromWasm0(ptr10, len10); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); - } - } - /** - * @param {string} profile_encryption_sk - * @param {string} profile_signature_sk - * @param {string} receiver_public_key - * @param {string} code - * @param {string} identity_type - * @param {string} permission_type - * @param {string} registration_name - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static use_code_registration_for_profile(profile_encryption_sk, profile_signature_sk, receiver_public_key, code, identity_type, permission_type, registration_name, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred13_0; - let deferred13_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(profile_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(profile_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(code, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(identity_type, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(permission_type, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(registration_name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - const ptr9 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len9 = WASM_VECTOR_LEN; - const ptr10 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len10 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_use_code_registration_for_profile(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8, ptr9, len9, ptr10, len10); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr12 = r0; - var len12 = r1; - if (r3) { - ptr12 = 0; len12 = 0; - throw takeObject(r2); - } - deferred13_0 = ptr12; - deferred13_1 = len12; - return getStringFromWasm0(ptr12, len12); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred13_0, deferred13_1, 1); - } - } - /** - * @param {string} my_device_encryption_sk - * @param {string} my_device_signature_sk - * @param {string} profile_encryption_sk - * @param {string} profile_signature_sk - * @param {string} receiver_public_key - * @param {string} code - * @param {string} identity_type - * @param {string} permission_type - * @param {string} registration_name - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static use_code_registration_for_device(my_device_encryption_sk, my_device_signature_sk, profile_encryption_sk, profile_signature_sk, receiver_public_key, code, identity_type, permission_type, registration_name, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred15_0; - let deferred15_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_device_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_device_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(profile_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(profile_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(code, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(identity_type, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(permission_type, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(registration_name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - const ptr9 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len9 = WASM_VECTOR_LEN; - const ptr10 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len10 = WASM_VECTOR_LEN; - const ptr11 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len11 = WASM_VECTOR_LEN; - const ptr12 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len12 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_use_code_registration_for_device(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8, ptr9, len9, ptr10, len10, ptr11, len11, ptr12, len12); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr14 = r0; - var len14 = r1; - if (r3) { - ptr14 = 0; len14 = 0; - throw takeObject(r2); - } - deferred15_0 = ptr14; - deferred15_1 = len14; - return getStringFromWasm0(ptr14, len14); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred15_0, deferred15_1, 1); - } - } - /** - * @param {string} my_device_encryption_sk - * @param {string} my_device_signature_sk - * @param {string} profile_encryption_sk - * @param {string} profile_signature_sk - * @param {string} registration_name - * @param {string} sender_subidentity - * @param {string} sender - * @param {string} receiver - * @returns {string} - */ - static initial_registration_with_no_code_for_device(my_device_encryption_sk, my_device_signature_sk, profile_encryption_sk, profile_signature_sk, registration_name, sender_subidentity, sender, receiver) { - let deferred10_0; - let deferred10_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_device_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_device_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(profile_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(profile_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(registration_name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(receiver, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_initial_registration_with_no_code_for_device(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr9 = r0; - var len9 = r1; - if (r3) { - ptr9 = 0; len9 = 0; - throw takeObject(r2); - } - deferred10_0 = ptr9; - deferred10_1 = len9; - return getStringFromWasm0(ptr9, len9); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred10_0, deferred10_1, 1); - } - } - /** - * @param {string} my_subidentity_encryption_sk - * @param {string} my_subidentity_signature_sk - * @param {string} receiver_public_key - * @param {string} inbox - * @param {number} count - * @param {string | undefined} offset - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static get_last_messages_from_inbox(my_subidentity_encryption_sk, my_subidentity_signature_sk, receiver_public_key, inbox, count, offset, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred11_0; - let deferred11_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_subidentity_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_subidentity_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(inbox, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - var ptr4 = isLikeNone(offset) ? 0 : passStringToWasm0(offset, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - var len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_get_last_messages_from_inbox(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, count, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr10 = r0; - var len10 = r1; - if (r3) { - ptr10 = 0; len10 = 0; - throw takeObject(r2); - } - deferred11_0 = ptr10; - deferred11_1 = len10; - return getStringFromWasm0(ptr10, len10); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); - } - } - /** - * @param {string} my_subidentity_encryption_sk - * @param {string} my_subidentity_signature_sk - * @param {string} receiver_public_key - * @param {string} inbox - * @param {number} count - * @param {string | undefined} offset - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static get_last_unread_messages_from_inbox(my_subidentity_encryption_sk, my_subidentity_signature_sk, receiver_public_key, inbox, count, offset, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred11_0; - let deferred11_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_subidentity_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_subidentity_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(inbox, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - var ptr4 = isLikeNone(offset) ? 0 : passStringToWasm0(offset, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - var len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_get_last_messages_from_inbox(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, count, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr10 = r0; - var len10 = r1; - if (r3) { - ptr10 = 0; len10 = 0; - throw takeObject(r2); - } - deferred11_0 = ptr10; - deferred11_1 = len10; - return getStringFromWasm0(ptr10, len10); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); - } - } - /** - * @param {string} my_subidentity_encryption_sk - * @param {string} my_subidentity_signature_sk - * @param {string} receiver_public_key - * @param {string} agent_json - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static request_add_agent(my_subidentity_encryption_sk, my_subidentity_signature_sk, receiver_public_key, agent_json, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred10_0; - let deferred10_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_subidentity_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_subidentity_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(agent_json, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_request_add_agent(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr9 = r0; - var len9 = r1; - if (r3) { - ptr9 = 0; len9 = 0; - throw takeObject(r2); - } - deferred10_0 = ptr9; - deferred10_1 = len9; - return getStringFromWasm0(ptr9, len9); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred10_0, deferred10_1, 1); - } - } - /** - * @param {string} my_subidentity_encryption_sk - * @param {string} my_subidentity_signature_sk - * @param {string} receiver_public_key - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static get_all_availability_agent(my_subidentity_encryption_sk, my_subidentity_signature_sk, receiver_public_key, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred9_0; - let deferred9_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_subidentity_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_subidentity_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_get_all_availability_agent(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr8 = r0; - var len8 = r1; - if (r3) { - ptr8 = 0; len8 = 0; - throw takeObject(r2); - } - deferred9_0 = ptr8; - deferred9_1 = len8; - return getStringFromWasm0(ptr8, len8); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred9_0, deferred9_1, 1); - } - } - /** - * @param {string} my_subidentity_encryption_sk - * @param {string} my_subidentity_signature_sk - * @param {string} receiver_public_key - * @param {string} inbox - * @param {string} up_to_time - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @returns {string} - */ - static read_up_to_time(my_subidentity_encryption_sk, my_subidentity_signature_sk, receiver_public_key, inbox, up_to_time, sender, sender_subidentity, recipient, recipient_subidentity) { - let deferred11_0; - let deferred11_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_subidentity_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_subidentity_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(inbox, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(up_to_time, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_read_up_to_time(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr10 = r0; - var len10 = r1; - if (r3) { - ptr10 = 0; len10 = 0; - throw takeObject(r2); - } - deferred11_0 = ptr10; - deferred11_1 = len10; - return getStringFromWasm0(ptr10, len10); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); - } - } - /** - * @param {string} my_subidentity_encryption_sk - * @param {string} my_subidentity_signature_sk - * @param {string} receiver_public_key - * @param {string} data - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} recipient - * @param {string} recipient_subidentity - * @param {string} other - * @param {string} schema - * @returns {string} - */ - static create_custom_shinkai_message_to_node(my_subidentity_encryption_sk, my_subidentity_signature_sk, receiver_public_key, data, sender, sender_subidentity, recipient, recipient_subidentity, other, schema) { - let deferred12_0; - let deferred12_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_subidentity_encryption_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_subidentity_signature_sk, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(data, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(recipient, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(recipient_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(other, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - const ptr9 = passStringToWasm0(schema, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len9 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_create_custom_shinkai_message_to_node(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8, ptr9, len9); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr11 = r0; - var len11 = r1; - if (r3) { - ptr11 = 0; len11 = 0; - throw takeObject(r2); - } - deferred12_0 = ptr11; - deferred12_1 = len11; - return getStringFromWasm0(ptr11, len11); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred12_0, deferred12_1, 1); - } - } - /** - * @param {string} message - * @param {string} my_encryption_secret_key - * @param {string} my_signature_secret_key - * @param {string} receiver_public_key - * @param {string} sender - * @param {string} receiver - * @returns {string} - */ - static ping_pong_message(message, my_encryption_secret_key, my_signature_secret_key, receiver_public_key, sender, receiver) { - let deferred8_0; - let deferred8_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(message, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_encryption_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(my_signature_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(receiver, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_ping_pong_message(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr7 = r0; - var len7 = r1; - if (r3) { - ptr7 = 0; len7 = 0; - throw takeObject(r2); - } - deferred8_0 = ptr7; - deferred8_1 = len7; - return getStringFromWasm0(ptr7, len7); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred8_0, deferred8_1, 1); - } - } - /** - * @param {string} my_encryption_secret_key - * @param {string} my_signature_secret_key - * @param {string} receiver_public_key - * @param {any} scope - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} receiver - * @param {string} receiver_subidentity - * @returns {string} - */ - static job_creation(my_encryption_secret_key, my_signature_secret_key, receiver_public_key, scope, sender, sender_subidentity, receiver, receiver_subidentity) { - let deferred9_0; - let deferred9_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_encryption_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_signature_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(receiver, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(receiver_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_job_creation(retptr, ptr0, len0, ptr1, len1, ptr2, len2, addHeapObject(scope), ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr8 = r0; - var len8 = r1; - if (r3) { - ptr8 = 0; len8 = 0; - throw takeObject(r2); - } - deferred9_0 = ptr8; - deferred9_1 = len8; - return getStringFromWasm0(ptr8, len8); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred9_0, deferred9_1, 1); - } - } - /** - * @param {string} job_id - * @param {string} content - * @param {string} files_inbox - * @param {string} my_encryption_secret_key - * @param {string} my_signature_secret_key - * @param {string} receiver_public_key - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} receiver - * @param {string} receiver_subidentity - * @returns {string} - */ - static job_message(job_id, content, files_inbox, my_encryption_secret_key, my_signature_secret_key, receiver_public_key, sender, sender_subidentity, receiver, receiver_subidentity) { - let deferred12_0; - let deferred12_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(job_id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(content, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(files_inbox, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(my_encryption_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(my_signature_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - const ptr7 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len7 = WASM_VECTOR_LEN; - const ptr8 = passStringToWasm0(receiver, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len8 = WASM_VECTOR_LEN; - const ptr9 = passStringToWasm0(receiver_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len9 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_job_message(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6, ptr7, len7, ptr8, len8, ptr9, len9); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr11 = r0; - var len11 = r1; - if (r3) { - ptr11 = 0; len11 = 0; - throw takeObject(r2); - } - deferred12_0 = ptr11; - deferred12_1 = len11; - return getStringFromWasm0(ptr11, len11); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred12_0, deferred12_1, 1); - } - } - /** - * @param {string} my_encryption_secret_key - * @param {string} my_signature_secret_key - * @param {string} receiver_public_key - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} receiver - * @returns {string} - */ - static terminate_message(my_encryption_secret_key, my_signature_secret_key, receiver_public_key, sender, sender_subidentity, receiver) { - let deferred8_0; - let deferred8_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_encryption_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_signature_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(receiver, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_terminate_message(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr7 = r0; - var len7 = r1; - if (r3) { - ptr7 = 0; len7 = 0; - throw takeObject(r2); - } - deferred8_0 = ptr7; - deferred8_1 = len7; - return getStringFromWasm0(ptr7, len7); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred8_0, deferred8_1, 1); - } - } - /** - * @param {string} my_encryption_secret_key - * @param {string} my_signature_secret_key - * @param {string} receiver_public_key - * @param {string} sender - * @param {string} sender_subidentity - * @param {string} receiver - * @param {string} error_msg - * @returns {string} - */ - static error_message(my_encryption_secret_key, my_signature_secret_key, receiver_public_key, sender, sender_subidentity, receiver, error_msg) { - let deferred9_0; - let deferred9_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(my_encryption_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ptr1 = passStringToWasm0(my_signature_secret_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - const ptr2 = passStringToWasm0(receiver_public_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len2 = WASM_VECTOR_LEN; - const ptr3 = passStringToWasm0(sender, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len3 = WASM_VECTOR_LEN; - const ptr4 = passStringToWasm0(sender_subidentity, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len4 = WASM_VECTOR_LEN; - const ptr5 = passStringToWasm0(receiver, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len5 = WASM_VECTOR_LEN; - const ptr6 = passStringToWasm0(error_msg, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len6 = WASM_VECTOR_LEN; - wasm.shinkaimessagebuilderwrapper_error_message(retptr, ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, ptr4, len4, ptr5, len5, ptr6, len6); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr8 = r0; - var len8 = r1; - if (r3) { - ptr8 = 0; len8 = 0; - throw takeObject(r2); - } - deferred9_0 = ptr8; - deferred9_1 = len8; - return getStringFromWasm0(ptr8, len8); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred9_0, deferred9_1, 1); - } + return obj; + } + + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; + + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_shinkaimessagebuilderwrapper_free(ptr); + } + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + */ + constructor( + my_encryption_secret_key, + my_signature_secret_key, + receiver_public_key + ) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_encryption_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_signature_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_new( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiMessageBuilderWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} encryption + */ + body_encryption(encryption) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_body_encryption( + retptr, + this.__wbg_ptr, + addHeapObject(encryption) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + */ + no_body_encryption() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_no_body_encryption( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} message_raw_content + */ + message_raw_content(message_raw_content) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + message_raw_content, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_message_raw_content( + retptr, + this.__wbg_ptr, + ptr0, + len0 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} content + */ + message_schema_type(content) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_message_schema_type( + retptr, + this.__wbg_ptr, + addHeapObject(content) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} sender_subidentity + * @param {string} recipient_subidentity + * @param {any} encryption + */ + internal_metadata(sender_subidentity, recipient_subidentity, encryption) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_internal_metadata( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1, + addHeapObject(encryption) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} sender_subidentity + * @param {string} recipient_subidentity + * @param {string} inbox + * @param {any} encryption + */ + internal_metadata_with_inbox( + sender_subidentity, + recipient_subidentity, + inbox, + encryption + ) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + inbox, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_internal_metadata_with_inbox( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + addHeapObject(encryption) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} sender_subidentity + * @param {string} recipient_subidentity + * @param {string} inbox + * @param {any} message_schema + * @param {any} encryption + */ + internal_metadata_with_schema( + sender_subidentity, + recipient_subidentity, + inbox, + message_schema, + encryption + ) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + inbox, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_internal_metadata_with_schema( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + addHeapObject(message_schema), + addHeapObject(encryption) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + */ + empty_encrypted_internal_metadata() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_empty_encrypted_internal_metadata( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + */ + empty_non_encrypted_internal_metadata() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_empty_non_encrypted_internal_metadata( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} recipient + * @param {string} sender + */ + external_metadata(recipient, sender) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_external_metadata( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} recipient + * @param {string} sender + * @param {string} intra_sender + */ + external_metadata_with_intra(recipient, sender, intra_sender) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + intra_sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_external_metadata_with_intra( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} recipient + * @param {string} sender + * @param {string} other + */ + external_metadata_with_other(recipient, sender, other) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + other, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_external_metadata_with_other( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} recipient + * @param {string} sender + * @param {string} other + * @param {string} intra_sender + */ + external_metadata_with_other_and_intra_sender( + recipient, + sender, + other, + intra_sender + ) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + other, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + intra_sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_external_metadata_with_other_and_intra_sender( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {string} recipient + * @param {string} sender + * @param {string} scheduled_time + */ + external_metadata_with_schedule(recipient, sender, scheduled_time) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + scheduled_time, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_external_metadata_with_schedule( + retptr, + this.__wbg_ptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {ShinkaiMessageWrapper} + */ + build() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_build(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {any} + */ + build_to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_build_to_jsvalue( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {string} + */ + build_to_string() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagebuilderwrapper_build_to_string(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @returns {string} + */ + static ack_message( + my_encryption_secret_key, + my_signature_secret_key, + receiver_public_key, + sender, + sender_subidentity, + receiver + ) { + let deferred8_0; + let deferred8_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_encryption_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_signature_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + receiver, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_ack_message( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr7 = r0; + var len7 = r1; + if (r3) { + ptr7 = 0; + len7 = 0; + throw takeObject(r2); + } + deferred8_0 = ptr7; + deferred8_1 = len7; + return getStringFromWasm0(ptr7, len7); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred8_0, deferred8_1, 1); + } + } + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} permissions + * @param {string} code_type + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static request_code_registration( + my_subidentity_encryption_sk, + my_subidentity_signature_sk, + receiver_public_key, + permissions, + code_type, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred11_0; + let deferred11_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_subidentity_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_subidentity_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + permissions, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + code_type, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_request_code_registration( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr10 = r0; + var len10 = r1; + if (r3) { + ptr10 = 0; + len10 = 0; + throw takeObject(r2); + } + deferred11_0 = ptr10; + deferred11_1 = len10; + return getStringFromWasm0(ptr10, len10); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); + } + } + /** + * @param {string} profile_encryption_sk + * @param {string} profile_signature_sk + * @param {string} receiver_public_key + * @param {string} code + * @param {string} identity_type + * @param {string} permission_type + * @param {string} registration_name + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static use_code_registration_for_profile( + profile_encryption_sk, + profile_signature_sk, + receiver_public_key, + code, + identity_type, + permission_type, + registration_name, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred13_0; + let deferred13_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + profile_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + profile_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + code, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + identity_type, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + permission_type, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + registration_name, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + const ptr9 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len9 = WASM_VECTOR_LEN; + const ptr10 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len10 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_use_code_registration_for_profile( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8, + ptr9, + len9, + ptr10, + len10 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr12 = r0; + var len12 = r1; + if (r3) { + ptr12 = 0; + len12 = 0; + throw takeObject(r2); + } + deferred13_0 = ptr12; + deferred13_1 = len12; + return getStringFromWasm0(ptr12, len12); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred13_0, deferred13_1, 1); + } + } + /** + * @param {string} my_device_encryption_sk + * @param {string} my_device_signature_sk + * @param {string} profile_encryption_sk + * @param {string} profile_signature_sk + * @param {string} receiver_public_key + * @param {string} code + * @param {string} identity_type + * @param {string} permission_type + * @param {string} registration_name + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static use_code_registration_for_device( + my_device_encryption_sk, + my_device_signature_sk, + profile_encryption_sk, + profile_signature_sk, + receiver_public_key, + code, + identity_type, + permission_type, + registration_name, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred15_0; + let deferred15_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_device_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_device_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + profile_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + profile_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + code, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + identity_type, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + permission_type, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + registration_name, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + const ptr9 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len9 = WASM_VECTOR_LEN; + const ptr10 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len10 = WASM_VECTOR_LEN; + const ptr11 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len11 = WASM_VECTOR_LEN; + const ptr12 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len12 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_use_code_registration_for_device( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8, + ptr9, + len9, + ptr10, + len10, + ptr11, + len11, + ptr12, + len12 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr14 = r0; + var len14 = r1; + if (r3) { + ptr14 = 0; + len14 = 0; + throw takeObject(r2); + } + deferred15_0 = ptr14; + deferred15_1 = len14; + return getStringFromWasm0(ptr14, len14); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred15_0, deferred15_1, 1); + } + } + /** + * @param {string} my_device_encryption_sk + * @param {string} my_device_signature_sk + * @param {string} profile_encryption_sk + * @param {string} profile_signature_sk + * @param {string} registration_name + * @param {string} sender_subidentity + * @param {string} sender + * @param {string} receiver + * @returns {string} + */ + static initial_registration_with_no_code_for_device( + my_device_encryption_sk, + my_device_signature_sk, + profile_encryption_sk, + profile_signature_sk, + registration_name, + sender_subidentity, + sender, + receiver + ) { + let deferred10_0; + let deferred10_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_device_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_device_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + profile_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + profile_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + registration_name, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + receiver, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_initial_registration_with_no_code_for_device( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr9 = r0; + var len9 = r1; + if (r3) { + ptr9 = 0; + len9 = 0; + throw takeObject(r2); + } + deferred10_0 = ptr9; + deferred10_1 = len9; + return getStringFromWasm0(ptr9, len9); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred10_0, deferred10_1, 1); + } + } + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} inbox + * @param {number} count + * @param {string | undefined} offset + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static get_last_messages_from_inbox( + my_subidentity_encryption_sk, + my_subidentity_signature_sk, + receiver_public_key, + inbox, + count, + offset, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred11_0; + let deferred11_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_subidentity_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_subidentity_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + inbox, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + var ptr4 = isLikeNone(offset) + ? 0 + : passStringToWasm0( + offset, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + var len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_get_last_messages_from_inbox( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + count, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr10 = r0; + var len10 = r1; + if (r3) { + ptr10 = 0; + len10 = 0; + throw takeObject(r2); + } + deferred11_0 = ptr10; + deferred11_1 = len10; + return getStringFromWasm0(ptr10, len10); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); + } + } + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} inbox + * @param {number} count + * @param {string | undefined} offset + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static get_last_unread_messages_from_inbox( + my_subidentity_encryption_sk, + my_subidentity_signature_sk, + receiver_public_key, + inbox, + count, + offset, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred11_0; + let deferred11_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_subidentity_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_subidentity_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + inbox, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + var ptr4 = isLikeNone(offset) + ? 0 + : passStringToWasm0( + offset, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + var len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_get_last_messages_from_inbox( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + count, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr10 = r0; + var len10 = r1; + if (r3) { + ptr10 = 0; + len10 = 0; + throw takeObject(r2); + } + deferred11_0 = ptr10; + deferred11_1 = len10; + return getStringFromWasm0(ptr10, len10); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); + } + } + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} agent_json + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static request_add_agent( + my_subidentity_encryption_sk, + my_subidentity_signature_sk, + receiver_public_key, + agent_json, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred10_0; + let deferred10_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_subidentity_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_subidentity_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + agent_json, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_request_add_agent( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr9 = r0; + var len9 = r1; + if (r3) { + ptr9 = 0; + len9 = 0; + throw takeObject(r2); + } + deferred10_0 = ptr9; + deferred10_1 = len9; + return getStringFromWasm0(ptr9, len9); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred10_0, deferred10_1, 1); + } + } + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static get_all_availability_agent( + my_subidentity_encryption_sk, + my_subidentity_signature_sk, + receiver_public_key, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred9_0; + let deferred9_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_subidentity_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_subidentity_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_get_all_availability_agent( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr8 = r0; + var len8 = r1; + if (r3) { + ptr8 = 0; + len8 = 0; + throw takeObject(r2); + } + deferred9_0 = ptr8; + deferred9_1 = len8; + return getStringFromWasm0(ptr8, len8); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred9_0, deferred9_1, 1); + } + } + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} inbox + * @param {string} up_to_time + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @returns {string} + */ + static read_up_to_time( + my_subidentity_encryption_sk, + my_subidentity_signature_sk, + receiver_public_key, + inbox, + up_to_time, + sender, + sender_subidentity, + recipient, + recipient_subidentity + ) { + let deferred11_0; + let deferred11_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_subidentity_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_subidentity_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + inbox, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + up_to_time, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_read_up_to_time( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr10 = r0; + var len10 = r1; + if (r3) { + ptr10 = 0; + len10 = 0; + throw takeObject(r2); + } + deferred11_0 = ptr10; + deferred11_1 = len10; + return getStringFromWasm0(ptr10, len10); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred11_0, deferred11_1, 1); + } + } + /** + * @param {string} my_subidentity_encryption_sk + * @param {string} my_subidentity_signature_sk + * @param {string} receiver_public_key + * @param {string} data + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} recipient + * @param {string} recipient_subidentity + * @param {string} other + * @param {string} schema + * @returns {string} + */ + static create_custom_shinkai_message_to_node( + my_subidentity_encryption_sk, + my_subidentity_signature_sk, + receiver_public_key, + data, + sender, + sender_subidentity, + recipient, + recipient_subidentity, + other, + schema + ) { + let deferred12_0; + let deferred12_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_subidentity_encryption_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_subidentity_signature_sk, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + data, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + recipient, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + recipient_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + other, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + const ptr9 = passStringToWasm0( + schema, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len9 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_create_custom_shinkai_message_to_node( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8, + ptr9, + len9 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr11 = r0; + var len11 = r1; + if (r3) { + ptr11 = 0; + len11 = 0; + throw takeObject(r2); + } + deferred12_0 = ptr11; + deferred12_1 = len11; + return getStringFromWasm0(ptr11, len11); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred12_0, deferred12_1, 1); + } + } + /** + * @param {string} message + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} receiver + * @returns {string} + */ + static ping_pong_message( + message, + my_encryption_secret_key, + my_signature_secret_key, + receiver_public_key, + sender, + receiver + ) { + let deferred8_0; + let deferred8_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + message, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_encryption_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + my_signature_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + receiver, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_ping_pong_message( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr7 = r0; + var len7 = r1; + if (r3) { + ptr7 = 0; + len7 = 0; + throw takeObject(r2); + } + deferred8_0 = ptr7; + deferred8_1 = len7; + return getStringFromWasm0(ptr7, len7); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred8_0, deferred8_1, 1); + } + } + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {any} scope + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @param {string} receiver_subidentity + * @returns {string} + */ + static job_creation( + my_encryption_secret_key, + my_signature_secret_key, + receiver_public_key, + scope, + sender, + sender_subidentity, + receiver, + receiver_subidentity + ) { + let deferred9_0; + let deferred9_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_encryption_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_signature_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + receiver, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + receiver_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_job_creation( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + addHeapObject(scope), + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr8 = r0; + var len8 = r1; + if (r3) { + ptr8 = 0; + len8 = 0; + throw takeObject(r2); + } + deferred9_0 = ptr8; + deferred9_1 = len8; + return getStringFromWasm0(ptr8, len8); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred9_0, deferred9_1, 1); + } + } + /** + * @param {string} job_id + * @param {string} content + * @param {string} files_inbox + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @param {string} receiver_subidentity + * @returns {string} + */ + static job_message( + job_id, + content, + files_inbox, + my_encryption_secret_key, + my_signature_secret_key, + receiver_public_key, + sender, + sender_subidentity, + receiver, + receiver_subidentity + ) { + let deferred12_0; + let deferred12_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + job_id, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + content, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + files_inbox, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + my_encryption_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + my_signature_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + const ptr7 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len7 = WASM_VECTOR_LEN; + const ptr8 = passStringToWasm0( + receiver, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len8 = WASM_VECTOR_LEN; + const ptr9 = passStringToWasm0( + receiver_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len9 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_job_message( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6, + ptr7, + len7, + ptr8, + len8, + ptr9, + len9 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr11 = r0; + var len11 = r1; + if (r3) { + ptr11 = 0; + len11 = 0; + throw takeObject(r2); + } + deferred12_0 = ptr11; + deferred12_1 = len11; + return getStringFromWasm0(ptr11, len11); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred12_0, deferred12_1, 1); + } + } + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @returns {string} + */ + static terminate_message( + my_encryption_secret_key, + my_signature_secret_key, + receiver_public_key, + sender, + sender_subidentity, + receiver + ) { + let deferred8_0; + let deferred8_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_encryption_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_signature_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + receiver, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_terminate_message( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr7 = r0; + var len7 = r1; + if (r3) { + ptr7 = 0; + len7 = 0; + throw takeObject(r2); + } + deferred8_0 = ptr7; + deferred8_1 = len7; + return getStringFromWasm0(ptr7, len7); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred8_0, deferred8_1, 1); + } + } + /** + * @param {string} my_encryption_secret_key + * @param {string} my_signature_secret_key + * @param {string} receiver_public_key + * @param {string} sender + * @param {string} sender_subidentity + * @param {string} receiver + * @param {string} error_msg + * @returns {string} + */ + static error_message( + my_encryption_secret_key, + my_signature_secret_key, + receiver_public_key, + sender, + sender_subidentity, + receiver, + error_msg + ) { + let deferred9_0; + let deferred9_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + my_encryption_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ptr1 = passStringToWasm0( + my_signature_secret_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + const ptr2 = passStringToWasm0( + receiver_public_key, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len2 = WASM_VECTOR_LEN; + const ptr3 = passStringToWasm0( + sender, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len3 = WASM_VECTOR_LEN; + const ptr4 = passStringToWasm0( + sender_subidentity, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len4 = WASM_VECTOR_LEN; + const ptr5 = passStringToWasm0( + receiver, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len5 = WASM_VECTOR_LEN; + const ptr6 = passStringToWasm0( + error_msg, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len6 = WASM_VECTOR_LEN; + wasm.shinkaimessagebuilderwrapper_error_message( + retptr, + ptr0, + len0, + ptr1, + len1, + ptr2, + len2, + ptr3, + len3, + ptr4, + len4, + ptr5, + len5, + ptr6, + len6 + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr8 = r0; + var len8 = r1; + if (r3) { + ptr8 = 0; + len8 = 0; + throw takeObject(r2); + } + deferred9_0 = ptr8; + deferred9_1 = len8; + return getStringFromWasm0(ptr8, len8); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred9_0, deferred9_1, 1); } + } } /** -*/ + */ export class ShinkaiMessageWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(ShinkaiMessageWrapper.prototype); + obj.__wbg_ptr = ptr; + + return obj; + } + + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(ShinkaiMessageWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_shinkaimessagewrapper_free(ptr); - } - /** - * @param {any} shinkai_message_js - */ - constructor(shinkai_message_js) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_fromJsValue(retptr, addBorrowedObject(shinkai_message_js)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {any} - */ - get message_body() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_message_body(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} body - */ - set message_body(body) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_set_message_body(retptr, this.__wbg_ptr, addHeapObject(body)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {any} - */ - get external_metadata() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_external_metadata(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} external_metadata - */ - set external_metadata(external_metadata) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_set_external_metadata(retptr, this.__wbg_ptr, addHeapObject(external_metadata)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - if (r1) { - throw takeObject(r0); - } - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - get encryption() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_encryption(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @param {string} encryption - */ - set encryption(encryption) { - const ptr0 = passStringToWasm0(encryption, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.shinkaimessagewrapper_set_encryption(this.__wbg_ptr, ptr0, len0); - } - /** - * @returns {any} - */ - to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_to_jsvalue(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @param {any} j - * @returns {ShinkaiMessageWrapper} - */ - static fromJsValue(j) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_fromJsValue(retptr, addBorrowedObject(j)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {string} - */ - to_json_str() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_to_json_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @param {string} s - * @returns {ShinkaiMessageWrapper} - */ - static from_json_str(s) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(s, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - wasm.shinkaimessagewrapper_from_json_str(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - calculate_blake3_hash() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_calculate_blake3_hash(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @returns {ShinkaiMessageWrapper} - */ - new_with_empty_outer_signature() { - const ret = wasm.shinkaimessagewrapper_new_with_empty_outer_signature(this.__wbg_ptr); - return ShinkaiMessageWrapper.__wrap(ret); - } - /** - * @returns {ShinkaiMessageWrapper} - */ - new_with_empty_inner_signature() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_new_with_empty_inner_signature(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiMessageWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - inner_content_for_hashing() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_inner_content_for_hashing(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @returns {string} - */ - calculate_blake3_hash_with_empty_outer_signature() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_calculate_blake3_hash_with_empty_outer_signature(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @returns {string} - */ - calculate_blake3_hash_with_empty_inner_signature() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_calculate_blake3_hash_with_empty_inner_signature(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @returns {string} - */ - static generate_time_now() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaimessagewrapper_generate_time_now(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_shinkaimessagewrapper_free(ptr); + } + /** + * @param {any} shinkai_message_js + */ + constructor(shinkai_message_js) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_fromJsValue( + retptr, + addBorrowedObject(shinkai_message_js) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {any} + */ + get message_body() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_message_body(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} body + */ + set message_body(body) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_set_message_body( + retptr, + this.__wbg_ptr, + addHeapObject(body) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); } + } + /** + * @returns {any} + */ + get external_metadata() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_external_metadata(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} external_metadata + */ + set external_metadata(external_metadata) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_set_external_metadata( + retptr, + this.__wbg_ptr, + addHeapObject(external_metadata) + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + if (r1) { + throw takeObject(r0); + } + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {string} + */ + get encryption() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_encryption(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @param {string} encryption + */ + set encryption(encryption) { + const ptr0 = passStringToWasm0( + encryption, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.shinkaimessagewrapper_set_encryption(this.__wbg_ptr, ptr0, len0); + } + /** + * @returns {any} + */ + to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_to_jsvalue(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @param {any} j + * @returns {ShinkaiMessageWrapper} + */ + static fromJsValue(j) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_fromJsValue(retptr, addBorrowedObject(j)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {string} + */ + to_json_str() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_to_json_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @param {string} s + * @returns {ShinkaiMessageWrapper} + */ + static from_json_str(s) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + s, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + wasm.shinkaimessagewrapper_from_json_str(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {string} + */ + calculate_blake3_hash() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_calculate_blake3_hash(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @returns {ShinkaiMessageWrapper} + */ + new_with_empty_outer_signature() { + const ret = wasm.shinkaimessagewrapper_new_with_empty_outer_signature( + this.__wbg_ptr + ); + return ShinkaiMessageWrapper.__wrap(ret); + } + /** + * @returns {ShinkaiMessageWrapper} + */ + new_with_empty_inner_signature() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_new_with_empty_inner_signature( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiMessageWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {string} + */ + inner_content_for_hashing() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_inner_content_for_hashing( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @returns {string} + */ + calculate_blake3_hash_with_empty_outer_signature() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_calculate_blake3_hash_with_empty_outer_signature( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @returns {string} + */ + calculate_blake3_hash_with_empty_inner_signature() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_calculate_blake3_hash_with_empty_inner_signature( + retptr, + this.__wbg_ptr + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @returns {string} + */ + static generate_time_now() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaimessagewrapper_generate_time_now(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } } /** -*/ + */ export class ShinkaiNameWrapper { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(ShinkaiNameWrapper.prototype); + obj.__wbg_ptr = ptr; - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(ShinkaiNameWrapper.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_shinkainamewrapper_free(ptr); - } - /** - * @param {any} shinkai_name_js - */ - constructor(shinkai_name_js) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkainamewrapper_new(retptr, addBorrowedObject(shinkai_name_js)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiNameWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - heap[stack_pointer++] = undefined; - } - } - /** - * @returns {any} - */ - get get_full_name() { - const ret = wasm.shinkainamewrapper_get_full_name(this.__wbg_ptr); - return takeObject(ret); - } - /** - * @returns {any} - */ - get get_node_name() { - const ret = wasm.shinkainamewrapper_get_node_name(this.__wbg_ptr); - return takeObject(ret); - } - /** - * @returns {any} - */ - get get_profile_name() { - const ret = wasm.shinkainamewrapper_get_profile_name(this.__wbg_ptr); - return takeObject(ret); - } - /** - * @returns {any} - */ - get get_subidentity_type() { - const ret = wasm.shinkainamewrapper_get_subidentity_type(this.__wbg_ptr); - return takeObject(ret); - } - /** - * @returns {any} - */ - get get_subidentity_name() { - const ret = wasm.shinkainamewrapper_get_subidentity_name(this.__wbg_ptr); - return takeObject(ret); - } - /** - * @returns {any} - */ - to_jsvalue() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkainamewrapper_to_jsvalue(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {string} - */ - to_json_str() { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkainamewrapper_to_json_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr1 = r0; - var len1 = r1; - if (r3) { - ptr1 = 0; len1 = 0; - throw takeObject(r2); - } - deferred2_0 = ptr1; - deferred2_1 = len1; - return getStringFromWasm0(ptr1, len1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); - } - } - /** - * @returns {ShinkaiNameWrapper} - */ - extract_profile() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkainamewrapper_extract_profile(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return ShinkaiNameWrapper.__wrap(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - } - } - /** - * @returns {ShinkaiNameWrapper} - */ - extract_node() { - const ret = wasm.shinkainamewrapper_extract_node(this.__wbg_ptr); - return ShinkaiNameWrapper.__wrap(ret); + return obj; + } + + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; + + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_shinkainamewrapper_free(ptr); + } + /** + * @param {any} shinkai_name_js + */ + constructor(shinkai_name_js) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkainamewrapper_new(retptr, addBorrowedObject(shinkai_name_js)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiNameWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + heap[stack_pointer++] = undefined; + } + } + /** + * @returns {any} + */ + get get_full_name() { + const ret = wasm.shinkainamewrapper_get_full_name(this.__wbg_ptr); + return takeObject(ret); + } + /** + * @returns {any} + */ + get get_node_name() { + const ret = wasm.shinkainamewrapper_get_node_name(this.__wbg_ptr); + return takeObject(ret); + } + /** + * @returns {any} + */ + get get_profile_name() { + const ret = wasm.shinkainamewrapper_get_profile_name(this.__wbg_ptr); + return takeObject(ret); + } + /** + * @returns {any} + */ + get get_subidentity_type() { + const ret = wasm.shinkainamewrapper_get_subidentity_type(this.__wbg_ptr); + return takeObject(ret); + } + /** + * @returns {any} + */ + get get_subidentity_name() { + const ret = wasm.shinkainamewrapper_get_subidentity_name(this.__wbg_ptr); + return takeObject(ret); + } + /** + * @returns {any} + */ + to_jsvalue() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkainamewrapper_to_jsvalue(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); } + } + /** + * @returns {string} + */ + to_json_str() { + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkainamewrapper_to_json_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; + len1 = 0; + throw takeObject(r2); + } + deferred2_0 = ptr1; + deferred2_1 = len1; + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred2_0, deferred2_1, 1); + } + } + /** + * @returns {ShinkaiNameWrapper} + */ + extract_profile() { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkainamewrapper_extract_profile(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); + } + return ShinkaiNameWrapper.__wrap(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } + } + /** + * @returns {ShinkaiNameWrapper} + */ + extract_node() { + const ret = wasm.shinkainamewrapper_extract_node(this.__wbg_ptr); + return ShinkaiNameWrapper.__wrap(ret); + } } /** -*/ -export class ShinkaiTime { - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_shinkaitime_free(ptr); - } - /** - * @returns {string} - */ - static generateTimeNow() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaitime_generateTimeNow(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @param {bigint} secs - * @returns {string} - */ - static generateTimeInFutureWithSecs(secs) { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaitime_generateTimeInFutureWithSecs(retptr, secs); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @param {number} year - * @param {number} month - * @param {number} day - * @param {number} hr - * @param {number} min - * @param {number} sec - * @returns {string} - */ - static generateSpecificTime(year, month, day, hr, min, sec) { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.shinkaitime_generateSpecificTime(retptr, year, month, day, hr, min, sec); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } + */ +export class ShinkaiStringTime { + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; + + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_shinkaitime_free(ptr); + } + /** + * @returns {string} + */ + static generateTimeNow() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaitime_generateTimeNow(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @param {bigint} secs + * @returns {string} + */ + static generateTimeInFutureWithSecs(secs) { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaitime_generateTimeInFutureWithSecs(retptr, secs); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @param {number} year + * @param {number} month + * @param {number} day + * @param {number} hr + * @param {number} min + * @param {number} sec + * @returns {string} + */ + static generateSpecificTime(year, month, day, hr, min, sec) { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.shinkaitime_generateSpecificTime( + retptr, + year, + month, + day, + hr, + min, + sec + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); } + } } /** -*/ + */ export class WasmEncryptionMethod { + static __wrap(ptr) { + ptr = ptr >>> 0; + const obj = Object.create(WasmEncryptionMethod.prototype); + obj.__wbg_ptr = ptr; + + return obj; + } + + __destroy_into_raw() { + const ptr = this.__wbg_ptr; + this.__wbg_ptr = 0; - static __wrap(ptr) { - ptr = ptr >>> 0; - const obj = Object.create(WasmEncryptionMethod.prototype); - obj.__wbg_ptr = ptr; - - return obj; - } - - __destroy_into_raw() { - const ptr = this.__wbg_ptr; - this.__wbg_ptr = 0; - - return ptr; - } - - free() { - const ptr = this.__destroy_into_raw(); - wasm.__wbg_wasmencryptionmethod_free(ptr); - } - /** - * @param {string} method - */ - constructor(method) { - const ptr0 = passStringToWasm0(method, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len0 = WASM_VECTOR_LEN; - const ret = wasm.wasmencryptionmethod_new(ptr0, len0); - return WasmEncryptionMethod.__wrap(ret); - } - /** - * @returns {string} - */ - as_str() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.wasmencryptionmethod_as_str(retptr, this.__wbg_ptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @returns {string} - */ - static DiffieHellmanChaChaPoly1305() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.wasmencryptionmethod_DiffieHellmanChaChaPoly1305(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } - } - /** - * @returns {string} - */ - static None() { - let deferred1_0; - let deferred1_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.wasmencryptionmethod_None(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred1_0 = r0; - deferred1_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); - } + return ptr; + } + + free() { + const ptr = this.__destroy_into_raw(); + wasm.__wbg_wasmencryptionmethod_free(ptr); + } + /** + * @param {string} method + */ + constructor(method) { + const ptr0 = passStringToWasm0( + method, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len0 = WASM_VECTOR_LEN; + const ret = wasm.wasmencryptionmethod_new(ptr0, len0); + return WasmEncryptionMethod.__wrap(ret); + } + /** + * @returns {string} + */ + as_str() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.wasmencryptionmethod_as_str(retptr, this.__wbg_ptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @returns {string} + */ + static DiffieHellmanChaChaPoly1305() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.wasmencryptionmethod_DiffieHellmanChaChaPoly1305(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); + } + } + /** + * @returns {string} + */ + static None() { + let deferred1_0; + let deferred1_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.wasmencryptionmethod_None(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred1_0 = r0; + deferred1_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(deferred1_0, deferred1_1, 1); } + } } export function __wbindgen_is_bigint(arg0) { - const ret = typeof(getObject(arg0)) === 'bigint'; - return ret; -}; + const ret = typeof getObject(arg0) === "bigint"; + return ret; +} export function __wbindgen_bigint_from_u64(arg0) { - const ret = BigInt.asUintN(64, arg0); - return addHeapObject(ret); -}; + const ret = BigInt.asUintN(64, arg0); + return addHeapObject(ret); +} export function __wbindgen_jsval_eq(arg0, arg1) { - const ret = getObject(arg0) === getObject(arg1); - return ret; -}; + const ret = getObject(arg0) === getObject(arg1); + return ret; +} export function __wbindgen_object_drop_ref(arg0) { - takeObject(arg0); -}; + takeObject(arg0); +} export function __wbindgen_string_get(arg0, arg1) { - const obj = getObject(arg1); - const ret = typeof(obj) === 'string' ? obj : undefined; - var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - var len1 = WASM_VECTOR_LEN; - getInt32Memory0()[arg0 / 4 + 1] = len1; - getInt32Memory0()[arg0 / 4 + 0] = ptr1; -}; + const obj = getObject(arg1); + const ret = typeof obj === "string" ? obj : undefined; + var ptr1 = isLikeNone(ret) + ? 0 + : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); + var len1 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len1; + getInt32Memory0()[arg0 / 4 + 0] = ptr1; +} export function __wbindgen_number_get(arg0, arg1) { - const obj = getObject(arg1); - const ret = typeof(obj) === 'number' ? obj : undefined; - getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret; - getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); -}; + const obj = getObject(arg1); + const ret = typeof obj === "number" ? obj : undefined; + getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret; + getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); +} export function __wbindgen_boolean_get(arg0) { - const v = getObject(arg0); - const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2; - return ret; -}; + const v = getObject(arg0); + const ret = typeof v === "boolean" ? (v ? 1 : 0) : 2; + return ret; +} export function __wbindgen_is_string(arg0) { - const ret = typeof(getObject(arg0)) === 'string'; - return ret; -}; + const ret = typeof getObject(arg0) === "string"; + return ret; +} export function __wbindgen_is_object(arg0) { - const val = getObject(arg0); - const ret = typeof(val) === 'object' && val !== null; - return ret; -}; + const val = getObject(arg0); + const ret = typeof val === "object" && val !== null; + return ret; +} export function __wbindgen_is_undefined(arg0) { - const ret = getObject(arg0) === undefined; - return ret; -}; + const ret = getObject(arg0) === undefined; + return ret; +} export function __wbindgen_in(arg0, arg1) { - const ret = getObject(arg0) in getObject(arg1); - return ret; -}; + const ret = getObject(arg0) in getObject(arg1); + return ret; +} export function __wbindgen_string_new(arg0, arg1) { - const ret = getStringFromWasm0(arg0, arg1); - return addHeapObject(ret); -}; + const ret = getStringFromWasm0(arg0, arg1); + return addHeapObject(ret); +} export function __wbindgen_object_clone_ref(arg0) { - const ret = getObject(arg0); - return addHeapObject(ret); -}; + const ret = getObject(arg0); + return addHeapObject(ret); +} export function __wbindgen_error_new(arg0, arg1) { - const ret = new Error(getStringFromWasm0(arg0, arg1)); - return addHeapObject(ret); -}; + const ret = new Error(getStringFromWasm0(arg0, arg1)); + return addHeapObject(ret); +} export function __wbg_log_1d3ae0273d8f4f8a(arg0) { - console.log(getObject(arg0)); -}; + console.log(getObject(arg0)); +} export function __wbindgen_number_new(arg0) { - const ret = arg0; - return addHeapObject(ret); -}; + const ret = arg0; + return addHeapObject(ret); +} export function __wbindgen_jsval_loose_eq(arg0, arg1) { - const ret = getObject(arg0) == getObject(arg1); - return ret; -}; + const ret = getObject(arg0) == getObject(arg1); + return ret; +} export function __wbg_String_88810dfeb4021902(arg0, arg1) { - const ret = String(getObject(arg1)); - const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - getInt32Memory0()[arg0 / 4 + 1] = len1; - getInt32Memory0()[arg0 / 4 + 0] = ptr1; -}; + const ret = String(getObject(arg1)); + const ptr1 = passStringToWasm0( + ret, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len1; + getInt32Memory0()[arg0 / 4 + 0] = ptr1; +} export function __wbg_getwithrefkey_5e6d9547403deab8(arg0, arg1) { - const ret = getObject(arg0)[getObject(arg1)]; - return addHeapObject(ret); -}; + const ret = getObject(arg0)[getObject(arg1)]; + return addHeapObject(ret); +} export function __wbg_set_841ac57cff3d672b(arg0, arg1, arg2) { - getObject(arg0)[takeObject(arg1)] = takeObject(arg2); -}; + getObject(arg0)[takeObject(arg1)] = takeObject(arg2); +} export function __wbg_crypto_c48a774b022d20ac(arg0) { - const ret = getObject(arg0).crypto; - return addHeapObject(ret); -}; + const ret = getObject(arg0).crypto; + return addHeapObject(ret); +} export function __wbg_process_298734cf255a885d(arg0) { - const ret = getObject(arg0).process; - return addHeapObject(ret); -}; + const ret = getObject(arg0).process; + return addHeapObject(ret); +} export function __wbg_versions_e2e78e134e3e5d01(arg0) { - const ret = getObject(arg0).versions; - return addHeapObject(ret); -}; + const ret = getObject(arg0).versions; + return addHeapObject(ret); +} export function __wbg_node_1cd7a5d853dbea79(arg0) { - const ret = getObject(arg0).node; - return addHeapObject(ret); -}; + const ret = getObject(arg0).node; + return addHeapObject(ret); +} export function __wbg_msCrypto_bcb970640f50a1e8(arg0) { - const ret = getObject(arg0).msCrypto; - return addHeapObject(ret); -}; + const ret = getObject(arg0).msCrypto; + return addHeapObject(ret); +} -export function __wbg_require_8f08ceecec0f4fee() { return handleError(function () { +export function __wbg_require_8f08ceecec0f4fee() { + return handleError(function () { const ret = module.require; return addHeapObject(ret); -}, arguments) }; + }, arguments); +} export function __wbindgen_is_function(arg0) { - const ret = typeof(getObject(arg0)) === 'function'; - return ret; -}; + const ret = typeof getObject(arg0) === "function"; + return ret; +} -export function __wbg_getRandomValues_37fa2ca9e4e07fab() { return handleError(function (arg0, arg1) { +export function __wbg_getRandomValues_37fa2ca9e4e07fab() { + return handleError(function (arg0, arg1) { getObject(arg0).getRandomValues(getObject(arg1)); -}, arguments) }; + }, arguments); +} -export function __wbg_randomFillSync_dc1e9a60c158336d() { return handleError(function (arg0, arg1) { +export function __wbg_randomFillSync_dc1e9a60c158336d() { + return handleError(function (arg0, arg1) { getObject(arg0).randomFillSync(takeObject(arg1)); -}, arguments) }; + }, arguments); +} export function __wbg_get_44be0491f933a435(arg0, arg1) { - const ret = getObject(arg0)[arg1 >>> 0]; - return addHeapObject(ret); -}; + const ret = getObject(arg0)[arg1 >>> 0]; + return addHeapObject(ret); +} export function __wbg_length_fff51ee6522a1a18(arg0) { - const ret = getObject(arg0).length; - return ret; -}; + const ret = getObject(arg0).length; + return ret; +} export function __wbg_new_898a68150f225f2e() { - const ret = new Array(); - return addHeapObject(ret); -}; + const ret = new Array(); + return addHeapObject(ret); +} export function __wbg_newnoargs_581967eacc0e2604(arg0, arg1) { - const ret = new Function(getStringFromWasm0(arg0, arg1)); - return addHeapObject(ret); -}; + const ret = new Function(getStringFromWasm0(arg0, arg1)); + return addHeapObject(ret); +} export function __wbg_new_56693dbed0c32988() { - const ret = new Map(); - return addHeapObject(ret); -}; + const ret = new Map(); + return addHeapObject(ret); +} export function __wbg_next_526fc47e980da008(arg0) { - const ret = getObject(arg0).next; - return addHeapObject(ret); -}; + const ret = getObject(arg0).next; + return addHeapObject(ret); +} -export function __wbg_next_ddb3312ca1c4e32a() { return handleError(function (arg0) { +export function __wbg_next_ddb3312ca1c4e32a() { + return handleError(function (arg0) { const ret = getObject(arg0).next(); return addHeapObject(ret); -}, arguments) }; + }, arguments); +} export function __wbg_done_5c1f01fb660d73b5(arg0) { - const ret = getObject(arg0).done; - return ret; -}; + const ret = getObject(arg0).done; + return ret; +} export function __wbg_value_1695675138684bd5(arg0) { - const ret = getObject(arg0).value; - return addHeapObject(ret); -}; + const ret = getObject(arg0).value; + return addHeapObject(ret); +} export function __wbg_iterator_97f0c81209c6c35a() { - const ret = Symbol.iterator; - return addHeapObject(ret); -}; + const ret = Symbol.iterator; + return addHeapObject(ret); +} -export function __wbg_get_97b561fb56f034b5() { return handleError(function (arg0, arg1) { +export function __wbg_get_97b561fb56f034b5() { + return handleError(function (arg0, arg1) { const ret = Reflect.get(getObject(arg0), getObject(arg1)); return addHeapObject(ret); -}, arguments) }; + }, arguments); +} -export function __wbg_call_cb65541d95d71282() { return handleError(function (arg0, arg1) { +export function __wbg_call_cb65541d95d71282() { + return handleError(function (arg0, arg1) { const ret = getObject(arg0).call(getObject(arg1)); return addHeapObject(ret); -}, arguments) }; + }, arguments); +} export function __wbg_new_b51585de1b234aff() { - const ret = new Object(); - return addHeapObject(ret); -}; + const ret = new Object(); + return addHeapObject(ret); +} -export function __wbg_self_1ff1d729e9aae938() { return handleError(function () { +export function __wbg_self_1ff1d729e9aae938() { + return handleError(function () { const ret = self.self; return addHeapObject(ret); -}, arguments) }; + }, arguments); +} -export function __wbg_window_5f4faef6c12b79ec() { return handleError(function () { +export function __wbg_window_5f4faef6c12b79ec() { + return handleError(function () { const ret = window.window; return addHeapObject(ret); -}, arguments) }; + }, arguments); +} -export function __wbg_globalThis_1d39714405582d3c() { return handleError(function () { +export function __wbg_globalThis_1d39714405582d3c() { + return handleError(function () { const ret = globalThis.globalThis; return addHeapObject(ret); -}, arguments) }; + }, arguments); +} -export function __wbg_global_651f05c6a0944d1c() { return handleError(function () { +export function __wbg_global_651f05c6a0944d1c() { + return handleError(function () { const ret = global.global; return addHeapObject(ret); -}, arguments) }; + }, arguments); +} export function __wbg_set_502d29070ea18557(arg0, arg1, arg2) { - getObject(arg0)[arg1 >>> 0] = takeObject(arg2); -}; + getObject(arg0)[arg1 >>> 0] = takeObject(arg2); +} export function __wbg_isArray_4c24b343cb13cfb1(arg0) { - const ret = Array.isArray(getObject(arg0)); - return ret; -}; + const ret = Array.isArray(getObject(arg0)); + return ret; +} export function __wbg_instanceof_ArrayBuffer_39ac22089b74fddb(arg0) { - let result; - try { - result = getObject(arg0) instanceof ArrayBuffer; - } catch { - result = false; - } - const ret = result; - return ret; -}; + let result; + try { + result = getObject(arg0) instanceof ArrayBuffer; + } catch { + result = false; + } + const ret = result; + return ret; +} -export function __wbg_call_01734de55d61e11d() { return handleError(function (arg0, arg1, arg2) { +export function __wbg_call_01734de55d61e11d() { + return handleError(function (arg0, arg1, arg2) { const ret = getObject(arg0).call(getObject(arg1), getObject(arg2)); return addHeapObject(ret); -}, arguments) }; + }, arguments); +} export function __wbg_set_bedc3d02d0f05eb0(arg0, arg1, arg2) { - const ret = getObject(arg0).set(getObject(arg1), getObject(arg2)); - return addHeapObject(ret); -}; + const ret = getObject(arg0).set(getObject(arg1), getObject(arg2)); + return addHeapObject(ret); +} export function __wbg_isSafeInteger_bb8e18dd21c97288(arg0) { - const ret = Number.isSafeInteger(getObject(arg0)); - return ret; -}; + const ret = Number.isSafeInteger(getObject(arg0)); + return ret; +} export function __wbg_getTime_5e2054f832d82ec9(arg0) { - const ret = getObject(arg0).getTime(); - return ret; -}; + const ret = getObject(arg0).getTime(); + return ret; +} export function __wbg_getTimezoneOffset_8aee3445f323973e(arg0) { - const ret = getObject(arg0).getTimezoneOffset(); - return ret; -}; + const ret = getObject(arg0).getTimezoneOffset(); + return ret; +} export function __wbg_new_cd59bfc8881f487b(arg0) { - const ret = new Date(getObject(arg0)); - return addHeapObject(ret); -}; + const ret = new Date(getObject(arg0)); + return addHeapObject(ret); +} export function __wbg_new0_c0be7df4b6bd481f() { - const ret = new Date(); - return addHeapObject(ret); -}; + const ret = new Date(); + return addHeapObject(ret); +} export function __wbg_entries_e51f29c7bba0c054(arg0) { - const ret = Object.entries(getObject(arg0)); - return addHeapObject(ret); -}; + const ret = Object.entries(getObject(arg0)); + return addHeapObject(ret); +} export function __wbg_buffer_085ec1f694018c4f(arg0) { - const ret = getObject(arg0).buffer; - return addHeapObject(ret); -}; + const ret = getObject(arg0).buffer; + return addHeapObject(ret); +} -export function __wbg_newwithbyteoffsetandlength_6da8e527659b86aa(arg0, arg1, arg2) { - const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0); - return addHeapObject(ret); -}; +export function __wbg_newwithbyteoffsetandlength_6da8e527659b86aa( + arg0, + arg1, + arg2 +) { + const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0); + return addHeapObject(ret); +} export function __wbg_new_8125e318e6245eed(arg0) { - const ret = new Uint8Array(getObject(arg0)); - return addHeapObject(ret); -}; + const ret = new Uint8Array(getObject(arg0)); + return addHeapObject(ret); +} export function __wbg_set_5cf90238115182c3(arg0, arg1, arg2) { - getObject(arg0).set(getObject(arg1), arg2 >>> 0); -}; + getObject(arg0).set(getObject(arg1), arg2 >>> 0); +} export function __wbg_length_72e2208bbc0efc61(arg0) { - const ret = getObject(arg0).length; - return ret; -}; + const ret = getObject(arg0).length; + return ret; +} export function __wbg_instanceof_Uint8Array_d8d9cb2b8e8ac1d4(arg0) { - let result; - try { - result = getObject(arg0) instanceof Uint8Array; - } catch { - result = false; - } - const ret = result; - return ret; -}; + let result; + try { + result = getObject(arg0) instanceof Uint8Array; + } catch { + result = false; + } + const ret = result; + return ret; +} export function __wbg_newwithlength_e5d69174d6984cd7(arg0) { - const ret = new Uint8Array(arg0 >>> 0); - return addHeapObject(ret); -}; + const ret = new Uint8Array(arg0 >>> 0); + return addHeapObject(ret); +} export function __wbg_subarray_13db269f57aa838d(arg0, arg1, arg2) { - const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0); - return addHeapObject(ret); -}; + const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0); + return addHeapObject(ret); +} export function __wbindgen_bigint_get_as_i64(arg0, arg1) { - const v = getObject(arg1); - const ret = typeof(v) === 'bigint' ? v : undefined; - getBigInt64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? BigInt(0) : ret; - getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); -}; + const v = getObject(arg1); + const ret = typeof v === "bigint" ? v : undefined; + getBigInt64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? BigInt(0) : ret; + getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); +} export function __wbindgen_debug_string(arg0, arg1) { - const ret = debugString(getObject(arg1)); - const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); - const len1 = WASM_VECTOR_LEN; - getInt32Memory0()[arg0 / 4 + 1] = len1; - getInt32Memory0()[arg0 / 4 + 0] = ptr1; -}; + const ret = debugString(getObject(arg1)); + const ptr1 = passStringToWasm0( + ret, + wasm.__wbindgen_malloc, + wasm.__wbindgen_realloc + ); + const len1 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len1; + getInt32Memory0()[arg0 / 4 + 0] = ptr1; +} export function __wbindgen_throw(arg0, arg1) { - throw new Error(getStringFromWasm0(arg0, arg1)); -}; + throw new Error(getStringFromWasm0(arg0, arg1)); +} export function __wbindgen_memory() { - const ret = wasm.memory; - return addHeapObject(ret); -}; - + const ret = wasm.memory; + return addHeapObject(ret); +} diff --git a/shinkai-libs/shinkai-message-wasm/src/shinkai_wasm_wrappers/shinkai_time.rs b/shinkai-libs/shinkai-message-wasm/src/shinkai_wasm_wrappers/shinkai_time.rs index 2d24bac9b..1cbe98730 100644 --- a/shinkai-libs/shinkai-message-wasm/src/shinkai_wasm_wrappers/shinkai_time.rs +++ b/shinkai-libs/shinkai-message-wasm/src/shinkai_wasm_wrappers/shinkai_time.rs @@ -1,25 +1,27 @@ -use chrono::{Utc, DateTime}; +use chrono::{DateTime, Utc}; use wasm_bindgen::prelude::*; #[cfg(target_arch = "wasm32")] #[wasm_bindgen] -pub struct ShinkaiTime {} +pub struct ShinkaiStringTime {} #[cfg(target_arch = "wasm32")] #[wasm_bindgen] -impl ShinkaiTime { +impl ShinkaiStringTime { #[wasm_bindgen(js_name = generateTimeNow)] pub fn generate_time_now() -> String { - shinkai_message_primitives::schemas::shinkai_time::ShinkaiTime::generate_time_now() + shinkai_message_primitives::schemas::shinkai_time::ShinkaiStringTime::generate_time_now() } #[wasm_bindgen(js_name = generateTimeInFutureWithSecs)] pub fn generate_time_in_future_with_secs(secs: i64) -> String { - shinkai_message_primitives::schemas::shinkai_time::ShinkaiTime::generate_time_in_future_with_secs(secs) + shinkai_message_primitives::schemas::shinkai_time::ShinkaiStringTime::generate_time_in_future_with_secs(secs) } #[wasm_bindgen(js_name = generateSpecificTime)] pub fn generate_specific_time(year: i32, month: u32, day: u32, hr: u32, min: u32, sec: u32) -> String { - shinkai_message_primitives::schemas::shinkai_time::ShinkaiTime::generate_specific_time(year, month, day, hr, min, sec) + shinkai_message_primitives::schemas::shinkai_time::ShinkaiStringTime::generate_specific_time( + year, month, day, hr, min, sec, + ) } } diff --git a/shinkai-libs/shinkai-vector-resources/Cargo.lock b/shinkai-libs/shinkai-vector-resources/Cargo.lock index d5e4b7602..3f5012d9c 100644 --- a/shinkai-libs/shinkai-vector-resources/Cargo.lock +++ b/shinkai-libs/shinkai-vector-resources/Cargo.lock @@ -200,6 +200,7 @@ dependencies = [ "iana-time-zone", "js-sys", "num-traits", + "serde", "wasm-bindgen", "windows-targets", ] diff --git a/shinkai-libs/shinkai-vector-resources/Cargo.toml b/shinkai-libs/shinkai-vector-resources/Cargo.toml index 0a46c9dbd..b29ccf428 100644 --- a/shinkai-libs/shinkai-vector-resources/Cargo.toml +++ b/shinkai-libs/shinkai-vector-resources/Cargo.toml @@ -21,7 +21,7 @@ keyphrases = "0.3.2" async-trait = "0.1.74" async-recursion = "1.0.5" scraper = "0.17.1" -chrono = "0.4" +chrono = { version = "0.4", features = ["serde"] } chrono-tz = "0.5" rand = "0.8.4" hex = "=0.4.3" diff --git a/shinkai-libs/shinkai-vector-resources/src/embeddings.rs b/shinkai-libs/shinkai-vector-resources/src/embeddings.rs index 70fb27df3..411a611f4 100644 --- a/shinkai-libs/shinkai-vector-resources/src/embeddings.rs +++ b/shinkai-libs/shinkai-vector-resources/src/embeddings.rs @@ -38,7 +38,7 @@ impl Embedding { println!(" Embeddings first 10: {:.02?}", &self.vector[0..10]); } - /// Calculate the cosine similarity between two embedding vectors + /// Calculate the cosine similarity between Self and the input Embedding pub fn cosine_similarity(&self, embedding2: &Embedding) -> f32 { let dot_product = self.dot(&self.vector, &embedding2.vector); let magnitude1 = self.magnitude(&self.vector); @@ -57,8 +57,8 @@ impl Embedding { v.iter().map(|&x| x * x).sum::().sqrt() } - /// Calculate the cosine similarity score between the query embedding - /// (self) and a list of embeddings, returning the num_of_results + /// Calculate the cosine similarity score between the self embedding + /// and a list of embeddings, returning the `num_of_results` /// most similar embeddings as a tuple of (score, embedding_id) pub fn score_similarities(&self, embeddings: &Vec, num_of_results: u64) -> Vec<(f32, String)> { let num_of_results = num_of_results as usize; @@ -68,18 +68,19 @@ impl Embedding { let scores: Vec<(NotNan, String)> = embeddings .iter() .filter_map(|embedding| { - let similarity = self.cosine_similarity(embedding); + let similarity = self.cosine_similarity(&embedding); match NotNan::new(similarity) { Ok(not_nan_similarity) => { // If the similarity is a negative, set it to 0 to ensure sorting works properly - let final_simliarity = if similarity < 0.0 { + let final_similarity = if similarity < 0.0 { NotNan::new(0.0).unwrap() // Safe unwrap } else { not_nan_similarity }; - return Some((final_simliarity, embedding.id.clone())); + return Some((final_similarity, embedding.id.clone())); } - Err(_) => None, // Skip this embedding if similarity is NaN + // If the similarity was Nan, set it to 0 to ensure sorting works properly + Err(_) => Some((NotNan::new(0.0).unwrap(), embedding.id.clone())), // Safe unwrap } }) .collect(); diff --git a/shinkai-libs/shinkai-vector-resources/src/lib.rs b/shinkai-libs/shinkai-vector-resources/src/lib.rs index 80bc20548..6c1a712a5 100644 --- a/shinkai-libs/shinkai-vector-resources/src/lib.rs +++ b/shinkai-libs/shinkai-vector-resources/src/lib.rs @@ -1,9 +1,6 @@ -pub mod base_vector_resources; pub mod data_tags; -pub mod document_resource; pub mod embedding_generator; pub mod embeddings; -pub mod map_resource; pub mod metadata_index; pub mod model_type; pub mod resource_errors; @@ -12,5 +9,3 @@ pub mod source; pub mod unstructured; pub mod utils; pub mod vector_resource; -pub mod vector_resource_types; -pub mod vector_search_traversal; diff --git a/shinkai-libs/shinkai-vector-resources/src/resource_errors.rs b/shinkai-libs/shinkai-vector-resources/src/resource_errors.rs index a70ce6b4b..e96a2d680 100644 --- a/shinkai-libs/shinkai-vector-resources/src/resource_errors.rs +++ b/shinkai-libs/shinkai-vector-resources/src/resource_errors.rs @@ -27,6 +27,11 @@ pub enum VRError { MissingKey(String), InvalidPathString(String), ResourceDoesNotSupportOrderedOperations(String), + InvalidNodeType(String), + InvalidMerkleHashString(String), + MerkleRootNotFound(String), + MerkleHashNotFoundInNode(String), + VectorResourceIsNotMerkelized(String), } impl fmt::Display for VRError { @@ -67,7 +72,13 @@ impl fmt::Display for VRError { VRError::LockAcquisitionFailed(ref s) => write!(f, "Failed to acquire lock for: {}", s), VRError::MissingKey(ref s) => write!(f, "Missing key not found in hashmap: {}", s), VRError::InvalidPathString(ref s) => write!(f, "String is not formatted as a proper path string: {}", s), - VRError::ResourceDoesNotSupportOrderedOperations( ref s) => write!(f, "Attempted to perform ordered operations on a resource that does not implement OrderedVectorResource: {}", s) + VRError::ResourceDoesNotSupportOrderedOperations(ref s) => write!(f, "Attempted to perform ordered operations on a resource that does not implement OrderedVectorResource: {}", s), + VRError::InvalidNodeType(ref s) => write!(f, "Unexpected/unsupported NodeContent type for Node with id: {}", s), + VRError::InvalidMerkleHashString(ref s) => write!(f, "The provided merkle hash String is not a validly encoded Blake3 hash: {}", s), + VRError::MerkleRootNotFound(ref s) => write!(f, "The Vector Resource does not contain a merkle root: {}", s), + VRError::MerkleHashNotFoundInNode(ref s) => write!(f, "The Node does not contain a merkle root: {}", s), + VRError::VectorResourceIsNotMerkelized(ref s) => write!(f, "The Vector Resource is not merkelized, and thus cannot perform merkel-related functionality: {}", s), + } } } diff --git a/shinkai-libs/shinkai-vector-resources/src/shinkai_time.rs b/shinkai-libs/shinkai-vector-resources/src/shinkai_time.rs index 801ed693d..50cd978b3 100644 --- a/shinkai-libs/shinkai-vector-resources/src/shinkai_time.rs +++ b/shinkai-libs/shinkai-vector-resources/src/shinkai_time.rs @@ -1,7 +1,40 @@ use chrono::{DateTime, Utc}; + +/// Struct for generating RFC3339 datetimes as DateTime pub struct ShinkaiTime {} impl ShinkaiTime { + /// Generates the current Datetime + pub fn generate_time_now() -> DateTime { + Utc::now() + } + + /// Generates a Datetime in the future based on number of seconds + pub fn generate_time_in_future_with_secs(secs: i64) -> DateTime { + Utc::now() + chrono::Duration::seconds(secs) + } + + /// Generates a Datetime at a specific moment in time + pub fn generate_specific_time(year: i32, month: u32, day: u32, hr: u32, min: u32, sec: u32) -> DateTime { + let naive_datetime = chrono::NaiveDateTime::new( + chrono::NaiveDate::from_ymd(year, month, day), + chrono::NaiveTime::from_hms(hr, min, sec), + ); + + DateTime::from_utc(naive_datetime, Utc) + } + + /// Attempts to parse a RFC3339 datetime String + pub fn from_rfc3339_string(datetime_str: &str) -> Result, chrono::ParseError> { + DateTime::parse_from_rfc3339(datetime_str).map(|dt| dt.with_timezone(&Utc)) + } +} + +/// Struct with methods for generating RFC3339 datetimes formatted as Strings +pub struct ShinkaiStringTime {} + +impl ShinkaiStringTime { + /// Generates the current datetime as a RFC339 encoded String pub fn generate_time_now() -> String { let timestamp = Utc::now().format("%Y-%m-%dT%H:%M:%S.%f").to_string(); let scheduled_time = format!("{}Z", ×tamp[..23]); @@ -16,6 +49,7 @@ impl ShinkaiTime { } } + /// Generates a datetime String in the future based on number of seconds pub fn generate_time_in_future_with_secs(secs: i64) -> String { let timestamp = (Utc::now() + chrono::Duration::seconds(secs)) .format("%Y-%m-%dT%H:%M:%S.%f") @@ -24,6 +58,7 @@ impl ShinkaiTime { scheduled_time } + /// Generates a datetime String at a specific moment in time pub fn generate_specific_time(year: i32, month: u32, day: u32, hr: u32, min: u32, sec: u32) -> String { let naive_datetime = chrono::NaiveDateTime::new( chrono::NaiveDate::from_ymd(year, month, day), diff --git a/shinkai-libs/shinkai-vector-resources/src/source/mod.rs b/shinkai-libs/shinkai-vector-resources/src/source/mod.rs new file mode 100644 index 000000000..ce4c1cf27 --- /dev/null +++ b/shinkai-libs/shinkai-vector-resources/src/source/mod.rs @@ -0,0 +1,7 @@ +pub mod notary_source; +pub mod source; +pub mod source_file_map; + +pub use notary_source::*; +pub use source::*; +pub use source_file_map::*; diff --git a/shinkai-libs/shinkai-vector-resources/src/source/notary_source.rs b/shinkai-libs/shinkai-vector-resources/src/source/notary_source.rs new file mode 100644 index 000000000..9835ec775 --- /dev/null +++ b/shinkai-libs/shinkai-vector-resources/src/source/notary_source.rs @@ -0,0 +1,112 @@ +use crate::resource_errors::VRError; +use crate::source::TextChunkingStrategy; +use crate::unstructured::unstructured_parser::UnstructuredParser; +use crate::vector_resource::{DocumentFileType, SourceFileType, VRPath}; +use chrono::{DateTime, Utc}; +use regex::Regex; +use serde::{Deserialize, Serialize}; +use std::fmt; +use std::str::FromStr; + +/// Struct which holds the contents of the TLSNotary proof for the source file +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +pub struct TLSNotaryProof {} + +impl TLSNotaryProof { + pub fn new() -> Self { + TLSNotaryProof {} + } +} + +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +/// The source file that data was extracted from to create a VectorResource +pub struct TLSNotarizedSourceFile { + pub file_name: String, + pub file_type: SourceFileType, + pub file_content: Vec, + // Creation/publication time of the original content which is inside this struct + pub original_creation_datetime: Option>, + pub proof: TLSNotaryProof, +} + +impl TLSNotarizedSourceFile { + /// Returns the size of the file content in bytes + pub fn size(&self) -> usize { + self.file_content.len() + } + + /// Creates a new instance of SourceFile struct + pub fn new( + file_name: String, + file_type: SourceFileType, + file_content: Vec, + original_creation_datetime: Option>, + proof: TLSNotaryProof, + ) -> Self { + Self { + file_name, + file_type, + file_content, + original_creation_datetime, + proof, + } + } + + pub fn format_source_string(&self) -> String { + format!("{}.{}", self.file_name, self.file_type) + } + + /// Serializes the SourceFile to a JSON string + pub fn to_json(&self) -> Result { + Ok(serde_json::to_string(self)?) + } + + /// Deserializes a SourceFile from a JSON string + pub fn from_json(json: &str) -> Result { + Ok(serde_json::from_str(json)?) + } +} + +/// Type that acts as a reference to a notarized source file +/// (meaning one that has some cryptographic proof/signature of origin) +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +pub enum NotarizedSourceReference { + /// Reference to TLSNotary notarized web content + TLSNotarized(TLSNotarizedReference), +} + +impl NotarizedSourceReference { + pub fn format_source_string(&self) -> String { + match self { + NotarizedSourceReference::TLSNotarized(reference) => reference.format_source_string(), + } + } +} + +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +pub struct TLSNotarizedReference { + pub file_name: String, + pub file_type: SourceFileType, + pub text_chunking_strategy: TextChunkingStrategy, +} + +impl TLSNotarizedReference { + pub fn format_source_string(&self) -> String { + format!("{}.{}", self.file_name, self.file_type()) + } + + pub fn file_type(&self) -> SourceFileType { + self.file_type.clone() + } +} + +impl fmt::Display for TLSNotarizedReference { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + write!( + f, + "TLS Notarized File Name: {}, File Type: {}", + self.file_name, + self.file_type() + ) + } +} diff --git a/shinkai-libs/shinkai-vector-resources/src/source.rs b/shinkai-libs/shinkai-vector-resources/src/source/source.rs similarity index 75% rename from shinkai-libs/shinkai-vector-resources/src/source.rs rename to shinkai-libs/shinkai-vector-resources/src/source/source.rs index e0865568d..243adb004 100644 --- a/shinkai-libs/shinkai-vector-resources/src/source.rs +++ b/shinkai-libs/shinkai-vector-resources/src/source/source.rs @@ -1,19 +1,23 @@ use crate::resource_errors::VRError; +use crate::source::notary_source::{ + NotarizedSourceReference, TLSNotarizedReference, TLSNotarizedSourceFile, TLSNotaryProof, +}; use crate::unstructured::unstructured_parser::UnstructuredParser; use crate::vector_resource::VRPath; +use chrono::{DateTime, Utc}; use regex::Regex; +use reqwest::header::ORIGIN; use serde::{Deserialize, Serialize}; use std::fmt; use std::str::FromStr; -/// The location that a Vector Resource is held at. This is used -/// in VRHeader for clarity of where the actual resource is stored -/// so it can be fetched (or potentially updated) as needed +/// What text chunking strategy was used to create this VR from the source file. +/// This is required for performing content validation/that it matches the VR nodes. +/// TODO: Think about how to make this more explicit/specific and future support #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] -pub enum VRLocation { - LocalVectorFS(VRPath), - // RemoteVectorFS(ShinkaiIdentity, VRPath), - RemoteURI(String), +pub enum TextChunkingStrategy { + /// The default text chunking strategy implemented in VR lib using Unstructured. + V1, } /// The source of a Vector Resource as either the file contents of the source file itself, @@ -21,6 +25,7 @@ pub enum VRLocation { #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] pub enum VRSource { Reference(SourceReference), + Notarized(NotarizedSourceReference), None, } @@ -29,27 +34,31 @@ impl VRSource { pub fn format_source_string(&self) -> String { match self { VRSource::Reference(reference) => reference.format_source_string(), + VRSource::Notarized(notarized_reference) => notarized_reference.format_source_string(), VRSource::None => String::from("None"), } } /// Creates a VRSource from an external URI or URL - pub fn new_uri_ref(uri: &str) -> Self { - Self::Reference(SourceReference::new_external_uri(uri.to_string())) + pub fn new_uri_ref(uri: &str, original_creation_datetime: Option>) -> Self { + Self::Reference(SourceReference::new_external_uri( + uri.to_string(), + original_creation_datetime, + )) } /// Creates a VRSource reference to an original source file pub fn new_source_file_ref( file_name: String, file_type: SourceFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { VRSource::Reference(SourceReference::FileRef(SourceFileReference { file_name, file_type, - file_location, - content_hash, + original_creation_datetime, + text_chunking_strategy, })) } @@ -65,62 +74,135 @@ impl VRSource { /// Serializes the VRSource to a JSON string pub fn to_json(&self) -> Result { - serde_json::to_string(self).map_err(|_| VRError::FailedJSONParsing) + Ok(serde_json::to_string(self)?) } /// Deserializes a VRSource from a JSON string pub fn from_json(json: &str) -> Result { - serde_json::from_str(json).map_err(|_| VRError::FailedJSONParsing) + Ok(serde_json::from_str(json)?) } /// Creates a VRSource using file_name/content to auto-detect and create an instance of Self. /// Errors if can not detect matching extension in file_name. - pub fn from_file(file_name: &str, file_buffer: &Vec) -> Result { + pub fn from_file( + file_name: &str, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, + ) -> Result { let re = Regex::new(r"\.[^.]+$").unwrap(); let file_name_without_extension = re.replace(file_name, ""); - let content_hash = UnstructuredParser::generate_data_hash(file_buffer); // Attempt to auto-detect, else use file extension let file_type = SourceFileType::detect_file_type(file_name)?; if file_name.starts_with("http") { - Ok(VRSource::new_uri_ref(&file_name_without_extension)) + Ok(VRSource::new_uri_ref( + &file_name_without_extension, + original_creation_datetime, + )) } else { let file_name_without_extension = file_name_without_extension.trim_start_matches("file://"); Ok(VRSource::new_source_file_ref( file_name_without_extension.to_string(), file_type, - content_hash, - None, + original_creation_datetime, + text_chunking_strategy, )) } } } +/// Struct which holds the data of a source file which a VR was generated from +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +pub enum SourceFile { + Standard(StandardSourceFile), + TLSNotarized(TLSNotarizedSourceFile), +} + +impl SourceFile { + pub fn new_standard_source_file( + file_name: String, + file_type: SourceFileType, + file_content: Vec, + original_creation_datetime: Option>, + ) -> Self { + Self::Standard(StandardSourceFile { + file_name, + file_type, + file_content, + original_creation_datetime, + }) + } + + pub fn new_tls_notarized_source_file( + file_name: String, + file_type: SourceFileType, + file_content: Vec, + original_creation_datetime: Option>, + proof: TLSNotaryProof, + ) -> Self { + Self::TLSNotarized(TLSNotarizedSourceFile { + file_name, + file_type, + file_content, + original_creation_datetime, + proof, + }) + } + + /// Serializes the SourceFile to a JSON string + pub fn to_json(&self) -> Result { + serde_json::to_string(self) + } + + /// Deserializes a SourceFile from a JSON string + pub fn from_json(json: &str) -> Result { + serde_json::from_str(json) + } +} + #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] -/// The source file that data was extracted from to create a VectorResource -pub struct SourceFile { +/// A standard source file that data was extracted from to create a VectorResource. +pub struct StandardSourceFile { pub file_name: String, pub file_type: SourceFileType, pub file_content: Vec, + // Creation/publication time of the original content which is inside this struct + pub original_creation_datetime: Option>, } -impl SourceFile { +impl StandardSourceFile { /// Returns the size of the file content in bytes pub fn size(&self) -> usize { self.file_content.len() } /// Creates a new instance of SourceFile struct - pub fn new(file_name: String, file_type: SourceFileType, file_content: Vec) -> Self { + pub fn new( + file_name: String, + file_type: SourceFileType, + file_content: Vec, + original_creation_datetime: Option>, + ) -> Self { Self { file_name, file_type, file_content, + original_creation_datetime, } } pub fn format_source_string(&self) -> String { format!("{}.{}", self.file_name, self.file_type) } + + /// Serializes the SourceFile to a JSON string + pub fn to_json(&self) -> Result { + Ok(serde_json::to_string(self)?) + } + + /// Deserializes a SourceFile from a JSON string + pub fn from_json(json: &str) -> Result { + Ok(serde_json::from_str(json)?) + } } #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] @@ -128,16 +210,25 @@ impl SourceFile { pub enum SourceReference { /// A typed specific file FileRef(SourceFileReference), - /// An untyped arbitrary external URI - ExternalURI(String), + /// An arbitrary external URI + ExternalURI(ExternalURIReference), Other(String), } +/// Struct that represents an external URI like a website URL which +/// has not been downloaded into a SourceFile, but is just referenced. +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +pub struct ExternalURIReference { + pub uri: String, + // Creation/publication time of the original content which is specified at the uri + pub original_creation_datetime: Option>, +} + impl SourceReference { pub fn format_source_string(&self) -> String { match self { SourceReference::FileRef(reference) => reference.format_source_string(), - SourceReference::ExternalURI(uri) => uri.clone(), + SourceReference::ExternalURI(uri) => uri.uri.clone(), SourceReference::Other(s) => s.clone(), } } @@ -147,15 +238,15 @@ impl SourceReference { /// Errors if extension is not found or not implemented yet. pub fn new_file_reference_auto_detect( file_name: String, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Result { let file_type = SourceFileType::detect_file_type(&file_name)?; Ok(SourceReference::FileRef(SourceFileReference { file_name, file_type, - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, })) } @@ -163,14 +254,14 @@ impl SourceReference { pub fn new_file_image_reference( file_name: String, image_type: ImageFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { SourceReference::FileRef(SourceFileReference { file_name, file_type: SourceFileType::Image(image_type), - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, }) } @@ -178,14 +269,14 @@ impl SourceReference { pub fn new_file_doc_reference( file_name: String, doc_type: DocumentFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { SourceReference::FileRef(SourceFileReference { file_name, file_type: SourceFileType::Document(doc_type), - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, }) } @@ -193,14 +284,14 @@ impl SourceReference { pub fn new_file_code_reference( file_name: String, code_type: CodeFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { SourceReference::FileRef(SourceFileReference { file_name, file_type: SourceFileType::Code(code_type), - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, }) } @@ -208,14 +299,14 @@ impl SourceReference { pub fn new_file_config_reference( file_name: String, config_type: ConfigFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { SourceReference::FileRef(SourceFileReference { file_name, file_type: SourceFileType::ConfigFileType(config_type), - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, }) } @@ -223,14 +314,14 @@ impl SourceReference { pub fn new_file_video_reference( file_name: String, video_type: VideoFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { SourceReference::FileRef(SourceFileReference { file_name, file_type: SourceFileType::Video(video_type), - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, }) } @@ -238,14 +329,14 @@ impl SourceReference { pub fn new_file_audio_reference( file_name: String, audio_type: AudioFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { SourceReference::FileRef(SourceFileReference { file_name, file_type: SourceFileType::Audio(audio_type), - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, }) } @@ -253,20 +344,23 @@ impl SourceReference { pub fn new_file_shinkai_reference( file_name: String, shinkai_type: ShinkaiFileType, - content_hash: String, - file_location: Option, + original_creation_datetime: Option>, + text_chunking_strategy: TextChunkingStrategy, ) -> Self { SourceReference::FileRef(SourceFileReference { file_name, file_type: SourceFileType::Shinkai(shinkai_type), - content_hash, - file_location, + original_creation_datetime, + text_chunking_strategy, }) } /// Creates a new SourceReference for an external URI - pub fn new_external_uri(uri: String) -> Self { - SourceReference::ExternalURI(uri) + pub fn new_external_uri(uri: String, original_creation_datetime: Option>) -> Self { + SourceReference::ExternalURI(ExternalURIReference { + uri, + original_creation_datetime, + }) } /// Creates a new SourceReference for custom use cases @@ -279,7 +373,14 @@ impl fmt::Display for SourceReference { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { SourceReference::FileRef(reference) => write!(f, "{}", reference), - SourceReference::ExternalURI(uri) => write!(f, "{}", uri), + SourceReference::ExternalURI(uri) => { + write!( + f, + "{} - {:?}", + uri.uri, + uri.original_creation_datetime.map(|dt| dt.to_rfc3339()) + ) + } SourceReference::Other(s) => write!(f, "{}", s), } } @@ -289,17 +390,12 @@ impl fmt::Display for SourceReference { pub struct SourceFileReference { pub file_name: String, pub file_type: SourceFileType, - /// Local path or external URI to file - pub file_location: Option, - pub content_hash: String, + // Creation/publication time of the original content that this VR was created from + pub original_creation_datetime: Option>, + pub text_chunking_strategy: TextChunkingStrategy, } impl SourceFileReference { - /// The default key for this file in the Shinkai DB - pub fn shinkai_db_key(&self) -> String { - format!("{}:::{}", self.file_name, self.content_hash) - } - pub fn format_source_string(&self) -> String { format!("{}.{}", self.file_name, self.file_type) } @@ -309,11 +405,8 @@ impl fmt::Display for SourceFileReference { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!( f, - "File Name: {}, File Type: {}, File Location: {}, Content Hash: {}", - self.file_name, - self.file_type, - self.file_location.as_deref().unwrap_or("None"), - self.content_hash + "File Name: {}, File Type: {}, Original Creation Datetime: {:?}", + self.file_name, self.file_type, self.original_creation_datetime ) } } @@ -353,6 +446,13 @@ impl SourceFileType { return Err(VRError::CouldNotDetectFileType(file_name.to_string())); } + + /// Clones and cleans the input string of its file extension at the end, if it exists. + pub fn clean_string_of_extension(file_name: &str) -> String { + let re = Regex::new(r"\.[^.]+$").unwrap(); + let file_name_without_extension = re.replace(file_name, ""); + file_name_without_extension.to_string() + } } impl fmt::Display for SourceFileType { diff --git a/shinkai-libs/shinkai-vector-resources/src/source/source_file_map.rs b/shinkai-libs/shinkai-vector-resources/src/source/source_file_map.rs new file mode 100644 index 000000000..e2b5a47c4 --- /dev/null +++ b/shinkai-libs/shinkai-vector-resources/src/source/source_file_map.rs @@ -0,0 +1,63 @@ +use super::SourceFile; +use crate::{resource_errors::VRError, vector_resource::VRPath}; +use serde::{Deserialize, Serialize}; +use std::collections::HashMap; + +/// A map which stores SourceFiles based on VRPaths within a VectorResource. +/// A SourceFile at root represents the single source file for the whole VR. +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +pub struct SourceFileMap { + pub map: HashMap, + pub source_files_count: u64, +} + +impl SourceFileMap { + /// Creates a new SourceFileMap using the given HashMap and automatically counts the number of entries. + pub fn new(map: HashMap) -> Self { + let source_files_count = map.len() as u64; + SourceFileMap { + map, + source_files_count, + } + } + + /// Returns the size of the whole SourceFileMap after being encoded as JSON. + pub fn encoded_size(&self) -> Result { + let json = self.to_json()?; + Ok(json.as_bytes().len()) + } + + /// Checks if the map contains only a single root SourceFile. + pub fn contains_only_single_root_sourcefile(&self) -> bool { + self.source_files_count == 1 && self.map.contains_key(&VRPath::root()) + } + + /// Returns the source file at the given VRPath if it exists. + pub fn get_source_file(&self, vr_path: VRPath) -> Option<&SourceFile> { + self.map.get(&vr_path) + } + + /// Adds a source file to the map and increases the count. + /// Overwrites any existing SourceFile which already is stored at the same VRPath. + pub fn add_source_file(&mut self, path: VRPath, source_file: SourceFile) { + self.map.insert(path, source_file); + self.source_files_count += 1; + } + + /// Removes a source file from the map and decreases the count. + pub fn remove_source_file(&mut self, path: VRPath) -> Option { + let res = self.map.remove(&path); + self.source_files_count -= 1; + res + } + + /// Converts the SourceFileMap into a JSON string. + pub fn to_json(&self) -> Result { + serde_json::to_string(&self) + } + + /// Creates a SourceFileMap from a JSON string. + pub fn from_json(json: &str) -> Result { + serde_json::from_str(json) + } +} diff --git a/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_api.rs b/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_api.rs index d80fa21f1..c3ab2be28 100644 --- a/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_api.rs +++ b/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_api.rs @@ -1,9 +1,9 @@ use super::{unstructured_parser::UnstructuredParser, unstructured_types::UnstructuredElement}; -use crate::base_vector_resources::BaseVectorResource; -use crate::data_tags::DataTag; use crate::embedding_generator::EmbeddingGenerator; use crate::resource_errors::VRError; use crate::source::VRSource; +use crate::vector_resource::SourceFileType; +use crate::{data_tags::DataTag, vector_resource::BaseVectorResource}; #[cfg(feature = "native-http")] use reqwest::{blocking::multipart as blocking_multipart, multipart}; #[cfg(feature = "native-http")] @@ -41,53 +41,57 @@ impl UnstructuredAPI { /// Makes a blocking request to process a file in a buffer to Unstructured server, /// and then processing the returned results into a BaseVectorResource - /// Note: Requires name to include the extension ie. `*.pdf` + /// Note: Requires file_name to include the extension ie. `*.pdf` pub fn process_file_blocking( &self, file_buffer: Vec, generator: &dyn EmbeddingGenerator, - name: String, + file_name: String, desc: Option, source: VRSource, parsing_tags: &Vec, max_chunk_size: u64, ) -> Result { - // Parse pdf into groups of lines + a resource_id from the hash of the data - let resource_id = UnstructuredParser::generate_data_hash(&file_buffer); - let elements = self.file_request_blocking(file_buffer, &name)?; + // Parse pdf into groups of elements + let elements = self.file_request_blocking(file_buffer, &file_name)?; + + // Cleans out the file extension from the file_name + let cleaned_name = SourceFileType::clean_string_of_extension(&file_name); UnstructuredParser::process_elements_into_resource_blocking( elements, generator, - name, + cleaned_name, desc, source, parsing_tags, - resource_id, max_chunk_size, ) } /// Makes an async request to process a file in a buffer to Unstructured server, /// and then processing the returned results into a BaseVectorResource - /// Note: Requires name to include the extension ie. `*.pdf` + /// Note: Requires file_name to include the extension ie. `*.pdf` pub async fn process_file( &self, file_buffer: Vec, generator: &dyn EmbeddingGenerator, - name: String, + file_name: String, desc: Option, source: VRSource, parsing_tags: &Vec, max_chunk_size: u64, ) -> Result { - // Parse pdf into groups of lines + a resource_id from the hash of the data - let elements = self.file_request(file_buffer, &name).await?; + // Parse pdf into groups of elements + let elements = self.file_request(file_buffer, &file_name).await?; + + // Cleans out the file extension from the file_name + let cleaned_name = SourceFileType::clean_string_of_extension(&file_name); UnstructuredParser::process_elements_into_resource( elements, generator, - name, + cleaned_name, desc, source, parsing_tags, diff --git a/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_parser.rs b/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_parser.rs index 197cce5e8..ec6af8238 100644 --- a/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_parser.rs +++ b/shinkai-libs/shinkai-vector-resources/src/unstructured/unstructured_parser.rs @@ -1,13 +1,11 @@ use super::unstructured_types::{GroupedText, UnstructuredElement}; -use crate::base_vector_resources::BaseVectorResource; use crate::data_tags::DataTag; -use crate::document_resource::DocumentVectorResource; use crate::embedding_generator::EmbeddingGenerator; use crate::embeddings::Embedding; use crate::embeddings::MAX_EMBEDDING_STRING_SIZE; use crate::resource_errors::VRError; use crate::source::VRSource; -use crate::vector_resource::VectorResource; +use crate::vector_resource::{BaseVectorResource, DocumentVectorResource, VectorResource, VectorResourceCore}; #[cfg(feature = "native-http")] use async_recursion::async_recursion; use blake3::Hasher; @@ -70,7 +68,6 @@ impl UnstructuredParser { desc: Option, source: VRSource, parsing_tags: &Vec, - resource_id: String, max_chunk_size: u64, ) -> Result { Self::process_elements_into_resource_blocking_with_custom_collection( @@ -80,7 +77,6 @@ impl UnstructuredParser { desc, source, parsing_tags, - resource_id, max_chunk_size, Self::collect_texts_and_indices, ) @@ -123,7 +119,6 @@ impl UnstructuredParser { desc: Option, source: VRSource, parsing_tags: &Vec, - resource_id: String, max_chunk_size: u64, collect_texts_and_indices: fn(&[GroupedText], &mut Vec, &mut Vec<(Vec, usize)>, u64, Vec), ) -> Result { @@ -140,16 +135,7 @@ impl UnstructuredParser { collect_texts_and_indices, )?; - Self::process_new_doc_resource_blocking( - new_text_groups, - &*generator, - &name, - desc, - source, - parsing_tags, - &resource_id, - None, - ) + Self::process_new_doc_resource_blocking(new_text_groups, &*generator, &name, desc, source, parsing_tags, None) } #[async_recursion] @@ -165,7 +151,7 @@ impl UnstructuredParser { resource_embedding: Option, ) -> Result { let resource_desc = Self::setup_resource_description(desc, &text_groups); - let mut doc = DocumentVectorResource::new_empty(name, resource_desc.as_deref(), source.clone()); + let mut doc = DocumentVectorResource::new_empty(name, resource_desc.as_deref(), source.clone(), true); doc.set_embedding_model_used(generator.model_type()); // Sets a Resource Embedding if none provided. Primarily only used at the root level as the rest should already have them. @@ -222,11 +208,10 @@ impl UnstructuredParser { desc: Option, source: VRSource, parsing_tags: &Vec, - resource_id: &str, resource_embedding: Option, ) -> Result { let resource_desc = Self::setup_resource_description(desc, &text_groups); - let mut doc = DocumentVectorResource::new_empty(name, resource_desc.as_deref(), source.clone()); + let mut doc = DocumentVectorResource::new_empty(name, resource_desc.as_deref(), source.clone(), true); doc.set_embedding_model_used(generator.model_type()); // Sets a Resource Embedding if none provided. Primarily only used at the root level as the rest should already have them. @@ -249,7 +234,6 @@ impl UnstructuredParser { None, source.clone(), parsing_tags, - &new_resource_id, grouped_text.embedding.clone(), )?; doc.append_vector_resource_node_auto(new_doc, metadata); diff --git a/shinkai-libs/shinkai-vector-resources/src/vector_resource.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource.rs deleted file mode 100644 index 718649364..000000000 --- a/shinkai-libs/shinkai-vector-resources/src/vector_resource.rs +++ /dev/null @@ -1,1017 +0,0 @@ -use crate::base_vector_resources::VRBaseType; -use crate::data_tags::DataTagIndex; -#[cfg(feature = "native-http")] -use crate::embedding_generator::EmbeddingGenerator; -#[cfg(feature = "native-http")] -use crate::embedding_generator::RemoteEmbeddingGenerator; -use crate::embeddings::Embedding; -use crate::embeddings::MAX_EMBEDDING_STRING_SIZE; -use crate::metadata_index::MetadataIndex; -use crate::model_type::EmbeddingModelType; -use crate::resource_errors::VRError; -use crate::shinkai_time::ShinkaiTime; -pub use crate::source::VRLocation; -pub use crate::source::VRSource; -use crate::utils::{hash_string, random_string}; -pub use crate::vector_resource_types::*; -pub use crate::vector_search_traversal::*; -use async_trait::async_trait; -use std::any::Any; -use std::collections::HashMap; - -/// Trait extension which specific Vector Resource types implement that have a guaranteed internal ordering -/// of their nodes, such as DocumentVectorResources. This trait extension enables new -/// capabilities to be implemented, such as append/pop node interfaces, proximity searches, and more. -pub trait OrderedVectorResource: VectorResource { - /// Id of the last node held internally - fn last_node_id(&self) -> String; - /// Id to be used when pushing a new node - fn new_push_node_id(&self) -> String; - /// Attempts to fetch a node (using the provided id) and proximity_window before/after, at root depth - fn get_node_and_proximity(&self, id: String, proximity_window: u64) -> Result, VRError>; -} - -/// Represents a VectorResource as an abstract trait that anyone can implement new variants of. -/// Of note, when working with multiple VectorResources, the `name` field can have duplicates, -/// but `resource_id` is expected to be unique. -#[async_trait] -pub trait VectorResource: Send + Sync { - fn name(&self) -> &str; - fn description(&self) -> Option<&str>; - fn source(&self) -> VRSource; - fn resource_id(&self) -> &str; - fn set_resource_id(&mut self, id: String); - fn resource_embedding(&self) -> &Embedding; - fn set_resource_embedding(&mut self, embedding: Embedding); - fn resource_base_type(&self) -> VRBaseType; - fn embedding_model_used(&self) -> EmbeddingModelType; - fn set_embedding_model_used(&mut self, model_type: EmbeddingModelType); - fn data_tag_index(&self) -> &DataTagIndex; - fn metadata_index(&self) -> &MetadataIndex; - /// Retrieves an Embedding given its id, at the root level depth. - fn get_embedding(&self, id: String) -> Result; - /// Retrieves all Embeddings at the root level depth of the Vector Resource. - fn get_embeddings(&self) -> Vec; - /// Retrieves a copy of a Node given its id, at the root level depth. - fn get_node(&self, id: String) -> Result; - /// Retrieves copies of all Nodes at the root level of the Vector Resource - fn get_nodes(&self) -> Vec; - /// Insert a Node/Embedding into the VR using the provided id (root level depth). Overwrites existing data. - fn insert_node(&mut self, id: String, node: Node, embedding: Embedding) -> Result<(), VRError>; - /// Replace a Node/Embedding in the VR using the provided id (root level depth) - fn replace_node(&mut self, id: String, node: Node, embedding: Embedding) -> Result<(Node, Embedding), VRError>; - /// Remove a Node/Embedding in the VR using the provided id (root level depth) - fn remove_node(&mut self, id: String) -> Result<(Node, Embedding), VRError>; - /// ISO RFC3339 when then Vector Resource was created - fn created_datetime(&self) -> String; - /// ISO RFC3339 when then Vector Resource was last modified - fn last_modified_datetime(&self) -> String; - /// Set a RFC3339 Datetime of when then Vector Resource was last modified - fn set_last_modified_datetime(&mut self, datetime: String) -> Result<(), VRError>; - // Note we cannot add from_json in the trait due to trait object limitations - fn to_json(&self) -> Result; - // Convert the VectorResource into a &dyn Any - fn as_any(&self) -> &dyn Any; - // Convert the VectorResource into a &dyn Any - fn as_any_mut(&mut self) -> &mut dyn Any; - //// Attempts to cast the VectorResource into an OrderedVectorResource. Fails if - /// the struct does not support the OrderedVectorResource trait. - fn as_ordered_vector_resource(&self) -> Result<&dyn OrderedVectorResource, VRError>; - /// Attempts to cast the VectorResource into an mut OrderedVectorResource. Fails if - /// the struct does not support the OrderedVectorResource trait. - fn as_ordered_vector_resource_mut(&mut self) -> Result<&mut dyn OrderedVectorResource, VRError>; - - #[cfg(feature = "native-http")] - /// Regenerates and updates the resource's embedding using the name/description/source - /// and the provided keywords. - async fn update_resource_embedding( - &mut self, - generator: &dyn EmbeddingGenerator, - keywords: Vec, - ) -> Result<(), VRError> { - let formatted = self.format_embedding_string(keywords); - let new_embedding = generator - .generate_embedding_shorten_input(&formatted, "RE", MAX_EMBEDDING_STRING_SIZE as u64) - .await?; - self.set_resource_embedding(new_embedding); - Ok(()) - } - - #[cfg(feature = "native-http")] - /// Regenerates and updates the resource's embedding using the name/description/source - /// and the provided keywords. - fn update_resource_embedding_blocking( - &mut self, - generator: &dyn EmbeddingGenerator, - keywords: Vec, - ) -> Result<(), VRError> { - let formatted = self.format_embedding_string(keywords); - let new_embedding = generator.generate_embedding_blocking(&formatted, "RE")?; - self.set_resource_embedding(new_embedding); - Ok(()) - } - - /// Updates the last_modified_datetime to the current time - fn update_last_modified_to_now(&mut self) { - let current_time = ShinkaiTime::generate_time_now(); - self.set_last_modified_datetime(current_time).unwrap(); - } - - /// Generates a random new id string and sets it as the resource_id. - /// Used in the VectorFS to guarantee each VR stored has a unique id. - fn generate_and_update_resource_id(&mut self) { - let mut data_string = ShinkaiTime::generate_time_now(); - data_string = data_string + self.resource_id() + self.name() + &random_string(); - let hashed_string = hash_string(&data_string); - self.set_resource_id(hashed_string) - } - - #[cfg(feature = "native-http")] - /// Initializes a `RemoteEmbeddingGenerator` that is compatible with this VectorResource - /// (targets the same model and interface for embedding generation). Of note, you need - /// to make sure the api_url/api_key match for the model used. - fn initialize_compatible_embeddings_generator( - &self, - api_url: &str, - api_key: Option, - ) -> RemoteEmbeddingGenerator { - RemoteEmbeddingGenerator::new(self.embedding_model_used(), api_url, api_key) - } - - /// Generates a formatted string that represents the text to be used for - /// generating the resource embedding. - fn format_embedding_string(&self, keywords: Vec) -> String { - let name = format!("Name: {}", self.name()); - let desc = self - .description() - .map(|description| format!(", Description: {}", description)) - .unwrap_or_default(); - let source_string = format!("Source: {}", self.source().format_source_string()); - - // Take keywords until we hit an upper 500 character cap to ensure - // we do not go past the embedding LLM context window. - let pre_keyword_length = name.len() + desc.len() + source_string.len(); - let mut keyword_string = String::new(); - for phrase in keywords { - if pre_keyword_length + keyword_string.len() + phrase.len() <= MAX_EMBEDDING_STRING_SIZE { - keyword_string = format!("{}, {}", keyword_string, phrase); - } - } - - let mut result = format!("{}{}{}, Keywords: [{}]", name, source_string, desc, keyword_string); - if result.len() > MAX_EMBEDDING_STRING_SIZE { - result.truncate(MAX_EMBEDDING_STRING_SIZE); - } - result - } - - /// Returns a "reference string" that uniquely identifies the VectorResource (formatted as: `{name}:::{resource_id}`). - /// This is also used as the unique identifier of the Vector Resource in the VectorFS. - fn reference_string(&self) -> String { - VRHeader::generate_resource_reference_string(self.name().to_string(), self.resource_id().to_string()) - } - - /// Generates a VRHeader out of the VectorResource. - /// Allows specifying a resource_location to identify where the VectorResource is - /// being stored. - fn generate_resource_header(&self, resource_location: Option) -> VRHeader { - // Fetch list of data tag names from the index - let tag_names = self.data_tag_index().data_tag_names(); - let embedding = self.resource_embedding().clone(); - let metadata_index_keys = self.metadata_index().get_all_metadata_keys(); - - VRHeader::new( - self.name(), - self.resource_id(), - self.resource_base_type(), - Some(embedding), - tag_names, - self.source(), - self.created_datetime(), - self.last_modified_datetime(), - resource_location, - metadata_index_keys, - self.embedding_model_used(), - ) - } - - /// Validates whether the VectorResource has a valid BaseVectorResourceType by checking its .resource_base_type() - fn is_base_vector_resource(&self) -> Result<(), VRError> { - VRBaseType::is_base_vector_resource(self.resource_base_type()) - } - - /// Returns every single node at any level in the whole Vector Resource, including sub Vector Resources - /// and the Nodes they hold. If a starting_path is provided then fetches all nodes from there, - /// else starts at root. If resources_only is true, only Vector Resources are returned. - fn get_nodes_exhaustive(&self, starting_path: Option, resources_only: bool) -> Vec { - let empty_embedding = Embedding::new("", vec![]); - let mut nodes = self.vector_search_customized( - empty_embedding, - 0, - TraversalMethod::UnscoredAllNodes, - &vec![], - starting_path, - ); - - if resources_only { - nodes.retain(|node| matches!(node.node.content, NodeContent::Resource(_))); - } - - nodes - } - - /// Prints all nodes and their paths to easily/quickly examine a Vector Resource. - /// This is exhaustive and can begin from any starting_path. - /// `shorten_data` - Cuts the string content short to improve readability. - /// `resources_only` - Only prints Vector Resources - fn print_all_nodes_exhaustive(&self, starting_path: Option, shorten_data: bool, resources_only: bool) { - let nodes = self.get_nodes_exhaustive(starting_path, resources_only); - for node in nodes { - let path = node.retrieval_path.format_to_string(); - let data = match &node.node.content { - NodeContent::Text(s) => { - if shorten_data && s.chars().count() > 25 { - s.chars().take(25).collect::() + "..." - } else { - s.to_string() - } - } - NodeContent::Resource(resource) => { - println!(""); - format!( - "<{}> - {} Nodes Held Inside", - resource.as_trait_object().name(), - resource.as_trait_object().get_embeddings().len() - ) - } - NodeContent::ExternalContent(external_content) => { - println!(""); - format!("External: {}", external_content) - } - - NodeContent::VRHeader(header) => { - println!(""); - format!("Header For Vector Resource: {}", header.reference_string()) - } - }; - println!("{}: {}", path, data); - } - } - - /// Retrieves a node at any depth, given its path. - /// If the path is invalid at any part, or empty, then method will error. - fn retrieve_node_at_path(&self, path: VRPath) -> Result { - let results = self._internal_retrieve_node_at_path(path.clone(), None)?; - if results.is_empty() { - return Err(VRError::InvalidVRPath(path)); - } - Ok(results[0].clone()) - } - - /// Retrieves a node and `proximity_window` number of nodes before/after it, given a path. - /// If the path is invalid at any part, or empty, then method will error. - fn proximity_retrieve_node_at_path( - &self, - path: VRPath, - proximity_window: u64, - ) -> Result, VRError> { - self._internal_retrieve_node_at_path(path.clone(), Some(proximity_window)) - } - - /// Internal method shared by retrieved node at path methods - fn _internal_retrieve_node_at_path( - &self, - path: VRPath, - proximity_window: Option, - ) -> Result, VRError> { - if path.path_ids.is_empty() { - return Err(VRError::InvalidVRPath(path.clone())); - } - // Fetch the node at root depth directly, then iterate through the rest - let mut node = self.get_node(path.path_ids[0].clone())?; - let mut last_resource_header = self.generate_resource_header(None); - let mut retrieved_nodes = Vec::new(); - - // Iterate through the path, going into each Vector Resource until end of path - let mut traversed_path = VRPath::from_string(&(String::from("/") + &path.path_ids[0]))?; - for id in path.path_ids.iter().skip(1) { - traversed_path.push(id.to_string()); - match &node.content { - NodeContent::Resource(resource) => { - let resource_obj = resource.as_trait_object(); - last_resource_header = resource_obj.generate_resource_header(None); - - // If we have arrived at the final node, then perform node fetching/adding to results - if traversed_path == path { - // If returning proximity, then try to coerce into an OrderedVectorResource and perform proximity get - if let Some(prox_window) = proximity_window { - if let Ok(ord_res) = resource.as_ordered_vector_resource() { - retrieved_nodes = ord_res.get_node_and_proximity(id.clone(), prox_window)?; - } else { - return Err(VRError::InvalidVRBaseType); - } - } - } - node = resource_obj.get_node(id.clone())?; - } - _ => { - if let Some(last) = path.path_ids.last() { - // TODO: potentially delete this if, should always error probably - if id != last { - return Err(VRError::InvalidVRPath(path.clone())); - } - } - } - } - } - - // If there are no retrieved nodes, then simply add the final node that was at the path - if retrieved_nodes.is_empty() { - retrieved_nodes.push(node); - } - - // Convert the results into retrieved nodes - let mut final_nodes = vec![]; - for n in retrieved_nodes { - let mut node_path = path.pop_cloned(); - node_path.push(n.id.clone()); - final_nodes.push(RetrievedNode::new(n, 0.0, last_resource_header.clone(), node_path)); - } - Ok(final_nodes) - } - - /// Boolean check to see if a node exists at a given path - fn check_node_exists_at_path(&self, path: VRPath) -> bool { - self.retrieve_node_at_path(path).is_ok() - } - - /// Applies a mutator function on a node and its embedding at a given path, thereby enabling updating data within a specific node. - /// If the path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. - fn mutate_node_at_path( - &mut self, - path: VRPath, - mutator: &mut dyn Fn(&mut Node, &mut Embedding) -> Result<(), VRError>, - ) -> Result<(), VRError> { - let mut deconstructed_nodes = self._deconstruct_nodes_along_path(path.clone())?; - let last_mut = deconstructed_nodes - .last_mut() - .ok_or(VRError::InvalidVRPath(path.clone()))?; - let (_, last_node, last_embedding) = last_mut; - mutator(last_node, last_embedding)?; - - let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; - self.replace_node(node_key, node, embedding)?; - Ok(()) - } - - /// Removes a specific node from the Vector Resource, based on the provided path. Returns removed Node/Embedding. - /// If the path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. - fn remove_node_at_path(&mut self, path: VRPath) -> Result<(Node, Embedding), VRError> { - let mut deconstructed_nodes = self._deconstruct_nodes_along_path(path.clone())?; - let removed_node = deconstructed_nodes.pop().ok_or(VRError::InvalidVRPath(path))?; - - // Rebuild the nodes after removing the target node - if !deconstructed_nodes.is_empty() { - let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; - self.replace_node(node_key, node, embedding)?; - } - - Ok((removed_node.1, removed_node.2)) - } - - /// Replaces a specific node from the Vector Resource, based on the provided path. Returns removed Node/Embedding. - /// If the path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. - fn replace_node_at_path( - &mut self, - path: VRPath, - new_node: Node, - new_embedding: Embedding, - ) -> Result<(Node, Embedding), VRError> { - // Remove the node at the end of the deconstructed nodes - let mut deconstructed_nodes = self._deconstruct_nodes_along_path(path.clone())?; - deconstructed_nodes.pop().ok_or(VRError::InvalidVRPath(path.clone()))?; - - // Insert the new node at the end of the deconstructed nodes - if let Some(key) = path.path_ids.last() { - deconstructed_nodes.push((key.clone(), new_node, new_embedding)); - - // Rebuild the nodes after replacing the node - let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; - let result = self.replace_node(node_key, node, embedding)?; - - Ok(result) - } else { - Err(VRError::InvalidVRPath(path.clone())) // Replace with your actual error - } - } - - /// Inserts a node underneath the provided parent_path, using the supplied id. Supports inserting at root level `/`. - /// If the parent_path is invalid at any part, then method will error, and no changes will be applied to the VR. - fn insert_node_at_path( - &mut self, - parent_path: VRPath, - node_to_insert_id: String, - node_to_insert: Node, - node_to_insert_embedding: Embedding, - ) -> Result<(), VRError> { - // If inserting at root, just do it directly - if parent_path.path_ids.is_empty() { - self.insert_node(node_to_insert_id, node_to_insert, node_to_insert_embedding)?; - return Ok(()); - } - // Insert the new node at the end of the deconstructed nodes - let mut deconstructed_nodes = self._deconstruct_nodes_along_path(parent_path.clone())?; - deconstructed_nodes.push((node_to_insert_id, node_to_insert, node_to_insert_embedding)); - // Rebuild the nodes after inserting the new node - let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; - self.replace_node(node_key, node, embedding)?; - Ok(()) - } - - /// Appends a node underneath the provided parent_path if the resource held there implements OrderedVectorResource trait. - /// If the parent_path is invalid at any part then method will error, and no changes will be applied to the VR. - fn append_node_at_path( - &mut self, - parent_path: VRPath, - new_node: Node, - new_embedding: Embedding, - ) -> Result<(), VRError> { - // If the path is root, then immediately insert into self at root path. - // This is required since retrieve_node_at_path() cannot retrieved self as a node and will error. - if parent_path.path_ids.len() == 0 { - let ord_resource = self.as_ordered_vector_resource()?; - return self.insert_node_at_path( - parent_path.clone(), - ord_resource.new_push_node_id(), - new_node, - new_embedding, - ); - } else { - // Get the resource node at parent_path - let mut retrieved_node = self.retrieve_node_at_path(parent_path.clone())?; - if let NodeContent::Resource(resource) = &mut retrieved_node.node.content { - let ord_resource = resource.as_ordered_vector_resource()?; - return self.insert_node_at_path( - parent_path.clone(), - ord_resource.new_push_node_id(), - new_node, - new_embedding, - ); - } - return Err(VRError::InvalidVRPath(parent_path.clone())); - } - } - - /// Pops a node underneath the provided parent_path if the resource held there implements OrderedVectorResource trait. - /// If the parent_path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. - fn pop_node_at_path(&mut self, parent_path: VRPath) -> Result<(Node, Embedding), VRError> { - // If the path is root, then immediately pop from self at root path to avoid error. - if parent_path.is_empty() { - let ord_resource = self.as_ordered_vector_resource_mut()?; - let node_path = parent_path.push_cloned(ord_resource.last_node_id()); - return self.remove_node_at_path(node_path); - } else { - // Get the resource node at parent_path - let mut retrieved_node = self.retrieve_node_at_path(parent_path.clone())?; - // Check if its a DocumentVectorResource - if let NodeContent::Resource(resource) = &mut retrieved_node.node.content { - let ord_resource = resource.as_ordered_vector_resource_mut()?; - let node_path = parent_path.push_cloned(ord_resource.last_node_id()); - self.remove_node_at_path(node_path.clone()) - } else { - Err(VRError::InvalidVRPath(parent_path.clone())) - } - } - } - - /// Internal method. Given a path, pops out each node along the path in order - /// and returned as a list, including its original key and embedding. - fn _deconstruct_nodes_along_path(&mut self, path: VRPath) -> Result, VRError> { - if path.path_ids.is_empty() { - return Err(VRError::InvalidVRPath(path.clone())); - } - - let first_node = self.get_node(path.path_ids[0].clone())?; - let first_embedding = self.get_embedding(path.path_ids[0].clone())?; - let mut deconstructed_nodes = vec![(path.path_ids[0].clone(), first_node, first_embedding)]; - - for id in path.path_ids.iter().skip(1) { - let last_mut = deconstructed_nodes - .last_mut() - .ok_or(VRError::InvalidVRPath(path.clone()))?; - let (_node_key, ref mut node, ref mut _embedding) = last_mut; - match &mut node.content { - NodeContent::Resource(resource) => { - let (removed_node, removed_embedding) = - resource.as_trait_object_mut().remove_node(id.to_string())?; - deconstructed_nodes.push((id.clone(), removed_node, removed_embedding)); - } - _ => { - if id != path.path_ids.last().ok_or(VRError::InvalidVRPath(path.clone()))? { - return Err(VRError::InvalidVRPath(path.clone())); - } - } - } - } - - Ok(deconstructed_nodes) - } - - /// Internal method. Given a list of deconstructed_nodes, iterate backwards and rebuild them - /// into a single top-level node. - fn _rebuild_deconstructed_nodes( - &mut self, - mut deconstructed_nodes: Vec<(String, Node, Embedding)>, - ) -> Result<(String, Node, Embedding), VRError> { - let mut current_node = deconstructed_nodes.pop().ok_or(VRError::InvalidVRPath(VRPath::new()))?; - for (id, mut node, embedding) in deconstructed_nodes.into_iter().rev() { - if let NodeContent::Resource(resource) = &mut node.content { - resource - .as_trait_object_mut() - .insert_node(current_node.0, current_node.1, current_node.2)?; - current_node = (id, node, embedding); - } - } - Ok(current_node) - } - - #[cfg(feature = "native-http")] - /// Performs a dynamic vector search that returns the most similar nodes based on the input query String. - /// Dynamic Vector Searches support internal VectorResources with different Embedding models by automatically generating - /// the query Embedding from the input_query for each model. Dynamic Vector Searches are always Exhaustive. - async fn dynamic_vector_search( - &self, - input_query: String, - num_of_results: u64, - embedding_generator: RemoteEmbeddingGenerator, - ) -> Result, VRError> { - self.dynamic_vector_search_customized( - input_query, - num_of_results, - &vec![TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring)], - None, - embedding_generator, - ) - .await - } - - #[cfg(feature = "native-http")] - /// Performs a dynamic vector search that returns the most similar nodes based on the input query String. - /// Dynamic Vector Searches support internal VectorResources with different Embedding models by automatically generating - /// the query Embedding from the input_query for each model. Dynamic Vector Searches are always Exhaustive. - /// NOTE: Not all traversal_options (ex. UntilDepth) will work with Dynamic Vector Searches. - async fn dynamic_vector_search_customized( - &self, - input_query: String, - num_of_results: u64, - traversal_options: &Vec, - starting_path: Option, - embedding_generator: RemoteEmbeddingGenerator, - ) -> Result, VRError> { - // We only traverse 1 level of depth at a time to be able to re-process the input_query as needed - let mut traversal_options = traversal_options.clone(); - traversal_options.push(TraversalOption::UntilDepth(0)); - // Create a hash_map to save the embedding queries generated based on model type - let mut input_query_embeddings: HashMap = HashMap::new(); - - // First manually embedding generate & search the self Vector Resource - let mut query_embedding = embedding_generator.generate_embedding_default(&input_query).await?; - - input_query_embeddings.insert(embedding_generator.model_type(), query_embedding.clone()); - let mut latest_returned_results = self.vector_search_customized( - query_embedding, - num_of_results, - TraversalMethod::Exhaustive, - &traversal_options, - starting_path.clone(), - ); - - // Keep looping until we go through all nodes in the Vector Resource while carrying foward the score weighting - // through the deeper levels of the Vector Resource - let mut node_results = vec![]; - while let Some(ret_node) = latest_returned_results.pop() { - match ret_node.node.content { - NodeContent::Resource(ref resource) => { - // Reuse a previously generated query embedding if matching is available - if let Some(embedding) = - input_query_embeddings.get(&resource.as_trait_object().embedding_model_used()) - { - query_embedding = embedding.clone(); - } - // If a new embedding model is found for this resource, then initialize a new generator & generate the embedding - else { - let new_generator = resource.as_trait_object().initialize_compatible_embeddings_generator( - &embedding_generator.api_url, - embedding_generator.api_key.clone(), - ); - query_embedding = new_generator - .generate_embedding_shorten_input_default(&input_query, MAX_EMBEDDING_STRING_SIZE as u64) - .await?; - input_query_embeddings.insert(new_generator.model_type(), query_embedding.clone()); - } - - // Call vector_search() on the resource to get all the next depth Nodes from it - let new_results = resource.as_trait_object().vector_search_customized( - query_embedding, - num_of_results, - TraversalMethod::Exhaustive, - &traversal_options, - starting_path.clone(), - ); - // Take into account current resource score, then push the new results to latest_returned_results to be further processed - if let Some(ScoringMode::HierarchicalAverageScoring) = - traversal_options.get_set_scoring_mode_option() - { - // Average resource's score into the retrieved results scores, then push them to latest_returned_results - for result in new_results { - let mut updated_result = result.clone(); - updated_result.score = - vec![updated_result.score, ret_node.score].iter().sum::() / 2 as f32; - latest_returned_results.push(updated_result) - } - } - } - _ => { - // For any non-Vector Resource nodes, simply push them into the results - node_results.push(ret_node); - } - } - } - - // Now that we have all of the node results, sort them efficiently and return the expected number of results - let final_results = RetrievedNode::sort_by_score(&node_results, num_of_results); - - Ok(final_results) - } - - /// Performs a vector search that returns the most similar nodes based on the query with - /// default traversal method/options. - fn vector_search(&self, query: Embedding, num_of_results: u64) -> Vec { - self.vector_search_customized( - query, - num_of_results, - TraversalMethod::Exhaustive, - &vec![TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring)], - None, - ) - } - - /// Performs a vector search that returns the most similar nodes based on the query. - /// The input traversal_method/options allows the developer to choose how the search moves through the levels. - /// The optional starting_path allows the developer to choose to start searching from a Vector Resource - /// held internally at a specific path. - fn vector_search_customized( - &self, - query: Embedding, - num_of_results: u64, - traversal_method: TraversalMethod, - traversal_options: &Vec, - starting_path: Option, - ) -> Vec { - if let Some(path) = starting_path { - match self.retrieve_node_at_path(path.clone()) { - Ok(ret_node) => { - if let NodeContent::Resource(resource) = ret_node.node.content.clone() { - return resource.as_trait_object()._vector_search_customized_core( - query, - num_of_results, - traversal_method, - traversal_options, - vec![], - path, - ); - } - } - Err(_) => {} - } - } - // Perform the vector search and continue forward - let mut results = self._vector_search_customized_core( - query.clone(), - num_of_results, - traversal_method.clone(), - traversal_options, - vec![], - VRPath::new(), - ); - - // After getting all results from the vector search, perform final filtering - // Check if we need to cut results according to tolerance range - let tolerance_range_option = traversal_options.iter().find_map(|option| { - if let TraversalOption::ToleranceRangeResults(range) = option { - Some(*range) - } else { - None - } - }); - if let Some(tolerance_range) = tolerance_range_option { - results = self._tolerance_range_results(tolerance_range, &results); - } - - // Check if we need to cut results according to the minimum score - let min_score_option = traversal_options.iter().find_map(|option| { - if let TraversalOption::MinimumScore(score) = option { - Some(*score) - } else { - None - } - }); - if let Some(min_score) = min_score_option { - results = results - .into_iter() - .filter(|ret_node| ret_node.score >= min_score) - .collect(); - } - - // Check if we need to adjust based on the ResultsMode - if let Some(result_mode) = traversal_options.get_set_results_mode_option() { - if let ResultsMode::ProximitySearch(proximity_window) = result_mode { - if let Some(first_result) = results.first() { - if let Ok(new_results) = - self.proximity_retrieve_node_at_path(first_result.retrieval_path.clone(), proximity_window) - { - results = new_results - } else { - // If proximity retrieval fails, most likely due to path not pointing to OrderedVectorResource, - // then just return the single highest scored node as the failure case when using proximity search. - results = vec![first_result.clone()] - } - } - } - } - - // Check if we are using traveral method unscored all nodes - if traversal_method != TraversalMethod::UnscoredAllNodes { - results.truncate(num_of_results as usize); - } - - results - } - - /// Internal method which is used to keep track of traversal info - fn _vector_search_customized_core( - &self, - query: Embedding, - num_of_results: u64, - traversal_method: TraversalMethod, - traversal_options: &Vec, - hierarchical_scores: Vec, - traversal_path: VRPath, - ) -> Vec { - // First we fetch the embeddings we want to score - let mut embeddings_to_score = vec![]; - // Check for syntactic search prefilter mode - let syntactic_search_option = traversal_options.iter().find_map(|option| match option { - TraversalOption::SetPrefilterMode(PrefilterMode::SyntacticVectorSearch(data_tags)) => { - Some(data_tags.clone()) - } - _ => None, - }); - if let Some(data_tag_names) = syntactic_search_option { - // If SyntacticVectorSearch is in traversal_options, fetch nodes with matching data tags - let ids = self._syntactic_search_id_fetch(&data_tag_names); - for id in ids { - if let Ok(embedding) = self.get_embedding(id) { - embeddings_to_score.push(embedding); - } - } - } else { - // If SyntacticVectorSearch is not in traversal_options, get all embeddings - embeddings_to_score = self.get_embeddings(); - } - - // Score embeddings based on traversal method - let mut score_num_of_results = num_of_results; - let mut scores = vec![]; - match traversal_method { - // Score all if exhaustive - TraversalMethod::Exhaustive => { - score_num_of_results = embeddings_to_score.len() as u64; - scores = query.score_similarities(&embeddings_to_score, score_num_of_results); - } - // Fake score all as 0 if unscored exhaustive - TraversalMethod::UnscoredAllNodes => { - scores = embeddings_to_score - .iter() - .map(|embedding| (0.0, embedding.id.clone())) - .collect(); - } - // Else score as normal - _ => { - scores = query.score_similarities(&embeddings_to_score, score_num_of_results); - } - } - - self._order_vector_search_results( - scores, - query, - num_of_results, - traversal_method, - traversal_options, - hierarchical_scores, - traversal_path, - ) - } - - /// Internal method that orders all scores, and importantly traverses into any nodes holding further BaseVectorResources. - fn _order_vector_search_results( - &self, - scores: Vec<(f32, String)>, - query: Embedding, - num_of_results: u64, - traversal_method: TraversalMethod, - traversal_options: &Vec, - hierarchical_scores: Vec, - traversal_path: VRPath, - ) -> Vec { - let mut current_level_results: Vec = vec![]; - let mut vector_resource_count = 0; - let mut query = query.clone(); - - for (score, id) in scores { - let mut skip_traversing_deeper = false; - if let Ok(node) = self.get_node(id) { - // Perform validations based on Filter Mode - let filter_mode = traversal_options.get_set_filter_mode_option(); - if let Some(FilterMode::ContainsAnyMetadataKeyValues(kv_pairs)) = filter_mode.clone() { - if !FilterMode::node_metadata_any_check(&node, &kv_pairs) { - continue; - } - } - if let Some(FilterMode::ContainsAllMetadataKeyValues(kv_pairs)) = filter_mode { - if !FilterMode::node_metadata_all_check(&node, &kv_pairs) { - continue; - } - } - // Perform validations related to node content type - if let NodeContent::Resource(node_resource) = node.content.clone() { - // Keep track for later sorting efficiency - vector_resource_count += 1; - for option in traversal_options { - // If traversal option includes UntilDepth and we've reached the right level - // Don't recurse any deeper, just return current Node with BaseVectorResource - if let TraversalOption::UntilDepth(d) = option { - if d == &traversal_path.depth_inclusive() { - let ret_node = RetrievedNode { - node: node.clone(), - score, - resource_header: self.generate_resource_header(None), - retrieval_path: traversal_path.clone(), - }; - current_level_results.push(ret_node); - skip_traversing_deeper = true; - break; - } - } - // If node Resource does not have same base type as LimitTraversalToType then - // then skip going deeper into it - if let TraversalOption::LimitTraversalToType(base_type) = option { - if &node_resource.resource_base_type() != base_type { - skip_traversing_deeper = true; - } - } - } - } - if skip_traversing_deeper { - continue; - } - - let results = self._recursive_data_extraction( - node.clone(), - score, - query.clone(), - num_of_results, - traversal_method.clone(), - traversal_options, - hierarchical_scores.clone(), - traversal_path.clone(), - ); - current_level_results.extend(results); - } - } - - // If at least one vector resource exists in the Nodes then re-sort - // after fetching deeper level results to ensure ordering is correct - if vector_resource_count >= 1 && traversal_method != TraversalMethod::UnscoredAllNodes { - return RetrievedNode::sort_by_score(¤t_level_results, num_of_results); - } - // Otherwise just return 1st level results - current_level_results - } - - /// Internal method for recursing into deeper levels of Vector Resources - fn _recursive_data_extraction( - &self, - node: Node, - score: f32, - query: Embedding, - num_of_results: u64, - traversal_method: TraversalMethod, - traversal_options: &Vec, - hierarchical_scores: Vec, - traversal_path: VRPath, - ) -> Vec { - let mut current_level_results: Vec = vec![]; - // Concat the current score into a new hierarchical scores Vec before moving forward - let new_hierarchical_scores = [&hierarchical_scores[..], &[score]].concat(); - // Create a new traversal path with the node id - let new_traversal_path = traversal_path.push_cloned(node.id.clone()); - - match &node.content { - NodeContent::Resource(resource) => { - // If no data tag names provided, it means we are doing a normal vector search - let sub_results = resource.as_trait_object()._vector_search_customized_core( - query.clone(), - num_of_results, - traversal_method.clone(), - traversal_options, - new_hierarchical_scores, - new_traversal_path.clone(), - ); - - // If traversing with UnscoredAllNodes, include the Vector Resource - // nodes as well in the results, prepended before their nodes - // held inside - if traversal_method == TraversalMethod::UnscoredAllNodes { - current_level_results.push(RetrievedNode { - node: node.clone(), - score, - resource_header: self.generate_resource_header(None), - retrieval_path: new_traversal_path, - }); - } - - current_level_results.extend(sub_results); - } - _ => { - let mut score = score; - for option in traversal_options { - if let TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring) = option { - score = new_hierarchical_scores.iter().sum::() / new_hierarchical_scores.len() as f32; - break; - } - } - current_level_results.push(RetrievedNode { - node: node.clone(), - score, - resource_header: self.generate_resource_header(None), - retrieval_path: new_traversal_path, - }); - } - } - current_level_results - } - - /// Ease-of-use function for performing a syntactic vector search. Uses exhaustive traversal and hierarchical average scoring. - /// A syntactic vector search efficiently pre-filters all Nodes held internally to a subset that matches the provided list of data tag names. - fn syntactic_vector_search( - &self, - query: Embedding, - num_of_results: u64, - data_tag_names: &Vec, - ) -> Vec { - self.vector_search_customized( - query, - num_of_results, - TraversalMethod::Exhaustive, - &vec![ - TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring), - TraversalOption::SetPrefilterMode(PrefilterMode::SyntacticVectorSearch(data_tag_names.clone())), - ], - None, - ) - } - - /// Returns the most similar nodes within a specific range of the provided top similarity score. - fn _tolerance_range_results(&self, tolerance_range: f32, results: &Vec) -> Vec { - // Calculate the top similarity score - let top_similarity_score = results.first().map_or(0.0, |ret_node| ret_node.score); - - // Clamp the tolerance_range to be between 0 and 1 - let tolerance_range = tolerance_range.max(0.0).min(1.0); - - // Calculate the range of acceptable similarity scores - let lower_bound = top_similarity_score * (1.0 - tolerance_range); - - // Filter the results to only include those within the range of the top similarity score - let mut filtered_results = Vec::new(); - for ret_node in results { - if ret_node.score >= lower_bound && ret_node.score <= top_similarity_score { - filtered_results.push(ret_node.clone()); - } - } - - filtered_results - } - - /// Internal method to fetch all node ids for syntactic searches - fn _syntactic_search_id_fetch(&self, data_tag_names: &Vec) -> Vec { - let mut ids = vec![]; - for name in data_tag_names { - if let Some(node_ids) = self.data_tag_index().get_node_ids(&name) { - ids.extend(node_ids.iter().map(|id| id.to_string())); - } - } - ids - } -} diff --git a/shinkai-libs/shinkai-vector-resources/src/base_vector_resources.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/base_vector_resources.rs similarity index 98% rename from shinkai-libs/shinkai-vector-resources/src/base_vector_resources.rs rename to shinkai-libs/shinkai-vector-resources/src/vector_resource/base_vector_resources.rs index 1c79eca72..656c0b1e0 100644 --- a/shinkai-libs/shinkai-vector-resources/src/base_vector_resources.rs +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/base_vector_resources.rs @@ -1,6 +1,5 @@ -use super::document_resource::DocumentVectorResource; -use super::map_resource::MapVectorResource; use super::vector_resource::VectorResource; +use super::{DocumentVectorResource, MapVectorResource}; use crate::resource_errors::VRError; use crate::vector_resource::OrderedVectorResource; use serde_json::Value as JsonValue; diff --git a/shinkai-libs/shinkai-vector-resources/src/document_resource.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/document_resource.rs similarity index 81% rename from shinkai-libs/shinkai-vector-resources/src/document_resource.rs rename to shinkai-libs/shinkai-vector-resources/src/vector_resource/document_resource.rs index 14e61f539..dcc8647a9 100644 --- a/shinkai-libs/shinkai-vector-resources/src/document_resource.rs +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/document_resource.rs @@ -1,15 +1,14 @@ -use crate::base_vector_resources::{BaseVectorResource, VRBaseType}; +use super::{BaseVectorResource, VRBaseType, VRHeader, VectorResourceSearch}; use crate::data_tags::{DataTag, DataTagIndex}; use crate::embeddings::Embedding; use crate::metadata_index::MetadataIndex; use crate::model_type::{EmbeddingModelType, TextEmbeddingsInference}; use crate::resource_errors::VRError; -use crate::shinkai_time::ShinkaiTime; -use crate::source::{ShinkaiFileType, SourceReference, VRSource}; -use crate::vector_resource::{ - Node, NodeContent, OrderedVectorResource, RetrievedNode, TraversalMethod, TraversalOption, VRPath, VectorResource, -}; -use crate::vector_search_traversal::VRHeader; +use crate::shinkai_time::{ShinkaiStringTime, ShinkaiTime}; +use crate::source::{SourceReference, VRSource}; +use crate::vector_resource::{Node, NodeContent, OrderedVectorResource, VRPath, VectorResource, VectorResourceCore}; +use blake3::Hash; +use chrono::{DateTime, Utc}; use serde_json; use std::any::Any; use std::collections::HashMap; @@ -30,10 +29,13 @@ pub struct DocumentVectorResource { node_count: u64, nodes: Vec, data_tag_index: DataTagIndex, - created_datetime: String, - last_modified_datetime: String, + created_datetime: DateTime, + last_written_datetime: DateTime, metadata_index: MetadataIndex, + merkle_root: Option, } +impl VectorResource for DocumentVectorResource {} +impl VectorResourceSearch for DocumentVectorResource {} impl OrderedVectorResource for DocumentVectorResource { /// Id of the last node held internally @@ -80,7 +82,7 @@ impl OrderedVectorResource for DocumentVectorResource { } } -impl VectorResource for DocumentVectorResource { +impl VectorResourceCore for DocumentVectorResource { fn as_any(&self) -> &dyn Any { self } @@ -101,21 +103,35 @@ impl VectorResource for DocumentVectorResource { Ok(self as &mut dyn OrderedVectorResource) } + /// Returns the merkle root of the Vector Resource (if it is not None). + fn get_merkle_root(&self) -> Result { + self.merkle_root + .clone() + .ok_or(VRError::MerkleRootNotFound(self.reference_string())) + } + + /// Sets the merkle root of the Vector Resource, errors if provided hash is not a valid Blake3 hash. + fn set_merkle_root(&mut self, merkle_hash: String) -> Result<(), VRError> { + // Validate the hash format + if blake3::Hash::from_hex(&merkle_hash).is_ok() { + self.merkle_root = Some(merkle_hash); + Ok(()) + } else { + Err(VRError::InvalidMerkleHashString(merkle_hash)) + } + } + /// RFC3339 Datetime when then Vector Resource was created - fn created_datetime(&self) -> String { + fn created_datetime(&self) -> DateTime { self.created_datetime.clone() } - /// RFC3339 Datetime when then Vector Resource was last modified - fn last_modified_datetime(&self) -> String { - self.last_modified_datetime.clone() + /// RFC3339 Datetime when then Vector Resource was last written + fn last_written_datetime(&self) -> DateTime { + self.last_written_datetime.clone() } - /// Set a RFC Datetime of when then Vector Resource was last modified - fn set_last_modified_datetime(&mut self, datetime: String) -> Result<(), VRError> { - if ShinkaiTime::validate_datetime_string(&datetime) { - self.last_modified_datetime = datetime; - return Ok(()); - } - return Err(VRError::InvalidDateTimeString(datetime)); + /// Set a RFC Datetime of when then Vector Resource was last written + fn set_last_written_datetime(&mut self, datetime: DateTime) { + self.last_written_datetime = datetime; } fn data_tag_index(&self) -> &DataTagIndex { @@ -142,6 +158,18 @@ impl VectorResource for DocumentVectorResource { self.source.clone() } + fn set_name(&mut self, new_name: String) { + self.name = new_name; + } + + fn set_description(&mut self, new_description: Option) { + self.description = new_description; + } + + fn set_source(&mut self, new_source: VRSource) { + self.source = new_source; + } + fn resource_id(&self) -> &str { &self.resource_id } @@ -159,21 +187,21 @@ impl VectorResource for DocumentVectorResource { } fn to_json(&self) -> Result { - serde_json::to_string(self).map_err(|_| VRError::FailedJSONParsing) + Ok(serde_json::to_string(self)?) } fn set_embedding_model_used(&mut self, model_type: EmbeddingModelType) { - self.update_last_modified_to_now(); + self.update_last_written_to_now(); self.embedding_model_used = model_type; } fn set_resource_embedding(&mut self, embedding: Embedding) { - self.update_last_modified_to_now(); + self.update_last_written_to_now(); self.resource_embedding = embedding; } fn set_resource_id(&mut self, id: String) { - self.update_last_modified_to_now(); + self.update_last_written_to_now(); self.resource_id = id; } @@ -206,7 +234,19 @@ impl VectorResource for DocumentVectorResource { } /// Insert a Node/Embedding into the VR using the provided id (root level depth). Overwrites existing data. - fn insert_node(&mut self, id: String, node: Node, embedding: Embedding) -> Result<(), VRError> { + fn insert_node( + &mut self, + id: String, + node: Node, + embedding: Embedding, + new_written_datetime: Option>, + ) -> Result<(), VRError> { + let current_datetime = if let Some(dt) = new_written_datetime { + dt + } else { + ShinkaiTime::generate_time_now() + }; + // Id + index logic let mut integer_id = id.parse::().map_err(|_| VRError::InvalidNodeId(id.to_string()))?; integer_id = if integer_id == 0 { 1 } else { integer_id }; @@ -243,8 +283,14 @@ impl VectorResource for DocumentVectorResource { // Update ids to match supplied id let mut updated_node = node; updated_node.id = id.to_string(); + updated_node.set_last_written(current_datetime); let mut embedding = embedding.clone(); embedding.set_id(id.to_string()); + // Update the node merkle hash if the VR is merkelized. This guarantees merkle hash is always up to date. + if self.is_merkelized() { + updated_node.update_merkle_hash()?; + } + // Insert the new node and embedding self.nodes[index] = updated_node.clone(); self.embeddings[index] = embedding; @@ -253,13 +299,30 @@ impl VectorResource for DocumentVectorResource { self.metadata_index.add_node(&updated_node); self.node_count += 1; - self.update_last_modified_to_now(); + self.set_last_written_datetime(current_datetime); + + // Regenerate the Vector Resource's merkle root after updating its contents + if self.is_merkelized() { + self.update_merkle_root()?; + } Ok(()) } /// Replace a Node/Embedding in the VR using the provided id (root level depth) - fn replace_node(&mut self, id: String, node: Node, embedding: Embedding) -> Result<(Node, Embedding), VRError> { + fn replace_node( + &mut self, + id: String, + node: Node, + embedding: Embedding, + new_written_datetime: Option>, + ) -> Result<(Node, Embedding), VRError> { + let current_datetime = if let Some(dt) = new_written_datetime { + dt + } else { + ShinkaiTime::generate_time_now() + }; + // Id + index logic let mut integer_id = id.parse::().map_err(|_| VRError::InvalidNodeId(id.to_string()))?; integer_id = if integer_id == 0 { 1 } else { integer_id }; @@ -273,6 +336,11 @@ impl VectorResource for DocumentVectorResource { new_node.id = id.to_string(); let mut embedding = embedding.clone(); embedding.set_id(id.to_string()); + new_node.set_last_written(current_datetime); + // Update the node merkle hash if the VR is merkelized. This guarantees merkle hash is always up to date. + if self.is_merkelized() { + new_node.update_merkle_hash()?; + } // Replace the old node and fetch old embedding let old_node = std::mem::replace(&mut self.nodes[index], new_node.clone()); @@ -280,7 +348,7 @@ impl VectorResource for DocumentVectorResource { // Replacing the embedding self.embeddings[index] = embedding; - self.update_last_modified_to_now(); + self.set_last_written_datetime(current_datetime); // Then deletion of old node from indexes and addition of new node if old_node.data_tag_names != new_node.data_tag_names { @@ -292,23 +360,47 @@ impl VectorResource for DocumentVectorResource { self.metadata_index.add_node(&new_node); } + // Regenerate the Vector Resource's merkle root after updating its contents + if self.is_merkelized() { + self.update_merkle_root()?; + } + Ok((old_node, old_embedding)) } /// Remove a Node/Embedding in the VR using the provided id (root level depth) - fn remove_node(&mut self, id: String) -> Result<(Node, Embedding), VRError> { + fn remove_node( + &mut self, + id: String, + new_written_datetime: Option>, + ) -> Result<(Node, Embedding), VRError> { + let current_datetime = if let Some(dt) = new_written_datetime { + dt + } else { + ShinkaiTime::generate_time_now() + }; // Id + index logic let mut integer_id = id.parse::().map_err(|_| VRError::InvalidNodeId(id.to_string()))?; integer_id = if integer_id == 0 { 1 } else { integer_id }; if integer_id > self.node_count { return Err(VRError::InvalidNodeId(id.to_string())); } - self.remove_node_with_integer(integer_id) + let results = self.remove_node_with_integer(integer_id); + self.set_last_written_datetime(current_datetime); + + // Regenerate the Vector Resource's merkle root after updating its contents + if self.is_merkelized() { + self.update_merkle_root()?; + } + + results } } impl DocumentVectorResource { /// Create a new MapVectorResource + /// If is_merkelized == true, then this VR will automatically generate a merkle root + /// & merkle hashes for all nodes. pub fn new( name: &str, desc: Option<&str>, @@ -317,8 +409,16 @@ impl DocumentVectorResource { embeddings: Vec, nodes: Vec, embedding_model_used: EmbeddingModelType, + is_merkelized: bool, ) -> Self { let current_time = ShinkaiTime::generate_time_now(); + let merkle_root = if is_merkelized { + let empty_hash = blake3::Hasher::new().finalize(); + Some(empty_hash.to_hex().to_string()) + } else { + None + }; + let mut resource = DocumentVectorResource { name: String::from(name), description: desc.map(String::from), @@ -332,17 +432,19 @@ impl DocumentVectorResource { resource_base_type: VRBaseType::Document, data_tag_index: DataTagIndex::new(), created_datetime: current_time.clone(), - last_modified_datetime: current_time, + last_written_datetime: current_time, metadata_index: MetadataIndex::new(), + merkle_root, }; - // Generate a unique resource_id: + // Generate a unique resource_id resource.generate_and_update_resource_id(); resource } - /// Initializes an empty `DocumentVectorResource` with empty defaults. - pub fn new_empty(name: &str, desc: Option<&str>, source: VRSource) -> Self { + /// Initializes an empty `DocumentVectorResource` with empty defaults. Of note, make sure EmbeddingModelType + /// is correct before adding any nodes into the VR. + pub fn new_empty(name: &str, desc: Option<&str>, source: VRSource, is_merkelized: bool) -> Self { DocumentVectorResource::new( name, desc, @@ -351,6 +453,7 @@ impl DocumentVectorResource { Vec::new(), Vec::new(), EmbeddingModelType::TextEmbeddingsInference(TextEmbeddingsInference::AllMiniLML6v2), + is_merkelized, ) } @@ -619,7 +722,7 @@ impl DocumentVectorResource { let node_id: u64 = node.id.parse().unwrap(); node.id = format!("{}", node_id - 1); } - self.update_last_modified_to_now(); + self.update_last_written_to_now(); Ok(removed_node) } @@ -629,6 +732,6 @@ impl DocumentVectorResource { pub fn set_resource_id(&mut self, resource_id: String) { self.resource_id = resource_id; - self.update_last_modified_to_now(); + self.update_last_written_to_now(); } } diff --git a/shinkai-libs/shinkai-vector-resources/src/map_resource.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/map_resource.rs similarity index 79% rename from shinkai-libs/shinkai-vector-resources/src/map_resource.rs rename to shinkai-libs/shinkai-vector-resources/src/vector_resource/map_resource.rs index 6b2e8805a..3e69de7e3 100644 --- a/shinkai-libs/shinkai-vector-resources/src/map_resource.rs +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/map_resource.rs @@ -1,13 +1,15 @@ -use crate::base_vector_resources::{BaseVectorResource, VRBaseType}; +use super::VectorResourceSearch; use crate::data_tags::{DataTag, DataTagIndex}; use crate::embeddings::Embedding; use crate::metadata_index::MetadataIndex; use crate::model_type::{EmbeddingModelType, TextEmbeddingsInference}; use crate::resource_errors::VRError; -use crate::shinkai_time::ShinkaiTime; +use crate::shinkai_time::{ShinkaiStringTime, ShinkaiTime}; use crate::source::{SourceReference, VRSource}; -use crate::vector_resource::{Node, NodeContent, OrderedVectorResource, VRPath, VectorResource}; -use crate::vector_search_traversal::VRHeader; +use crate::vector_resource::base_vector_resources::{BaseVectorResource, VRBaseType}; +use crate::vector_resource::vector_search_traversal::VRHeader; +use crate::vector_resource::{Node, NodeContent, OrderedVectorResource, VRPath, VectorResource, VectorResourceCore}; +use chrono::{DateTime, Utc}; use serde_json; use std::any::Any; use std::collections::HashMap; @@ -28,12 +30,15 @@ pub struct MapVectorResource { node_count: u64, nodes: HashMap, data_tag_index: DataTagIndex, - created_datetime: String, - last_modified_datetime: String, + created_datetime: DateTime, + last_written_datetime: DateTime, metadata_index: MetadataIndex, + merkle_root: Option, } +impl VectorResource for MapVectorResource {} +impl VectorResourceSearch for MapVectorResource {} -impl VectorResource for MapVectorResource { +impl VectorResourceCore for MapVectorResource { fn as_any(&self) -> &dyn Any { self } @@ -56,21 +61,35 @@ impl VectorResource for MapVectorResource { )) } + /// Returns the merkle root of the Vector Resource (if it is not None). + fn get_merkle_root(&self) -> Result { + self.merkle_root + .clone() + .ok_or(VRError::MerkleRootNotFound(self.reference_string())) + } + + /// Sets the merkle root of the Vector Resource, errors if provided hash is not a valid Blake3 hash. + fn set_merkle_root(&mut self, merkle_hash: String) -> Result<(), VRError> { + // Validate the hash format + if blake3::Hash::from_hex(&merkle_hash).is_ok() { + self.merkle_root = Some(merkle_hash); + Ok(()) + } else { + Err(VRError::InvalidMerkleHashString(merkle_hash)) + } + } + /// RFC3339 Datetime when then Vector Resource was created - fn created_datetime(&self) -> String { + fn created_datetime(&self) -> DateTime { self.created_datetime.clone() } - /// RFC3339 Datetime when then Vector Resource was last modified - fn last_modified_datetime(&self) -> String { - self.last_modified_datetime.clone() + /// RFC3339 Datetime when then Vector Resource was last written + fn last_written_datetime(&self) -> DateTime { + self.last_written_datetime.clone() } - /// Set a RFC Datetime of when then Vector Resource was last modified - fn set_last_modified_datetime(&mut self, datetime: String) -> Result<(), VRError> { - if ShinkaiTime::validate_datetime_string(&datetime) { - self.last_modified_datetime = datetime; - return Ok(()); - } - return Err(VRError::InvalidDateTimeString(datetime)); + /// Set a RFC Datetime of when then Vector Resource was last written + fn set_last_written_datetime(&mut self, datetime: DateTime) { + self.last_written_datetime = datetime; } fn data_tag_index(&self) -> &DataTagIndex { @@ -97,6 +116,18 @@ impl VectorResource for MapVectorResource { self.source.clone() } + fn set_name(&mut self, new_name: String) { + self.name = new_name; + } + + fn set_description(&mut self, new_description: Option) { + self.description = new_description; + } + + fn set_source(&mut self, new_source: VRSource) { + self.source = new_source; + } + fn resource_id(&self) -> &str { &self.resource_id } @@ -114,26 +145,27 @@ impl VectorResource for MapVectorResource { } fn to_json(&self) -> Result { - serde_json::to_string(self).map_err(|_| VRError::FailedJSONParsing) + Ok(serde_json::to_string(self)?) } fn set_embedding_model_used(&mut self, model_type: EmbeddingModelType) { - self.update_last_modified_to_now(); + self.update_last_written_to_now(); self.embedding_model_used = model_type; } fn set_resource_embedding(&mut self, embedding: Embedding) { - self.update_last_modified_to_now(); + self.update_last_written_to_now(); self.resource_embedding = embedding; } fn set_resource_id(&mut self, id: String) { - self.update_last_modified_to_now(); + self.update_last_written_to_now(); self.resource_id = id; } /// Retrieves a node's embedding given its key (id) fn get_embedding(&self, key: String) -> Result { + let key = VRPath::clean_string(&key); Ok(self .embeddings .get(&key) @@ -143,6 +175,7 @@ impl VectorResource for MapVectorResource { /// Retrieves a node given its key (id) fn get_node(&self, key: String) -> Result { + let key = VRPath::clean_string(&key); self.nodes .get(&key) .cloned() @@ -155,12 +188,30 @@ impl VectorResource for MapVectorResource { } /// Insert a Node/Embedding into the VR using the provided id (root level depth). Overwrites existing data. - fn insert_node(&mut self, id: String, node: Node, embedding: Embedding) -> Result<(), VRError> { + fn insert_node( + &mut self, + id: String, + node: Node, + embedding: Embedding, + new_written_datetime: Option>, + ) -> Result<(), VRError> { + let current_datetime = if let Some(dt) = new_written_datetime { + dt + } else { + ShinkaiTime::generate_time_now() + }; + + let id = VRPath::clean_string(&id); // Update ids to match supplied id let mut updated_node = node; updated_node.id = id.to_string(); + updated_node.set_last_written(current_datetime); let mut embedding = embedding.clone(); embedding.set_id(id.to_string()); + // Update the node merkle hash if the VR is merkelized. This guarantees merkle hash is always up to date. + if self.is_merkelized() { + updated_node.update_merkle_hash()?; + } // Insert node/embeddings self._insert_node(updated_node.clone()); @@ -170,15 +221,39 @@ impl VectorResource for MapVectorResource { self.data_tag_index.add_node(&updated_node); self.metadata_index.add_node(&updated_node); - self.update_last_modified_to_now(); + self.set_last_written_datetime(current_datetime); + // Regenerate the Vector Resource's merkle root after updating its contents + if self.is_merkelized() { + self.update_merkle_root()?; + } Ok(()) } /// Replace a Node/Embedding in the VR using the provided id (root level depth) - fn replace_node(&mut self, id: String, node: Node, embedding: Embedding) -> Result<(Node, Embedding), VRError> { - // Replace old node, and get old embedding + fn replace_node( + &mut self, + id: String, + node: Node, + embedding: Embedding, + new_written_datetime: Option>, + ) -> Result<(Node, Embedding), VRError> { + let id = VRPath::clean_string(&id); + let current_datetime = if let Some(dt) = new_written_datetime { + dt + } else { + ShinkaiTime::generate_time_now() + }; + + // Update new_node id/last written let mut new_node = node; new_node.id = id.clone(); + new_node.set_last_written(current_datetime); + // Update the node merkle hash if the VR is merkelized. This guarantees merkle hash is always up to date. + if self.is_merkelized() { + new_node.update_merkle_hash()?; + } + + // Replace old node, and get old embedding let old_node = self .nodes .insert(id.to_string(), new_node.clone()) @@ -199,20 +274,47 @@ impl VectorResource for MapVectorResource { let mut embedding = embedding.clone(); embedding.set_id(id.to_string()); self.embeddings.insert(id.to_string(), embedding); - self.update_last_modified_to_now(); + self.set_last_written_datetime(current_datetime); + + // Regenerate the Vector Resource's merkle root after updating its contents + if self.is_merkelized() { + self.update_merkle_root()?; + } Ok((old_node, old_embedding)) } /// Remove a Node/Embedding in the VR using the provided id (root level depth) - fn remove_node(&mut self, id: String) -> Result<(Node, Embedding), VRError> { + fn remove_node( + &mut self, + id: String, + new_written_datetime: Option>, + ) -> Result<(Node, Embedding), VRError> { + let current_datetime = if let Some(dt) = new_written_datetime { + dt + } else { + ShinkaiTime::generate_time_now() + }; + + let id = VRPath::clean_string(&id); let path = VRPath::from_string(&("/".to_owned() + &id))?; - self.remove_node_at_path(path) + + let results = self.remove_node_at_path(path); + self.set_last_written_datetime(current_datetime); + + // Regenerate the Vector Resource's merkle root after updating its contents + if self.is_merkelized() { + self.update_merkle_root()?; + } + + results } } impl MapVectorResource { - /// Create a new MapVectorResource + /// Create a new MapVectorResource. + /// If is_merkelized == true, then this VR will automatically generate a merkle root + /// & merkle hashes for all nodes. pub fn new( name: &str, desc: Option<&str>, @@ -221,8 +323,16 @@ impl MapVectorResource { embeddings: HashMap, nodes: HashMap, embedding_model_used: EmbeddingModelType, + is_merkelized: bool, ) -> Self { let current_time = ShinkaiTime::generate_time_now(); + let merkle_root = if is_merkelized { + let empty_hash = blake3::Hasher::new().finalize(); + Some(empty_hash.to_hex().to_string()) + } else { + None + }; + let mut resource = MapVectorResource { name: String::from(name), description: desc.map(String::from), @@ -236,16 +346,18 @@ impl MapVectorResource { embedding_model_used, data_tag_index: DataTagIndex::new(), created_datetime: current_time.clone(), - last_modified_datetime: current_time, + last_written_datetime: current_time, metadata_index: MetadataIndex::new(), + merkle_root, }; // Generate a unique resource_id: resource.generate_and_update_resource_id(); resource } - /// Initializes an empty `MapVectorResource` with empty defaults. - pub fn new_empty(name: &str, desc: Option<&str>, source: VRSource) -> Self { + /// Initializes an empty `MapVectorResource` with empty defaults. Of note, make sure EmbeddingModelType + /// is correct before adding any nodes into the VR. + pub fn new_empty(name: &str, desc: Option<&str>, source: VRSource, is_merkelized: bool) -> Self { MapVectorResource::new( name, desc, @@ -254,6 +366,7 @@ impl MapVectorResource { HashMap::new(), HashMap::new(), EmbeddingModelType::TextEmbeddingsInference(TextEmbeddingsInference::AllMiniLML6v2), + is_merkelized, ) } @@ -397,7 +510,7 @@ impl MapVectorResource { tag_names: &Vec, ) { let node = Node::from_node_content(key.to_string(), data.clone(), metadata.clone(), tag_names.clone()); - self.insert_node(key.to_string(), node, embedding.clone()); + self.insert_node(key.to_string(), node, embedding.clone(), None); } /// Replaces an existing node & associated embedding with a new BaseVectorResource at the specified key at root depth. @@ -548,14 +661,14 @@ impl MapVectorResource { new_metadata.clone(), new_tag_names.clone(), ); - self.replace_node(key.to_string(), new_node, embedding.clone()) + self.replace_node(key.to_string(), new_node, embedding.clone(), None) } /// Internal method. Node deletion from the hashmap fn _remove_node(&mut self, key: &str) -> Result { self.node_count -= 1; let removed_node = self.nodes.remove(key).ok_or(VRError::InvalidNodeId(key.to_string()))?; - self.update_last_modified_to_now(); + self.update_last_written_to_now(); Ok(removed_node) } @@ -563,7 +676,7 @@ impl MapVectorResource { fn _insert_node(&mut self, node: Node) { self.node_count += 1; self.nodes.insert(node.id.clone(), node); - self.update_last_modified_to_now(); + self.update_last_written_to_now(); } pub fn from_json(json: &str) -> Result { @@ -572,6 +685,6 @@ impl MapVectorResource { pub fn set_resource_id(&mut self, resource_id: String) { self.resource_id = resource_id; - self.update_last_modified_to_now(); + self.update_last_written_to_now(); } } diff --git a/shinkai-libs/shinkai-vector-resources/src/vector_resource/mod.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/mod.rs new file mode 100644 index 000000000..46d872f93 --- /dev/null +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/mod.rs @@ -0,0 +1,17 @@ +pub mod base_vector_resources; +pub mod document_resource; +pub mod map_resource; +pub mod vector_resource; +pub mod vector_resource_extensions; +pub mod vector_resource_search; +pub mod vector_resource_types; +pub mod vector_search_traversal; + +pub use base_vector_resources::*; +pub use document_resource::*; +pub use map_resource::*; +pub use vector_resource::*; +pub use vector_resource_extensions::*; +pub use vector_resource_search::*; +pub use vector_resource_types::*; +pub use vector_search_traversal::*; diff --git a/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource.rs new file mode 100644 index 000000000..e20518c4d --- /dev/null +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource.rs @@ -0,0 +1,595 @@ +pub use super::vector_resource_search::VectorResourceSearch; +use super::OrderedVectorResource; +use crate::data_tags::DataTagIndex; +#[cfg(feature = "native-http")] +use crate::embedding_generator::EmbeddingGenerator; +#[cfg(feature = "native-http")] +use crate::embedding_generator::RemoteEmbeddingGenerator; +use crate::embeddings::Embedding; +use crate::embeddings::MAX_EMBEDDING_STRING_SIZE; +use crate::metadata_index::MetadataIndex; +use crate::model_type::EmbeddingModelType; +use crate::resource_errors::VRError; +use crate::shinkai_time::ShinkaiStringTime; +use crate::shinkai_time::ShinkaiTime; +pub use crate::source::VRSource; +use crate::utils::{hash_string, random_string}; +use crate::vector_resource::base_vector_resources::VRBaseType; +pub use crate::vector_resource::vector_resource_types::*; +pub use crate::vector_resource::vector_search_traversal::*; +use async_trait::async_trait; +use blake3::Hash; +use chrono::{DateTime, Utc}; +use std::any::Any; + +#[async_trait] +pub trait VectorResource: Send + Sync + VectorResourceCore + VectorResourceSearch {} + +/// Represents a VectorResource as an abstract trait where new variants can be implemented as structs. +/// `resource_id` is expected to always be unique between different Resources. +#[async_trait] +pub trait VectorResourceCore: Send + Sync { + fn name(&self) -> &str; + fn description(&self) -> Option<&str>; + fn source(&self) -> VRSource; + fn set_name(&mut self, new_name: String); + fn set_description(&mut self, new_description: Option); + fn set_source(&mut self, new_source: VRSource); + fn resource_id(&self) -> &str; + fn set_resource_id(&mut self, id: String); + fn resource_embedding(&self) -> &Embedding; + fn set_resource_embedding(&mut self, embedding: Embedding); + fn resource_base_type(&self) -> VRBaseType; + fn embedding_model_used(&self) -> EmbeddingModelType; + fn set_embedding_model_used(&mut self, model_type: EmbeddingModelType); + fn data_tag_index(&self) -> &DataTagIndex; + fn metadata_index(&self) -> &MetadataIndex; + /// Retrieves an Embedding given its id, at the root level depth. + fn get_embedding(&self, id: String) -> Result; + /// Retrieves all Embeddings at the root level depth of the Vector Resource. + fn get_embeddings(&self) -> Vec; + /// Retrieves a copy of a Node given its id, at the root level depth. + fn get_node(&self, id: String) -> Result; + /// Retrieves copies of all Nodes at the root level of the Vector Resource + fn get_nodes(&self) -> Vec; + /// Returns the merkle root of the Vector Resource (if it is not None). + fn get_merkle_root(&self) -> Result; + /// Sets the merkle root of the Vector Resource, errors if provided hash is not a Blake3 hash. + fn set_merkle_root(&mut self, merkle_hash: String) -> Result<(), VRError>; + /// Insert a Node/Embedding into the VR using the provided id (root level depth). Overwrites existing data. + fn insert_node( + &mut self, + id: String, + node: Node, + embedding: Embedding, + new_written_datetime: Option>, + ) -> Result<(), VRError>; + /// Replace a Node/Embedding in the VR using the provided id (root level depth). If no new written datetime is provided, generates now. + fn replace_node( + &mut self, + id: String, + node: Node, + embedding: Embedding, + new_written_datetime: Option>, + ) -> Result<(Node, Embedding), VRError>; + /// Remove a Node/Embedding in the VR using the provided id (root level depth) + fn remove_node( + &mut self, + id: String, + new_written_datetime: Option>, + ) -> Result<(Node, Embedding), VRError>; + /// ISO RFC3339 when then Vector Resource was created + fn created_datetime(&self) -> DateTime; + /// ISO RFC3339 when then Vector Resource was last written + fn last_written_datetime(&self) -> DateTime; + /// Set a RFC3339 Datetime of when then Vector Resource was last written + fn set_last_written_datetime(&mut self, datetime: DateTime); + // Note we cannot add from_json in the trait due to trait object limitations + fn to_json(&self) -> Result; + // Convert the VectorResource into a &dyn Any + fn as_any(&self) -> &dyn Any; + // Convert the VectorResource into a &dyn Any + fn as_any_mut(&mut self) -> &mut dyn Any; + //// Attempts to cast the VectorResource into an OrderedVectorResource. Fails if + /// the struct does not support the OrderedVectorResource trait. + fn as_ordered_vector_resource(&self) -> Result<&dyn OrderedVectorResource, VRError>; + /// Attempts to cast the VectorResource into an mut OrderedVectorResource. Fails if + /// the struct does not support the OrderedVectorResource trait. + fn as_ordered_vector_resource_mut(&mut self) -> Result<&mut dyn OrderedVectorResource, VRError>; + + /// Returns the size of the whole Vector Resource after being encoded as JSON. + /// Of note, encoding as JSON ensures we get accurate numbers when the user transfers/saves the VR to file. + fn encoded_size(&self) -> Result { + let json = self.to_json()?; + Ok(json.as_bytes().len()) + } + + /// Checks if the Vector Resource is merkelized. Some VRs may opt to not be merkelized + /// for specific use cases or for extremely large datasets where maximum performance is required. + fn is_merkelized(&self) -> bool { + self.get_merkle_root().is_ok() + } + + /// Updates the merkle root of the Vector Resource by hashing the merkle hashes of all root nodes. + /// Errors if the Vector Resource is not merkelized. + fn update_merkle_root(&mut self) -> Result<(), VRError> { + if !self.is_merkelized() { + return Err(VRError::VectorResourceIsNotMerkelized(self.reference_string())); + } + + let nodes = self.get_nodes(); + let mut hashes = Vec::new(); + + // Collect the merkle hash of each node + for node in nodes { + let node_hash = node.get_merkle_hash()?; + hashes.push(node_hash); + } + + // Combine the hashes to create a root hash + let combined_hashes = hashes.join(""); + let root_hash = blake3::hash(combined_hashes.as_bytes()); + + // Set the new merkle root hash + self.set_merkle_root(root_hash.to_hex().to_string()) + } + + #[cfg(feature = "native-http")] + /// Regenerates and updates the resource's embedding using the name/description/source + /// and the provided keywords. + async fn update_resource_embedding( + &mut self, + generator: &dyn EmbeddingGenerator, + keywords: Vec, + ) -> Result<(), VRError> { + let formatted = self.format_embedding_string(keywords); + let new_embedding = generator + .generate_embedding_shorten_input(&formatted, "RE", MAX_EMBEDDING_STRING_SIZE as u64) + .await?; + self.set_resource_embedding(new_embedding); + Ok(()) + } + + #[cfg(feature = "native-http")] + /// Regenerates and updates the resource's embedding using the name/description/source + /// and the provided keywords. + fn update_resource_embedding_blocking( + &mut self, + generator: &dyn EmbeddingGenerator, + keywords: Vec, + ) -> Result<(), VRError> { + let formatted = self.format_embedding_string(keywords); + let new_embedding = generator.generate_embedding_blocking(&formatted, "RE")?; + self.set_resource_embedding(new_embedding); + Ok(()) + } + + /// Updates the last_written_datetime to the current time + fn update_last_written_to_now(&mut self) { + let current_time = ShinkaiTime::generate_time_now(); + self.set_last_written_datetime(current_time); + } + + /// Generates a random new id string and sets it as the resource_id. + /// Used in the VectorFS to guarantee each VR stored has a unique id. + fn generate_and_update_resource_id(&mut self) { + let mut data_string = ShinkaiTime::generate_time_now().to_rfc3339(); + data_string = data_string + self.resource_id() + self.name() + &random_string(); + let hashed_string = hash_string(&data_string); + self.set_resource_id(hashed_string) + } + + #[cfg(feature = "native-http")] + /// Initializes a `RemoteEmbeddingGenerator` that is compatible with this VectorResource + /// (targets the same model and interface for embedding generation). Of note, you need + /// to make sure the api_url/api_key match for the model used. + fn initialize_compatible_embeddings_generator( + &self, + api_url: &str, + api_key: Option, + ) -> RemoteEmbeddingGenerator { + RemoteEmbeddingGenerator::new(self.embedding_model_used(), api_url, api_key) + } + + /// Generates a formatted string that represents the text to be used for + /// generating the resource embedding. + fn format_embedding_string(&self, keywords: Vec) -> String { + let name = format!("Name: {}", self.name()); + let desc = self + .description() + .map(|description| format!(", Description: {}", description)) + .unwrap_or_default(); + let source_string = format!("Source: {}", self.source().format_source_string()); + + // Take keywords until we hit an upper 500 character cap to ensure + // we do not go past the embedding LLM context window. + let pre_keyword_length = name.len() + desc.len() + source_string.len(); + let mut keyword_string = String::new(); + for phrase in keywords { + if pre_keyword_length + keyword_string.len() + phrase.len() <= MAX_EMBEDDING_STRING_SIZE { + keyword_string = format!("{}, {}", keyword_string, phrase); + } + } + + let mut result = format!("{}{}{}, Keywords: [{}]", name, source_string, desc, keyword_string); + if result.len() > MAX_EMBEDDING_STRING_SIZE { + result.truncate(MAX_EMBEDDING_STRING_SIZE); + } + result + } + + /// Returns a "reference string" that uniquely identifies the VectorResource (formatted as: `{name}:::{resource_id}`). + /// This is also used as the unique identifier of the Vector Resource in the VectorFS. + fn reference_string(&self) -> String { + VRHeader::generate_resource_reference_string(self.name().to_string(), self.resource_id().to_string()) + } + + /// Generates a VRHeader out of the VectorResource. + /// Allows specifying a resource_location to identify where the VectorResource is + /// being stored. + fn generate_resource_header(&self) -> VRHeader { + // Fetch list of data tag names from the index + let tag_names = self.data_tag_index().data_tag_names(); + let embedding = self.resource_embedding().clone(); + let metadata_index_keys = self.metadata_index().get_all_metadata_keys(); + let merkle_root = self.get_merkle_root().ok(); + + VRHeader::new( + self.name(), + self.resource_id(), + self.resource_base_type(), + Some(embedding), + tag_names, + self.source(), + self.created_datetime(), + self.last_written_datetime(), + metadata_index_keys, + self.embedding_model_used(), + merkle_root, + ) + } + + /// Validates whether the VectorResource has a valid BaseVectorResourceType by checking its .resource_base_type() + fn is_base_vector_resource(&self) -> Result<(), VRError> { + VRBaseType::is_base_vector_resource(self.resource_base_type()) + } + + /// Retrieves a node and its embedding at any depth, given its path. + /// If the path is invalid at any part, or empty, then method will error. + fn retrieve_node_and_embedding_at_path(&self, path: VRPath) -> Result<(RetrievedNode, Embedding), VRError> { + let results = self._internal_retrieve_node_at_path(path.clone(), None)?; + if results.is_empty() { + return Err(VRError::InvalidVRPath(path)); + } + Ok((results[0].0.clone(), results[0].1.clone())) + } + + /// Retrieves a node at any depth, given its path. + /// If the path is invalid at any part, or empty, then method will error. + fn retrieve_node_at_path(&self, path: VRPath) -> Result { + let (node, _) = self.retrieve_node_and_embedding_at_path(path)?; + Ok(node) + } + + /// Retrieves the embedding of a node at any depth, given its path. + /// If the path is invalid at any part, or empty, then method will error. + fn retrieve_embedding_at_path(&self, path: VRPath) -> Result { + let (_, embedding) = self.retrieve_node_and_embedding_at_path(path)?; + Ok(embedding) + } + + /// Retrieves a node and `proximity_window` number of nodes before/after it, given a path. + /// If the path is invalid at any part, or empty, then method will error. + fn proximity_retrieve_node_at_path( + &self, + path: VRPath, + proximity_window: u64, + ) -> Result, VRError> { + self._internal_retrieve_node_at_path(path.clone(), Some(proximity_window)) + .map(|nodes| nodes.into_iter().map(|(node, _)| node).collect()) + } + + /// Internal method shared by retrieved node at path methods + fn _internal_retrieve_node_at_path( + &self, + path: VRPath, + proximity_window: Option, + ) -> Result, VRError> { + if path.path_ids.is_empty() { + return Err(VRError::InvalidVRPath(path.clone())); + } + // Fetch the node at root depth directly, then iterate through the rest + let mut node = self.get_node(path.path_ids[0].clone())?; + let mut embedding = self.get_embedding(path.path_ids[0].clone())?; + let mut last_resource_header = self.generate_resource_header(); + let mut retrieved_nodes = Vec::new(); + + // Iterate through the path, going into each Vector Resource until end of path + let mut traversed_path = VRPath::from_string(&(String::from("/") + &path.path_ids[0]))?; + for id in path.path_ids.iter().skip(1) { + traversed_path.push(id.to_string()); + match &node.content { + NodeContent::Resource(resource) => { + let resource_obj = resource.as_trait_object(); + last_resource_header = resource_obj.generate_resource_header(); + + // If we have arrived at the final node, then perform node fetching/adding to results + if traversed_path == path { + // If returning proximity, then try to coerce into an OrderedVectorResource and perform proximity get + if let Some(prox_window) = proximity_window { + if let Ok(ord_res) = resource.as_ordered_vector_resource() { + // TODO: Eventually update get_node_and_proximity to also return their embeddings. + // Technically not important, because for now we only use the embedding for non-proximity methods. + let new_ret_nodes = ord_res.get_node_and_proximity(id.clone(), prox_window)?; + retrieved_nodes = new_ret_nodes + .iter() + .map(|ret_node| (ret_node.clone(), embedding.clone())) + .collect(); + } else { + return Err(VRError::InvalidVRBaseType); + } + } + } + embedding = resource_obj.get_embedding(id.clone())?; + node = resource_obj.get_node(id.clone())?; + } + // If we hit a non VR-holding node before the end of the path, then the path is invalid + _ => { + return Err(VRError::InvalidVRPath(path.clone())); + } + } + } + + // If there are no retrieved nodes, then simply add the final node that was at the path + if retrieved_nodes.is_empty() { + retrieved_nodes.push((node, embedding)); + } + + // Convert the results into retrieved nodes + let mut final_nodes = vec![]; + for n in retrieved_nodes { + let mut node_path = path.pop_cloned(); + node_path.push(n.0.id.clone()); + final_nodes.push(( + RetrievedNode::new(n.0, 0.0, last_resource_header.clone(), node_path), + n.1, + )); + } + Ok(final_nodes) + } + + /// Boolean check to see if a node exists at a given path + fn check_node_exists_at_path(&self, path: VRPath) -> bool { + self.retrieve_node_at_path(path).is_ok() + } + + /// Applies a mutator function on a node and its embedding at a given path, thereby enabling updating data within a specific node. + /// If the path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. + fn mutate_node_at_path( + &mut self, + path: VRPath, + mutator: &mut dyn Fn(&mut Node, &mut Embedding) -> Result<(), VRError>, + ) -> Result<(), VRError> { + let current_time = ShinkaiTime::generate_time_now(); + let mut deconstructed_nodes = self._deconstruct_nodes_along_path(path.clone())?; + + // Update last written time for all nodes + for node in deconstructed_nodes.iter_mut() { + let (_, node, _) = node; + node.set_last_written(current_time); + } + + // Apply mutator to the last node + if let Some(last_node) = deconstructed_nodes.last_mut() { + let (_, node, embedding) = last_node; + mutator(node, embedding)?; + } + + let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; + self.replace_node(node_key, node, embedding, Some(current_time))?; + Ok(()) + } + + /// Removes a specific node from the Vector Resource, based on the provided path. Returns removed Node/Embedding. + /// If the path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. + fn remove_node_at_path(&mut self, path: VRPath) -> Result<(Node, Embedding), VRError> { + let current_time = ShinkaiTime::generate_time_now(); + let mut deconstructed_nodes = self._deconstruct_nodes_along_path(path.clone())?; + let removed_node = deconstructed_nodes.pop().ok_or(VRError::InvalidVRPath(path))?; + + // Update last written time for all nodes + for node in deconstructed_nodes.iter_mut() { + let (_, node, _) = node; + node.set_last_written(current_time); + } + + // Rebuild the nodes after removing the target node + if !deconstructed_nodes.is_empty() { + let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; + self.replace_node(node_key, node, embedding, Some(current_time))?; + } + + Ok((removed_node.1, removed_node.2)) + } + + /// Replaces a specific node from the Vector Resource, based on the provided path. Returns removed Node/Embedding. + /// If the path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. + fn replace_node_at_path( + &mut self, + path: VRPath, + new_node: Node, + new_embedding: Embedding, + ) -> Result<(Node, Embedding), VRError> { + let current_time = ShinkaiTime::generate_time_now(); + // Remove the node at the end of the deconstructed nodes + let mut deconstructed_nodes = self._deconstruct_nodes_along_path(path.clone())?; + deconstructed_nodes.pop().ok_or(VRError::InvalidVRPath(path.clone()))?; + + // Insert the new node at the end of the deconstructed nodes + if let Some(key) = path.path_ids.last() { + deconstructed_nodes.push((key.clone(), new_node, new_embedding)); + + // Update last written time for all nodes + for node in deconstructed_nodes.iter_mut() { + let (_, node, _) = node; + node.set_last_written(current_time); + } + + // Rebuild the nodes after replacing the node + let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; + let result = self.replace_node(node_key, node, embedding, Some(current_time))?; + + Ok(result) + } else { + Err(VRError::InvalidVRPath(path.clone())) + } + } + + /// Inserts a node underneath the provided parent_path, using the supplied id. Supports inserting at root level `/`. + /// If the parent_path is invalid at any part, then method will error, and no changes will be applied to the VR. + fn insert_node_at_path( + &mut self, + parent_path: VRPath, + node_to_insert_id: String, + node_to_insert: Node, + node_to_insert_embedding: Embedding, + ) -> Result<(), VRError> { + let current_time = ShinkaiTime::generate_time_now(); + // If inserting at root, just do it directly + if parent_path.path_ids.is_empty() { + self.insert_node( + node_to_insert_id, + node_to_insert, + node_to_insert_embedding, + Some(current_time), + )?; + return Ok(()); + } + // Insert the new node at the end of the deconstructed nodes + let mut deconstructed_nodes = self._deconstruct_nodes_along_path(parent_path.clone())?; + deconstructed_nodes.push((node_to_insert_id, node_to_insert, node_to_insert_embedding)); + + // Update last written time for all nodes + for node in deconstructed_nodes.iter_mut() { + let (_, node, _) = node; + node.set_last_written(current_time); + } + + // Rebuild the nodes after inserting the new node + let (node_key, node, embedding) = self._rebuild_deconstructed_nodes(deconstructed_nodes)?; + self.replace_node(node_key, node, embedding, Some(current_time))?; + Ok(()) + } + + /// Appends a node underneath the provided parent_path if the resource held there implements OrderedVectorResource trait. + /// If the parent_path is invalid at any part then method will error, and no changes will be applied to the VR. + fn append_node_at_path( + &mut self, + parent_path: VRPath, + new_node: Node, + new_embedding: Embedding, + ) -> Result<(), VRError> { + // If the path is root, then immediately insert into self at root path. + // This is required since retrieve_node_at_path() cannot retrieved self as a node and will error. + if parent_path.path_ids.len() == 0 { + let ord_resource = self.as_ordered_vector_resource()?; + return self.insert_node_at_path( + parent_path.clone(), + ord_resource.new_push_node_id(), + new_node, + new_embedding, + ); + } else { + // Get the resource node at parent_path + let mut retrieved_node = self.retrieve_node_at_path(parent_path.clone())?; + if let NodeContent::Resource(resource) = &mut retrieved_node.node.content { + let ord_resource = resource.as_ordered_vector_resource()?; + return self.insert_node_at_path( + parent_path.clone(), + ord_resource.new_push_node_id(), + new_node, + new_embedding, + ); + } + return Err(VRError::InvalidVRPath(parent_path.clone())); + } + } + + /// Pops a node underneath the provided parent_path if the resource held there implements OrderedVectorResource trait. + /// If the parent_path is invalid at any part, or is 0 length, then method will error, and no changes will be applied to the VR. + fn pop_node_at_path(&mut self, parent_path: VRPath) -> Result<(Node, Embedding), VRError> { + // If the path is root, then immediately pop from self at root path to avoid error. + if parent_path.is_empty() { + let ord_resource = self.as_ordered_vector_resource_mut()?; + let node_path = parent_path.push_cloned(ord_resource.last_node_id()); + return self.remove_node_at_path(node_path); + } else { + // Get the resource node at parent_path + let mut retrieved_node = self.retrieve_node_at_path(parent_path.clone())?; + // Check if its a DocumentVectorResource + if let NodeContent::Resource(resource) = &mut retrieved_node.node.content { + let ord_resource = resource.as_ordered_vector_resource_mut()?; + let node_path = parent_path.push_cloned(ord_resource.last_node_id()); + self.remove_node_at_path(node_path.clone()) + } else { + Err(VRError::InvalidVRPath(parent_path.clone())) + } + } + } + + /// Internal method. Given a path, pops out each node along the path in order + /// and returned as a list, including its original key and embedding. + fn _deconstruct_nodes_along_path(&mut self, path: VRPath) -> Result, VRError> { + if path.path_ids.is_empty() { + return Err(VRError::InvalidVRPath(path.clone())); + } + + let first_node = self.get_node(path.path_ids[0].clone())?; + let first_embedding = self.get_embedding(path.path_ids[0].clone())?; + let mut deconstructed_nodes = vec![(path.path_ids[0].clone(), first_node, first_embedding)]; + + for id in path.path_ids.iter().skip(1) { + let last_mut = deconstructed_nodes + .last_mut() + .ok_or(VRError::InvalidVRPath(path.clone()))?; + let (_node_key, ref mut node, ref mut _embedding) = last_mut; + match &mut node.content { + NodeContent::Resource(resource) => { + let (removed_node, removed_embedding) = + resource.as_trait_object_mut().remove_node(id.to_string(), None)?; + deconstructed_nodes.push((id.clone(), removed_node, removed_embedding)); + } + _ => { + if id != path.path_ids.last().ok_or(VRError::InvalidVRPath(path.clone()))? { + return Err(VRError::InvalidVRPath(path.clone())); + } + } + } + } + + Ok(deconstructed_nodes) + } + + /// Internal method. Given a list of deconstructed_nodes, iterate backwards and rebuild them + /// into a single top-level node. + fn _rebuild_deconstructed_nodes( + &mut self, + mut deconstructed_nodes: Vec<(String, Node, Embedding)>, + ) -> Result<(String, Node, Embedding), VRError> { + let mut current_node = deconstructed_nodes.pop().ok_or(VRError::InvalidVRPath(VRPath::new()))?; + for (id, mut node, embedding) in deconstructed_nodes.into_iter().rev() { + if let NodeContent::Resource(resource) = &mut node.content { + // Preserve the last written datetime on the node assigned by prior functions + let current_node_last_written = current_node.1.last_written_datetime; + resource.as_trait_object_mut().insert_node( + current_node.0, + current_node.1, + current_node.2, + Some(current_node_last_written), + )?; + current_node = (id, node, embedding); + } + } + Ok(current_node) + } +} diff --git a/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_extensions.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_extensions.rs new file mode 100644 index 000000000..ff5c2c993 --- /dev/null +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_extensions.rs @@ -0,0 +1,14 @@ +use super::{Node, VectorResource}; +use crate::resource_errors::VRError; + +/// Trait extension which specific Vector Resource types implement that have a guaranteed internal ordering +/// of their nodes, such as DocumentVectorResources. This trait extension enables new +/// capabilities to be implemented, such as append/pop node interfaces, proximity searches, and more. +pub trait OrderedVectorResource: VectorResource { + /// Id of the last node held internally + fn last_node_id(&self) -> String; + /// Id to be used when pushing a new node + fn new_push_node_id(&self) -> String; + /// Attempts to fetch a node (using the provided id) and proximity_window before/after, at root depth + fn get_node_and_proximity(&self, id: String, proximity_window: u64) -> Result, VRError>; +} diff --git a/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_search.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_search.rs new file mode 100644 index 000000000..139819a23 --- /dev/null +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_search.rs @@ -0,0 +1,635 @@ +use super::VectorResourceCore; +#[cfg(feature = "native-http")] +use crate::embedding_generator::EmbeddingGenerator; +#[cfg(feature = "native-http")] +use crate::embedding_generator::RemoteEmbeddingGenerator; +use crate::embeddings::Embedding; +use crate::embeddings::MAX_EMBEDDING_STRING_SIZE; +use crate::model_type::EmbeddingModelType; +use crate::resource_errors::VRError; +pub use crate::source::VRSource; +pub use crate::vector_resource::vector_resource_types::*; +pub use crate::vector_resource::vector_search_traversal::*; +use async_trait::async_trait; +use rand::rngs::StdRng; +use rand::seq::IteratorRandom; +use rand::SeedableRng; +use std::collections::HashMap; + +#[async_trait] +pub trait VectorResourceSearch: VectorResourceCore { + #[cfg(feature = "native-http")] + /// Fetches percent_to_verify (between 0.0 - 1.0) of random nodes from within the VectorResource + /// and validates that said node's included embeddings in the VectorResource are correct. + async fn verify_internal_embeddings_coherence( + &self, + generator: &dyn EmbeddingGenerator, + percent_to_verify: f32, + ) -> Result { + let all_nodes = self.retrieve_nodes_exhaustive(None, false); + let percent_to_verify = percent_to_verify.max(0.0).min(1.0); + let num_to_verify = (all_nodes.len() as f32 * percent_to_verify).ceil() as usize; + // Ensure at least one node is verified always + let num_to_verify = num_to_verify.max(1); + + // Filter out any non-text nodes, and randomly select from these nodes for the list of nodes to be verified + // TODO: Later on also allow VectorResource nodes, and re-generate the resource embedding + verify it. + let mut rng = StdRng::from_entropy(); + let nodes_to_verify: Vec<_> = all_nodes + .into_iter() + .filter(|node| matches!(node.node.content, NodeContent::Text(_))) + .choose_multiple(&mut rng, num_to_verify); + + for ret_node in nodes_to_verify { + let embedding = self.retrieve_embedding_at_path(ret_node.retrieval_path)?; + match ret_node.node.content { + NodeContent::Text(text) => { + let regenerated_embedding = generator.generate_embedding_default(&text).await?; + // We check if the score of the regenerated embedding is ever below 0.99 (some leeway in case some models are not 100% deterministic) + let score = embedding.cosine_similarity(®enerated_embedding) < 0.99; + if score { + return Ok(false); + } + } + _ => return Err(VRError::InvalidNodeType("Node must hold Text content".to_string())), + } + } + + Ok(true) + } + + /// Returns every single node at any depth in the whole Vector Resource, including the Vector Resources nodes themselves, + /// and the Nodes they hold additionally. If a starting_path is provided then fetches all nodes from there, + /// else starts at root. If resources_only is true, only Vector Resources are returned. + fn retrieve_nodes_exhaustive(&self, starting_path: Option, resources_only: bool) -> Vec { + let empty_embedding = Embedding::new("", vec![]); + let mut nodes = self.vector_search_customized( + empty_embedding, + 0, + TraversalMethod::UnscoredAllNodes, + &vec![], + starting_path, + ); + + if resources_only { + nodes.retain(|node| matches!(node.node.content, NodeContent::Resource(_))); + } + + nodes + } + + /// Prints all nodes and their paths to easily/quickly examine a Vector Resource. + /// This is exhaustive and can begin from any starting_path. + /// `shorten_data` - Cuts the string content short to improve readability. + /// `resources_only` - Only prints Vector Resources + fn print_all_nodes_exhaustive(&self, starting_path: Option, shorten_data: bool, resources_only: bool) { + let nodes = self.retrieve_nodes_exhaustive(starting_path, resources_only); + for node in nodes { + let path = node.retrieval_path.format_to_string(); + let data = match &node.node.content { + NodeContent::Text(s) => { + if shorten_data && s.chars().count() > 25 { + s.chars().take(25).collect::() + "..." + } else { + s.to_string() + } + } + NodeContent::Resource(resource) => { + println!(""); + format!( + "<{}> - {} Nodes Held Inside", + resource.as_trait_object().name(), + resource.as_trait_object().get_embeddings().len() + ) + } + NodeContent::ExternalContent(external_content) => { + println!(""); + format!("External: {}", external_content) + } + + NodeContent::VRHeader(header) => { + println!(""); + format!("Header For Vector Resource: {}", header.reference_string()) + } + }; + // Adding merkle hash if it exists to output string + let mut merkle_hash = String::new(); + if let Ok(hash) = node.node.get_merkle_hash() { + if hash.chars().count() > 15 { + merkle_hash = hash.chars().take(15).collect::() + "..." + } else { + merkle_hash = hash.to_string() + } + } + if merkle_hash.len() == 0 { + println!("{}: {}", path, data); + } else { + println!("{}: {} | Merkle Hash: {}", path, data, merkle_hash); + } + } + } + + #[cfg(feature = "native-http")] + /// Performs a dynamic vector search that returns the most similar nodes based on the input query String. + /// Dynamic Vector Searches support internal VectorResources with different Embedding models by automatically generating + /// the query Embedding from the input_query for each model. Dynamic Vector Searches are always Exhaustive. + async fn dynamic_vector_search( + &self, + input_query: String, + num_of_results: u64, + embedding_generator: RemoteEmbeddingGenerator, + ) -> Result, VRError> { + self.dynamic_vector_search_customized( + input_query, + num_of_results, + &vec![TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring)], + None, + embedding_generator, + ) + .await + } + + #[cfg(feature = "native-http")] + /// Performs a dynamic vector search that returns the most similar nodes based on the input query String. + /// Dynamic Vector Searches support internal VectorResources with different Embedding models by automatically generating + /// the query Embedding from the input_query for each model. Dynamic Vector Searches are always Exhaustive. + /// NOTE: Not all traversal_options (ex. UntilDepth) will work with Dynamic Vector Searches. + async fn dynamic_vector_search_customized( + &self, + input_query: String, + num_of_results: u64, + traversal_options: &Vec, + starting_path: Option, + embedding_generator: RemoteEmbeddingGenerator, + ) -> Result, VRError> { + // We only traverse 1 level of depth at a time to be able to re-process the input_query as needed + let mut traversal_options = traversal_options.clone(); + traversal_options.push(TraversalOption::UntilDepth(0)); + // Create a hash_map to save the embedding queries generated based on model type + let mut input_query_embeddings: HashMap = HashMap::new(); + + // First manually embedding generate & search the self Vector Resource + let mut query_embedding = embedding_generator + .generate_embedding_shorten_input_default(&input_query, MAX_EMBEDDING_STRING_SIZE as u64) + .await?; + input_query_embeddings.insert(embedding_generator.model_type(), query_embedding.clone()); + let mut latest_returned_results = self.vector_search_customized( + query_embedding, + num_of_results, + TraversalMethod::Exhaustive, + &traversal_options, + starting_path.clone(), + ); + + // Keep looping until we go through all nodes in the Vector Resource while carrying foward the score weighting + // through the deeper levels of the Vector Resource + let mut node_results = vec![]; + while let Some(ret_node) = latest_returned_results.pop() { + match ret_node.node.content { + NodeContent::Resource(ref resource) => { + // Reuse a previously generated query embedding if matching is available + if let Some(embedding) = + input_query_embeddings.get(&resource.as_trait_object().embedding_model_used()) + { + query_embedding = embedding.clone(); + } + // If a new embedding model is found for this resource, then initialize a new generator & generate the embedding + else { + let new_generator = resource.as_trait_object().initialize_compatible_embeddings_generator( + &embedding_generator.api_url, + embedding_generator.api_key.clone(), + ); + query_embedding = embedding_generator + .generate_embedding_shorten_input_default(&input_query, MAX_EMBEDDING_STRING_SIZE as u64) + .await?; + input_query_embeddings.insert(new_generator.model_type(), query_embedding.clone()); + } + + // Call vector_search() on the resource to get all the next depth Nodes from it + let new_results = resource.as_trait_object().vector_search_customized( + query_embedding, + num_of_results, + TraversalMethod::Exhaustive, + &traversal_options, + starting_path.clone(), + ); + // Take into account current resource score, then push the new results to latest_returned_results to be further processed + if let Some(ScoringMode::HierarchicalAverageScoring) = + traversal_options.get_set_scoring_mode_option() + { + // Average resource's score into the retrieved results scores, then push them to latest_returned_results + for result in new_results { + let mut updated_result = result.clone(); + updated_result.score = + vec![updated_result.score, ret_node.score].iter().sum::() / 2 as f32; + latest_returned_results.push(updated_result) + } + } + } + _ => { + // For any non-Vector Resource nodes, simply push them into the results + node_results.push(ret_node); + } + } + } + + // Now that we have all of the node results, sort them efficiently and return the expected number of results + let final_results = RetrievedNode::sort_by_score(&node_results, num_of_results); + + Ok(final_results) + } + + /// Performs a vector search that returns the most similar nodes based on the query with + /// default traversal method/options. + fn vector_search(&self, query: Embedding, num_of_results: u64) -> Vec { + self.vector_search_customized( + query, + num_of_results, + TraversalMethod::Exhaustive, + &vec![TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring)], + None, + ) + } + + /// Performs a vector search that returns the most similar nodes based on the query. + /// The input traversal_method/options allows the developer to choose how the search moves through the levels. + /// The optional starting_path allows the developer to choose to start searching from a Vector Resource + /// held internally at a specific path. + fn vector_search_customized( + &self, + query: Embedding, + num_of_results: u64, + traversal_method: TraversalMethod, + traversal_options: &Vec, + starting_path: Option, + ) -> Vec { + // Setup the root VRHeader that will be attached to all RetrievedNodes + let root_vr_header = self.generate_resource_header(); + + // Only retrieve inner path if it exists and is not root + if let Some(path) = starting_path { + if path != VRPath::root() { + match self.retrieve_node_at_path(path.clone()) { + Ok(ret_node) => { + if let NodeContent::Resource(resource) = ret_node.node.content.clone() { + return resource.as_trait_object()._vector_search_customized_core( + query, + num_of_results, + traversal_method, + traversal_options, + vec![], + path, + root_vr_header.clone(), + ); + } + } + Err(_) => {} + } + } + } + // Perform the vector search and continue forward + let mut results = self._vector_search_customized_core( + query.clone(), + num_of_results, + traversal_method.clone(), + traversal_options, + vec![], + VRPath::new(), + root_vr_header, + ); + + // After getting all results from the vector search, perform final filtering + // Check if we need to cut results according to tolerance range + let tolerance_range_option = traversal_options.iter().find_map(|option| { + if let TraversalOption::ToleranceRangeResults(range) = option { + Some(*range) + } else { + None + } + }); + if let Some(tolerance_range) = tolerance_range_option { + results = self._tolerance_range_results(tolerance_range, &results); + } + + // Check if we need to cut results according to the minimum score + let min_score_option = traversal_options.iter().find_map(|option| { + if let TraversalOption::MinimumScore(score) = option { + Some(*score) + } else { + None + } + }); + if let Some(min_score) = min_score_option { + results = results + .into_iter() + .filter(|ret_node| ret_node.score >= min_score) + .collect(); + } + + // Check if we need to adjust based on the ResultsMode + if let Some(result_mode) = traversal_options.get_set_results_mode_option() { + if let ResultsMode::ProximitySearch(proximity_window) = result_mode { + if let Some(first_result) = results.first() { + if let Ok(new_results) = + self.proximity_retrieve_node_at_path(first_result.retrieval_path.clone(), proximity_window) + { + results = new_results + } else { + // If proximity retrieval fails, most likely due to path not pointing to OrderedVectorResource, + // then just return the single highest scored node as the failure case when using proximity search. + results = vec![first_result.clone()] + } + } + } + } + + // Check if we are using traversal method unscored all nodes + if traversal_method != TraversalMethod::UnscoredAllNodes { + results.truncate(num_of_results as usize); + } + + results + } + + /// Internal method which is used to keep track of traversal info + fn _vector_search_customized_core( + &self, + query: Embedding, + num_of_results: u64, + traversal_method: TraversalMethod, + traversal_options: &Vec, + hierarchical_scores: Vec, + traversal_path: VRPath, + root_vr_header: VRHeader, + ) -> Vec { + // First we fetch the embeddings we want to score + let mut embeddings_to_score = vec![]; + // Check for syntactic search prefilter mode + let syntactic_search_option = traversal_options.iter().find_map(|option| match option { + TraversalOption::SetPrefilterMode(PrefilterMode::SyntacticVectorSearch(data_tags)) => { + Some(data_tags.clone()) + } + _ => None, + }); + if let Some(data_tag_names) = syntactic_search_option { + // If SyntacticVectorSearch is in traversal_options, fetch nodes with matching data tags + let ids = self._syntactic_search_id_fetch(&data_tag_names); + for id in ids { + if let Ok(embedding) = self.get_embedding(id) { + embeddings_to_score.push(embedding); + } + } + } else { + // If SyntacticVectorSearch is not in traversal_options, get all embeddings + embeddings_to_score = self.get_embeddings(); + } + + // Score embeddings based on traversal method + let mut score_num_of_results = num_of_results; + let mut scores = vec![]; + match traversal_method { + // Score all if exhaustive + TraversalMethod::Exhaustive => { + score_num_of_results = embeddings_to_score.len() as u64; + scores = query.score_similarities(&embeddings_to_score, score_num_of_results); + } + // Fake score all as 0 if unscored exhaustive + TraversalMethod::UnscoredAllNodes => { + scores = embeddings_to_score + .iter() + .map(|embedding| (0.0, embedding.id.clone())) + .collect(); + } + // Else score as normal + _ => { + scores = query.score_similarities(&embeddings_to_score, score_num_of_results); + } + } + + self._order_vector_search_results( + scores, + query, + num_of_results, + traversal_method, + traversal_options, + hierarchical_scores, + traversal_path, + root_vr_header, + ) + } + + /// Internal method that orders all scores, and importantly traverses into any nodes holding further BaseVectorResources. + fn _order_vector_search_results( + &self, + scores: Vec<(f32, String)>, + query: Embedding, + num_of_results: u64, + traversal_method: TraversalMethod, + traversal_options: &Vec, + hierarchical_scores: Vec, + traversal_path: VRPath, + root_vr_header: VRHeader, + ) -> Vec { + let mut current_level_results: Vec = vec![]; + let mut vector_resource_count = 0; + let mut query = query.clone(); + + for (score, id) in scores { + let mut skip_traversing_deeper = false; + if let Ok(node) = self.get_node(id.clone()) { + // Perform validations based on Filter Mode + let filter_mode = traversal_options.get_set_filter_mode_option(); + if let Some(FilterMode::ContainsAnyMetadataKeyValues(kv_pairs)) = filter_mode.clone() { + if !FilterMode::node_metadata_any_check(&node, &kv_pairs) { + continue; + } + } + if let Some(FilterMode::ContainsAllMetadataKeyValues(kv_pairs)) = filter_mode { + if !FilterMode::node_metadata_all_check(&node, &kv_pairs) { + continue; + } + } + // Perform validations related to node content type + if let NodeContent::Resource(node_resource) = node.content.clone() { + // Keep track for later sorting efficiency + vector_resource_count += 1; + + // If traversal option includes UntilDepth and we've reached the right level + // Don't recurse any deeper, just return current Node with BaseVectorResource + if let Some(d) = traversal_options.get_until_depth_option() { + if d == traversal_path.depth_inclusive() { + let ret_node = RetrievedNode { + node: node.clone(), + score, + resource_header: root_vr_header.clone(), + retrieval_path: traversal_path.clone(), + }; + current_level_results.push(ret_node); + skip_traversing_deeper = true; + } + } + + // If node Resource does not have same base type as LimitTraversalToType then + // then skip going deeper into it + if let Some(base_type) = traversal_options.get_limit_traversal_to_type_option() { + if &node_resource.resource_base_type() != base_type { + skip_traversing_deeper = true; + } + } + + // If node does not pass the validation check then skip going deeper into it + if let Some((validation_func, hash_map)) = + traversal_options.get_limit_traversal_by_validation_with_map_option() + { + let node_path = traversal_path.push_cloned(id.clone()); + if !validation_func(&node, &node_path, hash_map) { + skip_traversing_deeper = true; + } + } + } + if skip_traversing_deeper { + continue; + } + + let results = self._recursive_data_extraction( + node.clone(), + score, + query.clone(), + num_of_results, + traversal_method.clone(), + traversal_options, + hierarchical_scores.clone(), + traversal_path.clone(), + root_vr_header.clone(), + ); + current_level_results.extend(results); + } + } + + // If at least one vector resource exists in the Nodes then re-sort + // after fetching deeper level results to ensure ordering is correct + if vector_resource_count >= 1 && traversal_method != TraversalMethod::UnscoredAllNodes { + return RetrievedNode::sort_by_score(¤t_level_results, num_of_results); + } + // Otherwise just return 1st level results + current_level_results + } + + /// Internal method for recursing into deeper levels of Vector Resources + fn _recursive_data_extraction( + &self, + node: Node, + score: f32, + query: Embedding, + num_of_results: u64, + traversal_method: TraversalMethod, + traversal_options: &Vec, + hierarchical_scores: Vec, + traversal_path: VRPath, + root_vr_header: VRHeader, + ) -> Vec { + let mut current_level_results: Vec = vec![]; + // Concat the current score into a new hierarchical scores Vec before moving forward + let new_hierarchical_scores = [&hierarchical_scores[..], &[score]].concat(); + // Create a new traversal path with the node id + let new_traversal_path = traversal_path.push_cloned(node.id.clone()); + + match &node.content { + NodeContent::Resource(resource) => { + // If no data tag names provided, it means we are doing a normal vector search + let sub_results = resource.as_trait_object()._vector_search_customized_core( + query.clone(), + num_of_results, + traversal_method.clone(), + traversal_options, + new_hierarchical_scores, + new_traversal_path.clone(), + root_vr_header.clone(), + ); + + // If traversing with UnscoredAllNodes, include the Vector Resource + // nodes as well in the results, prepended before their nodes + // held inside + if traversal_method == TraversalMethod::UnscoredAllNodes { + current_level_results.push(RetrievedNode { + node: node.clone(), + score, + resource_header: root_vr_header.clone(), + retrieval_path: new_traversal_path, + }); + } + + current_level_results.extend(sub_results); + } + _ => { + let mut score = score; + for option in traversal_options { + if let TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring) = option { + score = new_hierarchical_scores.iter().sum::() / new_hierarchical_scores.len() as f32; + break; + } + } + current_level_results.push(RetrievedNode { + node: node.clone(), + score, + resource_header: root_vr_header.clone(), + retrieval_path: new_traversal_path, + }); + } + } + current_level_results + } + + /// Ease-of-use function for performing a syntactic vector search. Uses exhaustive traversal and hierarchical average scoring. + /// A syntactic vector search efficiently pre-filters all Nodes held internally to a subset that matches the provided list of data tag names. + fn syntactic_vector_search( + &self, + query: Embedding, + num_of_results: u64, + data_tag_names: &Vec, + ) -> Vec { + self.vector_search_customized( + query, + num_of_results, + TraversalMethod::Exhaustive, + &vec![ + TraversalOption::SetScoringMode(ScoringMode::HierarchicalAverageScoring), + TraversalOption::SetPrefilterMode(PrefilterMode::SyntacticVectorSearch(data_tag_names.clone())), + ], + None, + ) + } + + /// Returns the most similar nodes within a specific range of the provided top similarity score. + fn _tolerance_range_results(&self, tolerance_range: f32, results: &Vec) -> Vec { + // Calculate the top similarity score + let top_similarity_score = results.first().map_or(0.0, |ret_node| ret_node.score); + + // Clamp the tolerance_range to be between 0 and 1 + let tolerance_range = tolerance_range.max(0.0).min(1.0); + + // Calculate the range of acceptable similarity scores + let lower_bound = top_similarity_score * (1.0 - tolerance_range); + + // Filter the results to only include those within the range of the top similarity score + let mut filtered_results = Vec::new(); + for ret_node in results { + if ret_node.score >= lower_bound && ret_node.score <= top_similarity_score { + filtered_results.push(ret_node.clone()); + } + } + + filtered_results + } + + /// Internal method to fetch all node ids for syntactic searches + fn _syntactic_search_id_fetch(&self, data_tag_names: &Vec) -> Vec { + let mut ids = vec![]; + for name in data_tag_names { + if let Some(node_ids) = self.data_tag_index().get_node_ids(&name) { + ids.extend(node_ids.iter().map(|id| id.to_string())); + } + } + ids + } +} diff --git a/shinkai-libs/shinkai-vector-resources/src/vector_resource_types.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_types.rs similarity index 63% rename from shinkai-libs/shinkai-vector-resources/src/vector_resource_types.rs rename to shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_types.rs index 5ea737de4..ffc4d72c3 100644 --- a/shinkai-libs/shinkai-vector-resources/src/vector_resource_types.rs +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_resource_types.rs @@ -1,23 +1,23 @@ -use super::base_vector_resources::BaseVectorResource; -use crate::base_vector_resources::VRBaseType; use crate::embeddings::Embedding; use crate::model_type::EmbeddingModelType; use crate::resource_errors::VRError; -use crate::shinkai_time::ShinkaiTime; -use crate::source::VRLocation; +use crate::shinkai_time::{ShinkaiStringTime, ShinkaiTime}; pub use crate::source::{ DocumentFileType, ImageFileType, SourceFileReference, SourceFileType, SourceReference, VRSource, }; -use crate::vector_resource::VectorResource; +use crate::vector_resource::base_vector_resources::{BaseVectorResource, VRBaseType}; +use blake3::hash; +use chrono::{DateTime, Utc}; use ordered_float::NotNan; +use serde::{Deserialize, Deserializer}; +use serde::{Serialize, Serializer}; use std::collections::HashMap; use std::fmt; use std::hash::{Hash, Hasher}; -/// A node that was retrieved from a search. -/// Includes extra data like the resource_header of the resource it was from -/// and the similarity score from the vector search. Resource header is especially -/// helpful when you have multiple layers of VectorResources inside of each other. +/// A node that was retrieved from inside of a Vector Resource. Includes extra data like the retrieval path +/// and the similarity score from the vector search. The resource_header is the VRHeader from the root +/// Vector Resource the RetrievedNode is from. #[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] pub struct RetrievedNode { pub node: Node, @@ -49,7 +49,22 @@ impl RetrievedNode { let scores: Vec<(NotNan, String)> = retrieved_data .into_iter() .map(|node| { - let ref_key = node.resource_header.reference_string().clone(); + let ref_key = if let Ok(hash) = node.node.get_merkle_hash() { + format!( + "{}-{}-{}-{}", + hash, + node.retrieval_path, + node.node.last_written_datetime.to_rfc3339(), + node.score + ) + } else { + format!( + "{}-{}-{}", + node.retrieval_path, + node.node.last_written_datetime.to_rfc3339(), + node.score + ) + }; let id_ref_key = format!("{}-{}", node.node.id.clone(), ref_key); nodes.insert(id_ref_key.clone(), node.clone()); (NotNan::new(nodes[&id_ref_key].score).unwrap(), id_ref_key) @@ -62,7 +77,7 @@ impl RetrievedNode { // Map the sorted_scores back to a vector of RetrievedNode let sorted_data: Vec = sorted_scores .into_iter() - .map(|(_, id_db_key)| nodes[&id_db_key].clone()) + .map(|(_, id_ref_key)| nodes[&id_ref_key].clone()) .collect(); sorted_data @@ -116,7 +131,7 @@ impl RetrievedNode { return None; } - let data_string = self.node.get_text_content().ok()?; + let data_string = self.node.get_text_content().ok()?.to_string(); let data_length = max_characters - base_length; let data_string = if data_string.len() > data_length { @@ -158,7 +173,8 @@ pub struct Node { pub content: NodeContent, pub metadata: Option>, pub data_tag_names: Vec, - pub last_modified_datetime: String, + pub last_written_datetime: DateTime, + pub merkle_hash: Option, } impl Node { @@ -171,13 +187,16 @@ impl Node { ) -> Self { let current_time = ShinkaiTime::generate_time_now(); - Self { + let mut node = Self { id, content: NodeContent::Text(text.to_string()), metadata, data_tag_names: data_tag_names.clone(), - last_modified_datetime: current_time, - } + last_written_datetime: current_time, + merkle_hash: None, + }; + node._generate_merkle_hash(); + node } /// Create a new text-holding Node with a provided u64 id, which gets converted to string internally @@ -197,13 +216,17 @@ impl Node { metadata: Option>, ) -> Self { let current_time = ShinkaiTime::generate_time_now(); - Node { + let node = Node { id: id, content: NodeContent::Resource(vector_resource.clone()), metadata: metadata, data_tag_names: vector_resource.as_trait_object().data_tag_index().data_tag_names(), - last_modified_datetime: current_time, - } + last_written_datetime: current_time, + merkle_hash: None, + }; + + node._generate_merkle_hash(); + node } /// Create a new BaseVectorResource-holding Node with a provided u64 id, which gets converted to string internally @@ -222,13 +245,17 @@ impl Node { metadata: Option>, ) -> Self { let current_time = ShinkaiTime::generate_time_now(); - Node { + let node = Node { id, content: NodeContent::ExternalContent(external_content.clone()), metadata, data_tag_names: vec![], - last_modified_datetime: current_time, - } + last_written_datetime: current_time, + merkle_hash: None, + }; + + node._generate_merkle_hash(); + node } /// Create a new ExternalContent-holding Node with a provided u64 id, which gets converted to string internally @@ -249,13 +276,17 @@ impl Node { ) -> Self { let current_time = ShinkaiTime::generate_time_now(); - Self { + let node = Self { id, content: NodeContent::VRHeader(vr_header.clone()), metadata, data_tag_names: data_tag_names.clone(), - last_modified_datetime: current_time, - } + last_written_datetime: current_time, + merkle_hash: None, + }; + + node._generate_merkle_hash(); + node } /// Create a new VRHeader-holding Node with a provided u64 id, which gets converted to string internally @@ -276,13 +307,17 @@ impl Node { data_tag_names: Vec, ) -> Self { let current_time = ShinkaiTime::generate_time_now(); - Self { + let node = Self { id, content, metadata, data_tag_names, - last_modified_datetime: current_time, - } + last_written_datetime: current_time, + merkle_hash: None, + }; + + node._generate_merkle_hash(); + node } /// Creates a new Node using provided content with a u64 id @@ -295,32 +330,61 @@ impl Node { Self::from_node_content(id.to_string(), content, metadata, data_tag_names) } - /// Updates the last_modified_datetime to the current time - pub fn update_last_modified_to_now(&mut self) { + /// Updates the last_written_datetime to the provided datetime + pub fn set_last_written(&mut self, datetime: DateTime) { + self.last_written_datetime = datetime; + } + + /// Updates the last_written_datetime to the current time + pub fn update_last_written_to_now(&mut self) { let current_time = ShinkaiTime::generate_time_now(); - self.last_modified_datetime = current_time; + self.set_last_written(current_time); } - /// Attempts to return the text content from the Node. Errors if is different type - pub fn get_text_content(&self) -> Result { + /// Attempts to return a reference to the text content from the Node. Errors if is different type + pub fn get_text_content(&self) -> Result<&str, VRError> { match &self.content { - NodeContent::Text(s) => Ok(s.clone()), + NodeContent::Text(s) => Ok(s), _ => Err(VRError::ContentIsNonMatchingType), } } - /// Attempts to return the BaseVectorResource from the Node. Errors if is different type - pub fn get_vector_resource_content(&self) -> Result { + /// Attempts to return a reference to the BaseVectorResource from the Node. Errors if is different type + pub fn get_vector_resource_content(&self) -> Result<&BaseVectorResource, VRError> { match &self.content { - NodeContent::Resource(resource) => Ok(resource.clone()), + NodeContent::Resource(resource) => Ok(resource), _ => Err(VRError::ContentIsNonMatchingType), } } - /// Attempts to return the ExternalContent from the Node. Errors if content is not ExternalContent - pub fn get_external_content(&self) -> Result { + /// Attempts to return a reference to the ExternalContent from the Node. Errors if content is not ExternalContent + pub fn get_external_content(&self) -> Result<&SourceReference, VRError> { match &self.content { - NodeContent::ExternalContent(external_content) => Ok(external_content.clone()), + NodeContent::ExternalContent(external_content) => Ok(external_content), + _ => Err(VRError::ContentIsNonMatchingType), + } + } + + /// Attempts to return a mutable reference to the text content from the Node. Errors if is different type + pub fn get_text_content_mut(&mut self) -> Result<&mut String, VRError> { + match &mut self.content { + NodeContent::Text(s) => Ok(s), + _ => Err(VRError::ContentIsNonMatchingType), + } + } + + /// Attempts to return a mutable reference to the BaseVectorResource from the Node. Errors if is different type + pub fn get_vector_resource_content_mut(&mut self) -> Result<&mut BaseVectorResource, VRError> { + match &mut self.content { + NodeContent::Resource(resource) => Ok(resource), + _ => Err(VRError::ContentIsNonMatchingType), + } + } + + /// Attempts to return a mutable reference to the ExternalContent from the Node. Errors if content is not ExternalContent + pub fn get_external_content_mut(&mut self) -> Result<&mut SourceReference, VRError> { + match &mut self.content { + NodeContent::ExternalContent(external_content) => Ok(external_content), _ => Err(VRError::ContentIsNonMatchingType), } } @@ -348,6 +412,83 @@ impl Node { Some(keys) } } + + /// Gets the Merkle hash of the Node. + /// For VRHeader/Vector Resource nodes, uses the resource merkle_root. + pub fn get_merkle_hash(&self) -> Result { + match &self.content { + NodeContent::VRHeader(header) => header + .resource_merkle_root + .clone() + .ok_or(VRError::MerkleRootNotFound(header.reference_string())), + NodeContent::Resource(resource) => resource.as_trait_object().get_merkle_root(), + _ => self + .merkle_hash + .clone() + .ok_or(VRError::MerkleHashNotFoundInNode(self.id.clone())), + } + } + + /// Updates the Merkle hash of the Node using its current content. + /// This should be called whenever content in the Node is updated internally. + pub fn update_merkle_hash(&mut self) -> Result<(), VRError> { + match &mut self.content { + NodeContent::Resource(resource) => resource.as_trait_object_mut().update_merkle_root(), + _ => { + let new_hash = self._generate_merkle_hash()?; + self.set_merkle_hash(new_hash) + } + } + } + + /// Generates a Merkle hash based on the node content. + /// For VRHeader and BaseVectorResource nodes, returns the resource merkle_root if it is available, + /// however if root == None, then generates a new hash from the content. + pub fn _generate_merkle_hash(&self) -> Result { + match &self.content { + NodeContent::VRHeader(header) => match header.resource_merkle_root.clone() { + Some(hash) => Ok(hash), + None => Self::hash_node_content(&self.content), + }, + NodeContent::Resource(resource) => match resource.as_trait_object().get_merkle_root() { + Ok(hash) => Ok(hash), + Err(_) => Self::hash_node_content(&self.content), + }, + _ => Self::hash_node_content(&self.content), + } + } + + /// Creates a Blake3 hash of the NodeContent. + fn hash_node_content(content: &NodeContent) -> Result { + let json = content.to_json()?; + let content = json.as_bytes(); + let hash = hash(content); + Ok(hash.to_hex().to_string()) + } + + /// Sets the Merkle hash of the Node. + /// For Vector Resource & VRHeader nodes, sets the resource merkle_root. + fn set_merkle_hash(&mut self, merkle_hash: String) -> Result<(), VRError> { + match &mut self.content { + NodeContent::VRHeader(header) => { + header.resource_merkle_root = Some(merkle_hash); + Ok(()) + } + NodeContent::Resource(resource) => { + resource.as_trait_object_mut().set_merkle_root(merkle_hash); + Ok(()) + } + _ => { + self.merkle_hash = Some(merkle_hash); + Ok(()) + } + } + } + + /// Returns the key used for storing the Merkle hash in the metadata. + fn merkle_hash_metadata_key() -> &'static str { + "merkle_hash" + } } /// Contents of a Node @@ -359,6 +500,18 @@ pub enum NodeContent { VRHeader(VRHeader), } +impl NodeContent { + /// Converts the NodeContent to a JSON string + pub fn to_json(&self) -> Result { + serde_json::to_string(self) + } + + /// Creates a NodeContent from a JSON string + pub fn from_json(json: &str) -> Result { + serde_json::from_str(json) + } +} + /// Struct which holds descriptive information about a given Vector Resource. #[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] pub struct VRHeader { @@ -367,12 +520,10 @@ pub struct VRHeader { pub resource_base_type: VRBaseType, pub resource_source: VRSource, pub resource_embedding: Option, - pub resource_created_datetime: String, - pub resource_last_modified_datetime: String, + pub resource_created_datetime: DateTime, + pub resource_last_written_datetime: DateTime, pub resource_embedding_model_used: EmbeddingModelType, - /// The location where the VectorResource is held. Will be None for VectorResources - /// held inside of nodes of an existing VectorResource. - pub resource_location: Option, + pub resource_merkle_root: Option, /// List of data tag names matching in internal nodes pub data_tag_names: Vec, /// List of metadata keys held in internal nodes @@ -388,11 +539,11 @@ impl VRHeader { resource_embedding: Option, data_tag_names: Vec, resource_source: VRSource, - resource_created_datetime: String, - resource_last_modified_datetime: String, - resource_location: Option, + resource_created_datetime: DateTime, + resource_last_written_datetime: DateTime, metadata_index_keys: Vec, resource_embedding_model_used: EmbeddingModelType, + resource_merkle_root: Option, ) -> Self { Self { resource_name: resource_name.to_string(), @@ -402,10 +553,10 @@ impl VRHeader { data_tag_names: data_tag_names, resource_source, resource_created_datetime, - resource_last_modified_datetime, - resource_location, + resource_last_written_datetime, metadata_index_keys, resource_embedding_model_used, + resource_merkle_root, } } @@ -416,11 +567,11 @@ impl VRHeader { resource_embedding: Option, data_tag_names: Vec, resource_source: VRSource, - resource_created_datetime: String, - resource_last_modified_datetime: String, - resource_location: Option, + resource_created_datetime: DateTime, + resource_last_written_datetime: DateTime, metadata_index_keys: Vec, resource_embedding_model_used: EmbeddingModelType, + resource_merkle_root: Option, ) -> Result { let parts: Vec<&str> = reference_string.split(":::").collect(); if parts.len() != 2 { @@ -437,10 +588,10 @@ impl VRHeader { data_tag_names: data_tag_names, resource_source, resource_created_datetime, - resource_last_modified_datetime, - resource_location, + resource_last_written_datetime, metadata_index_keys, resource_embedding_model_used, + resource_merkle_root, }) } @@ -461,22 +612,34 @@ impl VRHeader { /// A path inside of a Vector Resource to a Node which exists somewhere in the hierarchy. /// Internally the path is made up of an ordered list of Node ids (Int-holding strings for Docs, any string for Maps). -#[derive(Debug, Clone, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[derive(Debug, Clone, PartialEq, Eq)] pub struct VRPath { pub path_ids: Vec, } impl VRPath { - /// Create a new VRPath + /// Create a new VRPath, defaulting to root `/`. + /// Equivalent to VRPath::root(). pub fn new() -> Self { Self { path_ids: vec![] } } - /// Returns if the path is empty (aka pointing at root, `/`) + /// Create a new VRPath at root `/`. + /// Equivalent to VRPath::new(). + pub fn root() -> Self { + Self::new() + } + + /// Returns if the path is empty (aka pointing at root, `/`). Equivalent to `.is_root()` pub fn is_empty(&self) -> bool { self.path_ids.len() == 0 } + /// Returns if the path is pointing at root, `/`. Equivalent to `.is_empty()` + pub fn is_root(&self) -> bool { + self.is_empty() + } + /// Get the depth of the VRPath. Of note, this will return 0 in both cases if /// the path is empty, or if it is in the root path (because depth starts at 0 /// for Vector Resources). This matches the TraversalMethod::UntilDepth interface. @@ -494,9 +657,10 @@ impl VRPath { self.path_ids.len() as u64 } - /// Adds an element to the end of the path_ids - pub fn push(&mut self, element: String) { - self.path_ids.push(element); + /// Adds an id to the end of the VRPath's path_ids. Automatically cleans the id String + /// to remove unsupported characters that would break the path. + pub fn push(&mut self, id: String) { + self.path_ids.push(id); } /// Removes an element from the end of the path_ids @@ -513,10 +677,11 @@ impl VRPath { .ok_or(VRError::InvalidVRPath(self.clone())) } - /// Creates a cloned VRPath and adds an element to the end - pub fn push_cloned(&self, element: String) -> Self { + /// Creates a cloned VRPath and adds an id to the end of the VRPath's path_ids. + /// Automatically cleans the id String to remove unsupported characters that would break the path. + pub fn push_cloned(&self, id: String) -> Self { let mut new_path = self.clone(); - new_path.push(element); + new_path.push(id); new_path } @@ -548,6 +713,12 @@ impl VRPath { pub fn format_to_string(&self) -> String { format!("/{}", self.path_ids.join("/")) } + + /// Cleans an input string to ensure that it does not have any + /// characters which would break a VRPath. + pub fn clean_string(s: &str) -> String { + s.replace(" ", "_").replace("/", "-") + } } impl Hash for VRPath { @@ -561,3 +732,25 @@ impl fmt::Display for VRPath { write!(f, "{}", &self.format_to_string()) } } + +impl Serialize for VRPath { + fn serialize(&self, serializer: S) -> Result + where + S: Serializer, + { + // Convert the VRPath into a string here + let s = self.format_to_string(); + serializer.serialize_str(&s) + } +} + +impl<'de> Deserialize<'de> for VRPath { + fn deserialize(deserializer: D) -> Result + where + D: Deserializer<'de>, + { + // Deserialize the VRPath from a string + let s = String::deserialize(deserializer)?; + VRPath::from_string(&s).map_err(serde::de::Error::custom) + } +} diff --git a/shinkai-libs/shinkai-vector-resources/src/vector_search_traversal.rs b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_search_traversal.rs similarity index 83% rename from shinkai-libs/shinkai-vector-resources/src/vector_search_traversal.rs rename to shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_search_traversal.rs index 8ef9cd7d3..3c2dd5049 100644 --- a/shinkai-libs/shinkai-vector-resources/src/vector_search_traversal.rs +++ b/shinkai-libs/shinkai-vector-resources/src/vector_resource/vector_search_traversal.rs @@ -1,5 +1,7 @@ -use crate::base_vector_resources::VRBaseType; -pub use crate::vector_resource_types::*; +use std::collections::HashMap; + +use crate::vector_resource::base_vector_resources::VRBaseType; +pub use crate::vector_resource::vector_resource_types::*; /// An enum that represents the different traversal approaches /// supported by Vector Searching. In other words these allow the developer to @@ -20,8 +22,6 @@ pub enum TraversalMethod { #[derive(Debug, Clone, PartialEq)] pub enum TraversalOption { - /// Limits traversal into deeper Vector Resources only if they match the provided VRBaseType - LimitTraversalToType(VRBaseType), /// Limits returned result to be within a percentage range (0.0 - 1.0) of the highest scored result. /// For example, you can set a tolerance range of 0.1 which means only nodes with a similarity score /// within 10% of the top result will be returned. @@ -32,6 +32,9 @@ pub enum TraversalOption { /// Will return BaseVectorResource Nodes if they are the highest scored at the specified depth. /// Top/root level starts at 0, and so first level of depth into internal BaseVectorResources is thus 1. UntilDepth(u64), + /// Set a traversal limiting mode, which stops the Vector Search from going deeper into a BaseVectorResource-holding + /// node based on some set condition(s). + SetTraversalLimiting(LimitTraversalMode), /// By default Vector Search scoring only weighs a node based on it's single embedding alone. /// Alternate scoring modes are available which allow weighing a node base on relative scores /// above/below/beside, or otherwise to get potentially higher quality results. @@ -46,6 +49,20 @@ pub enum TraversalOption { SetResultsMode(ResultsMode), } +#[derive(Debug, Clone, PartialEq)] +pub enum LimitTraversalMode { + /// Limits traversal into deeper Vector Resources only if they match the provided VRBaseType + LimitTraversalToType(VRBaseType), + /// Limits traversal by a validation function with an input HashMap. If the validation function returns `true`, the Vector Search will + /// traverse deeper into the Vector Resource-holding Node. + LimitTraversalByValidationWithMap( + ( + fn(&Node, &VRPath, HashMap) -> bool, + HashMap, + ), + ), +} + #[derive(Debug, Clone, PartialEq, Copy)] pub enum ScoringMode { /// While traversing, averages out the score all the way to each final node. In other words, the final score @@ -130,12 +147,18 @@ pub trait TraversalOptionVecExt { fn get_set_prefilter_mode_option(&self) -> Option; fn get_set_filter_mode_option(&self) -> Option; fn get_set_results_mode_option(&self) -> Option; + fn get_limit_traversal_by_validation_with_map_option( + &self, + ) -> Option<( + fn(&Node, &VRPath, HashMap) -> bool, + HashMap, + )>; } impl TraversalOptionVecExt for Vec { fn get_limit_traversal_to_type_option(&self) -> Option<&VRBaseType> { self.iter().find_map(|option| { - if let TraversalOption::LimitTraversalToType(value) = option { + if let TraversalOption::SetTraversalLimiting(LimitTraversalMode::LimitTraversalToType(value)) = option { Some(value) } else { None @@ -143,6 +166,25 @@ impl TraversalOptionVecExt for Vec { }) } + fn get_limit_traversal_by_validation_with_map_option( + &self, + ) -> Option<( + fn(&Node, &VRPath, HashMap) -> bool, + HashMap, + )> { + self.iter().find_map(|option| { + if let TraversalOption::SetTraversalLimiting(LimitTraversalMode::LimitTraversalByValidationWithMap(( + validation_func, + hashmap, + ))) = option + { + Some((*validation_func, hashmap.clone())) + } else { + None + } + }) + } + fn get_tolerance_range_results_option(&self) -> Option { self.iter().find_map(|option| { if let TraversalOption::ToleranceRangeResults(value) = option { diff --git a/shinkai-libs/shinkai-vector-resources/tests/unstructured_tests.rs b/shinkai-libs/shinkai-vector-resources/tests/unstructured_tests.rs index 220a0fa2e..46494cb84 100644 --- a/shinkai-libs/shinkai-vector-resources/tests/unstructured_tests.rs +++ b/shinkai-libs/shinkai-vector-resources/tests/unstructured_tests.rs @@ -77,12 +77,12 @@ fn test_unstructured_parse_pdf_vector_resource() { println!( "Score {} - Data: {}", result.score, - result.node.get_text_content().unwrap() + result.node.get_text_content().unwrap().to_string() ); } assert_eq!( "Shinkai Network Manifesto (Early Preview) Robert Kornacki rob@shinkai.com Nicolas Arqueros", - res[0].node.get_text_content().unwrap() + res[0].node.get_text_content().unwrap().to_string() ); } @@ -120,12 +120,12 @@ fn test_unstructured_parse_txt_vector_resource() { println!( "Score {} - Data: {}", result.score, - result.node.get_text_content().unwrap() + result.node.get_text_content().unwrap().to_string() ); } assert_eq!( " Ottawa and its three largest metropolitan areas are Toronto, Montreal, and Vancouver.", - res[0].node.get_text_content().unwrap() + res[0].node.get_text_content().unwrap().to_string() ); } @@ -163,12 +163,12 @@ fn test_unstructured_parse_epub_vector_resource() { println!( "Score {} - Data: {}", result.score, - result.node.get_text_content().unwrap() + result.node.get_text_content().unwrap().to_string() ); } assert_eq!( "This document contains tests which are fundamental to the\naccessibility of Reading Systems for users with disabilities. This is\none test book in a suite of EPUBs for testing accessibility; the other\nbooks cover additional fundamental tests as well as advanced tests.", - res[0].node.get_text_content().unwrap() + res[0].node.get_text_content().unwrap().to_string() ); } @@ -206,12 +206,12 @@ fn test_unstructured_parse_html_vector_resource() { println!( "Score {} - Data: {}", result.score, - result.node.get_text_content().unwrap() + result.node.get_text_content().unwrap().to_string() ); } assert_eq!( "The unstructured library aims to simplify and streamline the preprocessing of structured and unstructured documents for downstream tasks. And what that means is no matter where your data is and no matter what format that data is in, Unstructured’s toolkit will transform and preprocess that data", - res[1].node.get_text_content().unwrap() + res[1].node.get_text_content().unwrap().to_string() ); } diff --git a/shinkai-libs/shinkai-vector-resources/tests/vector_resource_tests.rs b/shinkai-libs/shinkai-vector-resources/tests/vector_resource_tests.rs index 87cbdb385..c16f068ce 100644 --- a/shinkai-libs/shinkai-vector-resources/tests/vector_resource_tests.rs +++ b/shinkai-libs/shinkai-vector-resources/tests/vector_resource_tests.rs @@ -1,29 +1,30 @@ -use shinkai_vector_resources::base_vector_resources::BaseVectorResource; use shinkai_vector_resources::data_tags::DataTag; -use shinkai_vector_resources::document_resource::DocumentVectorResource; use shinkai_vector_resources::embedding_generator::{EmbeddingGenerator, RemoteEmbeddingGenerator}; -use shinkai_vector_resources::map_resource::MapVectorResource; use shinkai_vector_resources::source::VRSource; +use shinkai_vector_resources::vector_resource::document_resource::DocumentVectorResource; +use shinkai_vector_resources::vector_resource::map_resource::MapVectorResource; +use shinkai_vector_resources::vector_resource::BaseVectorResource; +use shinkai_vector_resources::vector_resource::VRPath; use shinkai_vector_resources::vector_resource::{ FilterMode, NodeContent, ResultsMode, ScoringMode, TraversalMethod, TraversalOption, VectorResource, + VectorResourceCore, VectorResourceSearch, }; -use shinkai_vector_resources::vector_resource_types::VRPath; use std::collections::HashMap; #[test] -fn test_remote_embeddings_generation() { +fn test_remote_embedding_generation() { let generator = RemoteEmbeddingGenerator::new_default(); - let dog_embeddings = generator.generate_embedding_default_blocking("dog").unwrap(); - let cat_embeddings = generator.generate_embedding_default_blocking("cat").unwrap(); + let dog_embedding = generator.generate_embedding_default_blocking("dog").unwrap(); + let cat_embedding = generator.generate_embedding_default_blocking("cat").unwrap(); - assert_eq!(dog_embeddings, dog_embeddings); - assert_eq!(cat_embeddings, cat_embeddings); - assert_ne!(dog_embeddings, cat_embeddings); + assert_eq!(dog_embedding, dog_embedding); + assert_eq!(cat_embedding, cat_embedding); + assert_ne!(dog_embedding, cat_embedding); } #[tokio::test] -async fn test_remote_embeddings_generation_async_batched() { +async fn test_remote_embedding_generation_async_batched() { let generator = RemoteEmbeddingGenerator::new_default(); let inputs = vec![ @@ -60,7 +61,8 @@ fn test_manual_resource_vector_search() { let mut doc = DocumentVectorResource::new_empty( "3 Animal Facts", Some("A bunch of facts about animals and wildlife"), - VRSource::new_uri_ref("animalwildlife.com"), + VRSource::new_uri_ref("animalwildlife.com", None), + true, ); doc.set_embedding_model_used(generator.model_type()); // Not required, but good practice @@ -69,16 +71,16 @@ fn test_manual_resource_vector_search() { // Prepare embeddings + data, then add it to the doc let fact1 = "Dogs are creatures with 4 legs that bark."; - let fact1_embeddings = generator.generate_embedding_default_blocking(fact1).unwrap(); + let fact1_embedding = generator.generate_embedding_default_blocking(fact1).unwrap(); let fact2 = "Camels are slow animals with large humps."; - let fact2_embeddings = generator.generate_embedding_default_blocking(fact2).unwrap(); + let fact2_embedding = generator.generate_embedding_default_blocking(fact2).unwrap(); let fact3 = "Seals swim in the ocean."; - let fact3_embeddings = generator.generate_embedding_default_blocking(fact3).unwrap(); - doc.append_text_node(fact1.clone(), None, fact1_embeddings.clone(), &vec![]) + let fact3_embedding = generator.generate_embedding_default_blocking(fact3).unwrap(); + doc.append_text_node(fact1.clone(), None, fact1_embedding.clone(), &vec![]) .unwrap(); - doc.append_text_node(fact2.clone(), None, fact2_embeddings.clone(), &vec![]) + doc.append_text_node(fact2.clone(), None, fact2_embedding.clone(), &vec![]) .unwrap(); - doc.append_text_node(fact3.clone(), None, fact3_embeddings.clone(), &vec![]) + doc.append_text_node(fact3.clone(), None, fact3_embedding.clone(), &vec![]) .unwrap(); // Testing JSON serialization/deserialization @@ -90,17 +92,17 @@ fn test_manual_resource_vector_search() { let query_string = "What animal barks?"; let query_embedding1 = generator.generate_embedding_default_blocking(query_string).unwrap(); let res = doc.vector_search(query_embedding1.clone(), 1); - assert_eq!(fact1.clone(), res[0].node.get_text_content().unwrap()); + assert_eq!(fact1.clone(), res[0].node.get_text_content().unwrap().to_string()); let query_string2 = "What animal is slow?"; let query_embedding2 = generator.generate_embedding_default_blocking(query_string2).unwrap(); let res2 = doc.vector_search(query_embedding2.clone(), 3); - assert_eq!(fact2.clone(), res2[0].node.get_text_content().unwrap()); + assert_eq!(fact2.clone(), res2[0].node.get_text_content().unwrap().to_string()); let query_string3 = "What animal swims in the ocean?"; let query_embedding3 = generator.generate_embedding_default_blocking(query_string3).unwrap(); let res3 = doc.vector_search(query_embedding3, 2); - assert_eq!(fact3.clone(), res3[0].node.get_text_content().unwrap()); + assert_eq!(fact3.clone(), res3[0].node.get_text_content().unwrap().to_string()); // // Create a 2nd resource, a MapVectorResource @@ -108,7 +110,8 @@ fn test_manual_resource_vector_search() { let mut map_resource = MapVectorResource::new_empty( "Tech Facts", Some("A collection of facts about technology"), - VRSource::new_uri_ref("veryrealtechfacts.com"), + VRSource::new_uri_ref("veryrealtechfacts.com", None), + true, ); map_resource.set_embedding_model_used(generator.model_type()); // Not required, but good practice @@ -118,12 +121,12 @@ fn test_manual_resource_vector_search() { // Prepare embeddings + data, then add it to the map resource let fact4 = "Phones provide the power of the internet in your pocket."; - let fact4_embeddings = generator.generate_embedding_default_blocking(fact4).unwrap(); + let fact4_embedding = generator.generate_embedding_default_blocking(fact4).unwrap(); map_resource.insert_text_node( "some_key".to_string(), fact4.to_string(), None, - fact4_embeddings.clone(), + fact4_embedding.clone(), &vec![], ); @@ -138,17 +141,18 @@ fn test_manual_resource_vector_search() { let mut fruit_doc = DocumentVectorResource::new_empty( "Fruit Facts", Some("A collection of facts about fruits"), - VRSource::new_uri_ref("ostensiblyrealfruitfacts.com"), + VRSource::new_uri_ref("ostensiblyrealfruitfacts.com", None), + true, ); fruit_doc.set_embedding_model_used(generator.model_type()); // Not required, but good practice // Prepare embeddings + data, then add it to the fruit doc let fact5 = "Apples are sweet and crunchy."; - let fact5_embeddings = generator.generate_embedding_default_blocking(fact5).unwrap(); + let fact5_embedding = generator.generate_embedding_default_blocking(fact5).unwrap(); let fact6 = "Bananas are tasty and come in their own natural packaging."; - let fact6_embeddings = generator.generate_embedding_default_blocking(fact6).unwrap(); - fruit_doc.append_text_node(fact5.clone(), None, fact5_embeddings.clone(), &vec![]); - fruit_doc.append_text_node(fact6.clone(), None, fact6_embeddings.clone(), &vec![]); + let fact6_embedding = generator.generate_embedding_default_blocking(fact6).unwrap(); + fruit_doc.append_text_node(fact5.clone(), None, fact5_embedding.clone(), &vec![]); + fruit_doc.append_text_node(fact6.clone(), None, fact6_embedding.clone(), &vec![]); // Insert the map resource into the fruit doc let map_resource = BaseVectorResource::from(map_resource); @@ -162,7 +166,7 @@ fn test_manual_resource_vector_search() { // Perform a vector search for data 2 levels lower in the fruit doc to ensure // that vector searches propagate inwards through all resources let res = fruit_doc.vector_search(query_embedding1.clone(), 5); - assert_eq!(fact1.clone(), res[0].node.get_text_content().unwrap()); + assert_eq!(fact1.clone(), res[0].node.get_text_content().unwrap().to_string()); // Perform a VRPath test to validate depth & path formatting assert_eq!("/3/doc_key/1", res[0].format_path_to_string()); assert_eq!(2, res[0].retrieval_path.depth()); @@ -171,7 +175,7 @@ fn test_manual_resource_vector_search() { let query_string = "What can I use to access the internet?"; let query_embedding = generator.generate_embedding_default_blocking(query_string).unwrap(); let res = fruit_doc.vector_search(query_embedding, 5); - assert_eq!(fact4.clone(), res[0].node.get_text_content().unwrap()); + assert_eq!(fact4.clone(), res[0].node.get_text_content().unwrap().to_string()); // Perform a VRPath test to validate depth & path formatting assert_eq!("/3/some_key", res[0].format_path_to_string()); assert_eq!(1, res[0].retrieval_path.depth()); @@ -181,7 +185,7 @@ fn test_manual_resource_vector_search() { let query_string = "What fruit has its own packaging?"; let query_embedding = generator.generate_embedding_default_blocking(query_string).unwrap(); let res = fruit_doc.vector_search(query_embedding.clone(), 10); - assert_eq!(fact6.clone(), res[0].node.get_text_content().unwrap()); + assert_eq!(fact6.clone(), res[0].node.get_text_content().unwrap().to_string()); // Perform a VRPath test to validate depth & path formatting assert_eq!("/2", res[0].format_path_to_string()); assert_eq!(0, res[0].retrieval_path.depth()); @@ -197,7 +201,7 @@ fn test_manual_resource_vector_search() { &vec![TraversalOption::UntilDepth(0)], None, ); - assert_ne!(fact1.clone(), res[0].node.get_text_content().unwrap()); + assert_ne!(fact1.clone(), res[0].node.get_text_content().unwrap().to_string()); assert_eq!(0, res[0].retrieval_path.depth()); // Perform UntilDepth(1) traversal to ensure it is working properly, assert the BaseVectorResource for animals is found (not fact1) let res = fruit_doc.vector_search_customized( @@ -338,8 +342,8 @@ fn test_manual_resource_vector_search() { hm2.insert("common_key".to_string(), "common_value".to_string()); hm2.insert("unique_key2".to_string(), "unique_value2".to_string()); - fruit_doc.append_text_node(fact5.clone(), Some(hm1), fact5_embeddings.clone(), &vec![]); - fruit_doc.append_text_node(fact6.clone(), Some(hm2), fact6_embeddings.clone(), &vec![]); + fruit_doc.append_text_node(fact5.clone(), Some(hm1), fact5_embedding.clone(), &vec![]); + fruit_doc.append_text_node(fact6.clone(), Some(hm2), fact6_embedding.clone(), &vec![]); // Check any filtering, with the common key/value let res = fruit_doc.vector_search_customized( @@ -415,6 +419,15 @@ fn test_manual_resource_vector_search() { assert_eq!(res.node.id, "3"); assert_eq!(res.retrieval_path.to_string(), test_path.to_string()); + // Validate embedding retrieval works by regenerating the embedding from the text + let embedding = new_map_resource.retrieve_embedding_at_path(test_path.clone()).unwrap(); + match res.node.content { + NodeContent::Text(text) => { + let regenerated_embedding = generator.generate_embedding_blocking(&text, "3").unwrap(); + assert_eq!(embedding, regenerated_embedding); + } + _ => panic!("Node content is not text"), + } // Proximity retrieval test let test_path = VRPath::from_string("/doc_key/4/doc_key/3").unwrap(); new_map_resource.print_all_nodes_exhaustive(None, true, false); @@ -451,7 +464,7 @@ fn test_manual_resource_vector_search() { test_path.clone(), "----My new node value----".to_string(), None, - fact6_embeddings.clone(), + fact6_embedding.clone(), vec![], ) .unwrap(); @@ -470,7 +483,7 @@ fn test_manual_resource_vector_search() { test_path.clone(), "----My new node value 2----".to_string(), None, - fact6_embeddings.clone(), + fact6_embedding.clone(), vec![], ) .unwrap(); @@ -504,7 +517,46 @@ fn test_manual_resource_vector_search() { let test_path = VRPath::from_string("/3/doc_key/4").unwrap(); let res = fruit_doc.retrieve_node_at_path(test_path.clone()); assert_eq!(res.is_ok(), false); - fruit_doc.print_all_nodes_exhaustive(None, true, false); + + // + // Merkelization Tests + // + let path = VRPath::from_string("/3/doc_key/2").unwrap(); + let res = fruit_doc.retrieve_node_at_path(path.clone()).unwrap(); + let regened_merkle_hash = res.node._generate_merkle_hash().unwrap(); + assert_eq!(regened_merkle_hash, res.node.get_merkle_hash().unwrap()); + + // Store the original Merkle hash + let original_merkle_hash = fruit_doc.get_merkle_root().unwrap(); + + // Append a node into a Doc Resource + let path = VRPath::from_string("/3/doc_key/").unwrap(); + fruit_doc + .append_text_node_at_path( + path.clone(), + "--- appended text node ---", + None, + new_map_resource.resource_embedding().clone(), + &vec![], + ) + .unwrap(); + + // Retrieve and store the new Merkle hash + let new_merkle_hash = fruit_doc.get_merkle_root().unwrap(); + assert_ne!( + original_merkle_hash, new_merkle_hash, + "Merkle hash should be different after append" + ); + + // Pop the previously appended node + fruit_doc.pop_node_at_path(path).unwrap(); + + // Retrieve the Merkle hash again and assert it's the same as the original + let reverted_merkle_hash = fruit_doc.get_merkle_root().unwrap(); + assert_eq!( + original_merkle_hash, reverted_merkle_hash, + "Merkle hash should be the same as original after pop" + ); } #[test] @@ -518,6 +570,7 @@ fn test_manual_syntactic_vector_search() { "CV Data From Resume", Some("A bunch of data theoretically parsed out of a CV"), VRSource::None, + true, ); doc.set_embedding_model_used(generator.model_type()); // Not required, but good practice doc.update_resource_embedding_blocking(&generator, vec!["cv".to_string(), "email".to_string()]) @@ -550,14 +603,14 @@ fn test_manual_syntactic_vector_search() { // Prepare embeddings + data, then add it to the doc let fact1 = "Name: Joe Smith - Email: joesmith@gmail.com"; - let fact1_embeddings = generator.generate_embedding_default_blocking(fact1).unwrap(); + let fact1_embedding = generator.generate_embedding_default_blocking(fact1).unwrap(); let fact2 = "Birthday: 23/03/1980"; - let fact2_embeddings = generator.generate_embedding_default_blocking(fact2).unwrap(); + let fact2_embedding = generator.generate_embedding_default_blocking(fact2).unwrap(); let fact3 = "Previous Accomplishments: Drove $1,500,000 in sales at my previous company, which translate to a 4x improvement compared to when I joined."; - let fact3_embeddings = generator.generate_embedding_default_blocking(fact3).unwrap(); - doc.append_text_node(fact1.clone(), None, fact1_embeddings.clone(), &data_tags); - doc.append_text_node(fact2.clone(), None, fact2_embeddings.clone(), &data_tags); - doc.append_text_node(fact3.clone(), None, fact3_embeddings.clone(), &data_tags); + let fact3_embedding = generator.generate_embedding_default_blocking(fact3).unwrap(); + doc.append_text_node(fact1.clone(), None, fact1_embedding.clone(), &data_tags); + doc.append_text_node(fact2.clone(), None, fact2_embedding.clone(), &data_tags); + doc.append_text_node(fact3.clone(), None, fact3_embedding.clone(), &data_tags); // println!("Doc data tag index: {:?}", doc.data_tag_index()); @@ -595,3 +648,115 @@ fn test_manual_syntactic_vector_search() { let fetched_node = fetched_data.get(0).unwrap(); assert_eq!(NodeContent::Text(fact3.to_string()), fetched_node.node.content); } + +#[test] +fn test_checking_embedding_similarity() { + let generator = RemoteEmbeddingGenerator::new_default(); + + // + // Create a first resource + // + let mut doc = DocumentVectorResource::new_empty( + "3 Animal Facts", + Some("A bunch of facts about animals and wildlife"), + VRSource::new_uri_ref("animalwildlife.com", None), + true, + ); + + doc.set_embedding_model_used(generator.model_type()); // Not required, but good practice + doc.update_resource_embedding_blocking(&generator, vec!["animal".to_string(), "wild life".to_string()]) + .unwrap(); + + // Prepare embeddings + data, then add it to the doc + let fact1 = "Dogs are creatures with 4 legs that bark."; + let fact1_embedding = generator.generate_embedding_default_blocking(fact1).unwrap(); + let fact2 = "Camels are slow animals with large humps."; + let fact2_embedding = generator.generate_embedding_default_blocking(fact2).unwrap(); + let fact3 = "Seals swim in the ocean."; + let fact3_embedding = generator.generate_embedding_default_blocking(fact3).unwrap(); + doc.append_text_node(fact1.clone(), None, fact1_embedding.clone(), &vec![]) + .unwrap(); + doc.append_text_node(fact2.clone(), None, fact2_embedding.clone(), &vec![]) + .unwrap(); + doc.append_text_node(fact3.clone(), None, fact3_embedding.clone(), &vec![]) + .unwrap(); + + // Testing small alternations to the input text still retain a high similarity score + let res = doc.vector_search(fact1_embedding.clone(), 1); + assert_eq!(fact1.clone(), res[0].node.get_text_content().unwrap().to_string()); + assert!(res[0].score > 0.99); + + let fact1_embedding_2 = generator.generate_embedding_default_blocking(fact1).unwrap(); + let res = doc.vector_search(fact1_embedding_2.clone(), 1); + assert!(res[0].score > 0.99); + + let similar_to_fact_1 = "Dogs are creatures with 4 legs that bark ."; + let similar_fact1_embedding = generator + .generate_embedding_default_blocking(similar_to_fact_1) + .unwrap(); + let res = doc.vector_search(similar_fact1_embedding.clone(), 1); + println!("{} : {}", res[0].score, similar_to_fact_1); + assert!(res[0].score > 0.99); + + let similar_to_fact_1 = "Dogs are creatures with 4 legs that bark"; + let similar_fact1_embedding = generator + .generate_embedding_default_blocking(similar_to_fact_1) + .unwrap(); + let res = doc.vector_search(similar_fact1_embedding.clone(), 1); + println!("{} : {}", res[0].score, similar_to_fact_1); + assert!(res[0].score > 0.99); + + let similar_to_fact_1 = "Dogs are creatures with 4 legs that bark"; + let similar_fact1_embedding = generator + .generate_embedding_default_blocking(similar_to_fact_1) + .unwrap(); + let res = doc.vector_search(similar_fact1_embedding.clone(), 1); + println!("{} : {}", res[0].score, similar_to_fact_1); + assert!(res[0].score > 0.99); + + let similar_to_fact_1 = "Dogs -- are || creatures ~ with 4 legs, that bark"; + let similar_fact1_embedding = generator + .generate_embedding_default_blocking(similar_to_fact_1) + .unwrap(); + let res = doc.vector_search(similar_fact1_embedding.clone(), 1); + println!("{} : {}", res[0].score, similar_to_fact_1); + assert!(res[0].score < 0.99); +} + +#[tokio::test] +async fn test_embeddings_coherence() { + let generator = RemoteEmbeddingGenerator::new_default(); + + let mut doc = DocumentVectorResource::new_empty( + "3 Animal Facts", + Some("A bunch of facts about animals and wildlife"), + VRSource::new_uri_ref("animalwildlife.com", None), + true, + ); + + doc.set_embedding_model_used(generator.model_type()); // Not required, but good practice + doc.update_resource_embedding(&generator, vec!["animal".to_string(), "wild life".to_string()]) + .await + .unwrap(); + + // Prepare embeddings + data, then add it to the doc + let fact1 = "Dogs are creatures with 4 legs that bark."; + let fact1_embedding = generator.generate_embedding_default(fact1).await.unwrap(); + let fact2 = "Camels are slow animals with large humps."; + let fact2_embedding = generator.generate_embedding_default(fact2).await.unwrap(); + let fact3 = "Seals swim in the ocean."; + let fact3_embedding = generator.generate_embedding_default(fact3).await.unwrap(); + doc.append_text_node(fact1.clone(), None, fact1_embedding.clone(), &vec![]) + .unwrap(); + doc.append_text_node(fact2.clone(), None, fact2_embedding.clone(), &vec![]) + .unwrap(); + doc.append_text_node(fact3.clone(), None, fact3_embedding.clone(), &vec![]) + .unwrap(); + + let cloned_doc = BaseVectorResource::Document(doc.clone()); + doc.append_vector_resource_node_auto(cloned_doc, None); + + assert!(doc.verify_internal_embeddings_coherence(&generator, 0.5).await.is_ok()); + assert!(doc.verify_internal_embeddings_coherence(&generator, 0.0).await.is_ok()); + assert!(doc.verify_internal_embeddings_coherence(&generator, 23.4).await.is_ok()); +} diff --git a/src/agent/execution/job_execution_core.rs b/src/agent/execution/job_execution_core.rs index 564db9c80..8e337da6b 100644 --- a/src/agent/execution/job_execution_core.rs +++ b/src/agent/execution/job_execution_core.rs @@ -15,7 +15,7 @@ use shinkai_message_primitives::{ shinkai_utils::{shinkai_message_builder::ShinkaiMessageBuilder, signatures::clone_signature_secret_key}, }; use shinkai_vector_resources::embedding_generator::RemoteEmbeddingGenerator; -use shinkai_vector_resources::source::{DocumentFileType, SourceFile, SourceFileType, VRSource}; +use shinkai_vector_resources::source::{DocumentFileType, SourceFile, SourceFileType, TextChunkingStrategy, VRSource}; use shinkai_vector_resources::unstructured::unstructured_api::UnstructuredAPI; use std::result::Result::Ok; use std::time::Instant; @@ -114,7 +114,9 @@ impl JobManager { // Save response data to DB let mut shinkai_db = db.lock().await; - shinkai_db.add_message_to_job_inbox(&job_id.clone(), &shinkai_message, None).await?; + shinkai_db + .add_message_to_job_inbox(&job_id.clone(), &shinkai_message, None) + .await?; } } @@ -193,7 +195,9 @@ impl JobManager { inference_response_content.to_string(), None, )?; - shinkai_db.add_message_to_job_inbox(&job_message.job_id.clone(), &shinkai_message, None).await?; + shinkai_db + .add_message_to_job_inbox(&job_message.job_id.clone(), &shinkai_message, None) + .await?; shinkai_db.set_job_execution_context(job_message.job_id.clone(), new_execution_context, None)?; Ok(()) @@ -505,24 +509,26 @@ impl JobManager { .await?; // Now create Local/DBScopeEntry depending on setting + let text_chunking_strategy = TextChunkingStrategy::V1; if save_to_db_directly { - let resource_header = resource.as_trait_object().generate_resource_header(None); + let resource_header = resource.as_trait_object().generate_resource_header(); let shinkai_db = db.lock().await; shinkai_db.init_profile_resource_router(&profile)?; shinkai_db.save_resource(resource, &profile).unwrap(); let db_scope_entry = DBScopeEntry { resource_header: resource_header, - source: VRSource::from_file(&filename, &content)?, + source: VRSource::from_file(&filename, None, text_chunking_strategy)?, }; files_map.insert(filename, ScopeEntry::Database(db_scope_entry)); } else { let local_scope_entry = LocalScopeEntry { resource: resource, - source: SourceFile::new( + source: SourceFile::new_standard_source_file( filename.clone(), - SourceFileType::Document(DocumentFileType::Pdf), + SourceFileType::detect_file_type(&filename)?, content, + None, ), }; files_map.insert(filename, ScopeEntry::Local(local_scope_entry)); diff --git a/src/agent/execution/job_prompts.rs b/src/agent/execution/job_prompts.rs index dc0c3ae7a..884adc5df 100644 --- a/src/agent/execution/job_prompts.rs +++ b/src/agent/execution/job_prompts.rs @@ -5,7 +5,7 @@ use lazy_static::lazy_static; use serde::{Deserialize, Serialize}; use serde_json::to_string; use shinkai_message_primitives::shinkai_utils::shinkai_logging::{shinkai_log, ShinkaiLogLevel, ShinkaiLogOption}; -use shinkai_vector_resources::vector_resource_types::RetrievedNode; +use shinkai_vector_resources::vector_resource::RetrievedNode; use std::{collections::HashMap, convert::TryInto}; use tiktoken_rs::{get_chat_completion_max_tokens, num_tokens_from_messages, ChatCompletionRequestMessage}; diff --git a/src/agent/execution/job_vector_search.rs b/src/agent/execution/job_vector_search.rs index 81565c2ce..c1a051947 100644 --- a/src/agent/execution/job_vector_search.rs +++ b/src/agent/execution/job_vector_search.rs @@ -3,9 +3,8 @@ use crate::db::db_errors::ShinkaiDBError; use crate::db::ShinkaiDB; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; use shinkai_message_primitives::shinkai_utils::job_scope::JobScope; -use shinkai_vector_resources::base_vector_resources::BaseVectorResource; use shinkai_vector_resources::embeddings::Embedding; -use shinkai_vector_resources::vector_resource_types::{Node, RetrievedNode, VRHeader}; +use shinkai_vector_resources::vector_resource::{BaseVectorResource, Node, RetrievedNode, VRHeader}; use std::result::Result::Ok; use std::sync::Arc; use tokio::sync::Mutex; @@ -117,10 +116,7 @@ impl JobManager { // Iterate through resources until we find one with a matching resource reference string for resource in resources { - if resource - .as_trait_object() - .generate_resource_header(None) - .reference_string() + if resource.as_trait_object().generate_resource_header().reference_string() == resource_header.reference_string() { if let Some(description) = resource.as_trait_object().description() { diff --git a/src/agent/file_parsing.rs b/src/agent/file_parsing.rs index e0e67ec66..08313eb6e 100644 --- a/src/agent/file_parsing.rs +++ b/src/agent/file_parsing.rs @@ -1,15 +1,17 @@ use super::error::AgentError; +use super::execution::chains::tool_execution_chain; use super::execution::job_prompts::{JobPromptGenerator, Prompt}; use super::job_manager::JobManager; use csv::Reader; use lazy_static::lazy_static; use shinkai_message_primitives::schemas::agents::serialized_agent::SerializedAgent; -use shinkai_vector_resources::base_vector_resources::BaseVectorResource; use shinkai_vector_resources::embedding_generator::EmbeddingGenerator; use shinkai_vector_resources::resource_errors::VRError; +use shinkai_vector_resources::source::TextChunkingStrategy; use shinkai_vector_resources::unstructured::unstructured_api::{self, UnstructuredAPI}; use shinkai_vector_resources::unstructured::unstructured_parser::UnstructuredParser; use shinkai_vector_resources::unstructured::unstructured_types::UnstructuredElement; +use shinkai_vector_resources::vector_resource::{BaseVectorResource, SourceFileType}; use shinkai_vector_resources::{data_tags::DataTag, source::VRSource}; use std::io::Cursor; @@ -71,16 +73,28 @@ impl ParsingHelper { pub async fn parse_file_into_resource( file_buffer: Vec, generator: &dyn EmbeddingGenerator, - name: String, + file_name: String, desc: Option, parsing_tags: &Vec, max_node_size: u64, unstructured_api: UnstructuredAPI, ) -> Result { let (_, source, elements) = - ParsingHelper::parse_file_helper(file_buffer.clone(), name.clone(), unstructured_api).await?; + ParsingHelper::parse_file_helper(file_buffer.clone(), file_name.clone(), unstructured_api).await?; - Self::parse_elements_into_resource(elements, generator, name, desc, source, parsing_tags, max_node_size).await + // Cleans out the file extension from the file_name + let cleaned_name = SourceFileType::clean_string_of_extension(&file_name); + + Self::parse_elements_into_resource( + elements, + generator, + cleaned_name, + desc, + source, + parsing_tags, + max_node_size, + ) + .await } /// Helper method which keeps core logic related to parsing elements into a BaseVectorResource @@ -93,6 +107,7 @@ impl ParsingHelper { parsing_tags: &Vec, max_node_size: u64, ) -> Result { + let name = SourceFileType::clean_string_of_extension(&name); let resource = UnstructuredParser::process_elements_into_resource( elements, generator, @@ -104,20 +119,19 @@ impl ParsingHelper { ) .await?; - resource.as_trait_object().print_all_nodes_exhaustive(None, true, false); - Ok(resource) } /// Basic helper method which parses file into needed data for generating a BaseVectorResource async fn parse_file_helper( file_buffer: Vec, - name: String, + file_name: String, unstructured_api: UnstructuredAPI, ) -> Result<(String, VRSource, Vec), AgentError> { let resource_id = UnstructuredParser::generate_data_hash(&file_buffer); - let source = VRSource::from_file(&name, &file_buffer)?; - let elements = unstructured_api.file_request(file_buffer, &name).await?; + let source = VRSource::from_file(&file_name, None, TextChunkingStrategy::V1)?; + let name = SourceFileType::clean_string_of_extension(&file_name); + let elements = unstructured_api.file_request(file_buffer, &file_name).await?; Ok((resource_id, source, elements)) } diff --git a/src/db/db.rs b/src/db/db.rs index 7002ce5b3..5a114194b 100644 --- a/src/db/db.rs +++ b/src/db/db.rs @@ -1,3 +1,4 @@ +use crate::vector_fs::vector_fs_error::VectorFSError; use crate::network::ws_manager::{WebSocketManager, WSUpdateHandler}; use super::db_errors::ShinkaiDBError; @@ -7,7 +8,7 @@ use rocksdb::{ Options, SingleThreaded, WriteBatch, DB, }; use shinkai_message_primitives::{ - schemas::{shinkai_name::ShinkaiName, shinkai_time::ShinkaiTime}, + schemas::{shinkai_name::ShinkaiName, shinkai_time::ShinkaiStringTime}, shinkai_message::shinkai_message::ShinkaiMessage, }; use tokio::sync::Mutex; @@ -84,6 +85,7 @@ pub struct ProfileBoundWriteBatch { } impl ProfileBoundWriteBatch { + /// Create a new ProfileBoundWriteBatch with ShinkaiDBError wrapping pub fn new(profile: &ShinkaiName) -> Result { // Also validates that the name includes a profile let profile_name = ShinkaiDB::get_profile_name(profile)?; @@ -95,6 +97,22 @@ impl ProfileBoundWriteBatch { }) } + /// Create a new ProfileBoundWriteBatch with VectorFSError wrapping + pub fn new_vfs_batch(profile: &ShinkaiName) -> Result { + // Also validates that the name includes a profile + match ShinkaiDB::get_profile_name(profile) { + Ok(profile_name) => { + // Create write batch + let write_batch = rocksdb::WriteBatch::default(); + Ok(Self { + write_batch, + profile_name, + }) + } + Err(e) => Err(VectorFSError::FailedCreatingProfileBoundWriteBatch(profile.to_string())), + } + } + /// Saves the value inside of the key (profile-bound) at the provided column family. pub fn put_cf_pb(&mut self, cf: &impl AsColumnFamilyRef, key: &str, value: V) where @@ -323,7 +341,7 @@ impl ShinkaiDB { /// Prepends the profile name to the provided key to make it "profile bound" pub fn generate_profile_bound_key_from_str(key: &str, profile_name: &str) -> String { - let mut prof_name = profile_name.to_string(); + let mut prof_name = profile_name.to_string() + ":"; prof_name.push_str(key); prof_name } @@ -379,7 +397,7 @@ impl ShinkaiDB { // Calculate the scheduled time or current time let time_key = match ext_metadata.scheduled_time.is_empty() { - true => ShinkaiTime::generate_time_now(), + true => ShinkaiStringTime::generate_time_now(), false => ext_metadata.scheduled_time.clone(), }; @@ -420,7 +438,7 @@ impl ShinkaiDB { // Calculate the scheduled time or current time let time_key = match message.external_metadata.clone().scheduled_time.is_empty() { - true => ShinkaiTime::generate_time_now(), + true => ShinkaiStringTime::generate_time_now(), false => message.external_metadata.clone().scheduled_time.clone(), }; diff --git a/src/db/db_inbox.rs b/src/db/db_inbox.rs index 8d690be2e..19e714e66 100644 --- a/src/db/db_inbox.rs +++ b/src/db/db_inbox.rs @@ -1,7 +1,7 @@ use chrono::DateTime; use rocksdb::{Error, Options, WriteBatch}; use shinkai_message_primitives::{ - schemas::{inbox_name::InboxName, shinkai_name::ShinkaiName, shinkai_time::ShinkaiTime}, + schemas::{inbox_name::InboxName, shinkai_name::ShinkaiName, shinkai_time::ShinkaiStringTime}, shinkai_message::{shinkai_message::ShinkaiMessage, shinkai_message_schemas::WSTopic}, shinkai_utils::shinkai_logging::{shinkai_log, ShinkaiLogLevel, ShinkaiLogOption}, }; @@ -96,7 +96,7 @@ impl ShinkaiDB { // Get the scheduled time or calculate current time let time_key = match ext_metadata.scheduled_time.is_empty() { - true => ShinkaiTime::generate_time_now(), + true => ShinkaiStringTime::generate_time_now(), false => ext_metadata.scheduled_time.clone(), }; diff --git a/src/db/db_inbox_get_messages.rs b/src/db/db_inbox_get_messages.rs index cbcf5f92a..a137e1764 100644 --- a/src/db/db_inbox_get_messages.rs +++ b/src/db/db_inbox_get_messages.rs @@ -1,6 +1,6 @@ use super::{db::Topic, db_errors::ShinkaiDBError, ShinkaiDB}; use shinkai_message_primitives::shinkai_message::shinkai_message::ShinkaiMessage; -use shinkai_vector_resources::shinkai_time::ShinkaiTime; +use shinkai_vector_resources::shinkai_time::ShinkaiStringTime; impl ShinkaiDB { fn fetch_message_and_hash( @@ -88,7 +88,7 @@ impl ShinkaiDB { // Get the scheduled time or calculate current time let time_key = match ext_metadata.scheduled_time.is_empty() { - true => ShinkaiTime::generate_time_now(), + true => ShinkaiStringTime::generate_time_now(), false => ext_metadata.scheduled_time.clone(), }; @@ -154,7 +154,7 @@ impl ShinkaiDB { Ok(key) => key, Err(_) => return Err(ShinkaiDBError::MessageNotFound), }; - + // Compare the offset key with the keys from the iterator while let Some(key) = ¤t_key { if key == &offset_key { diff --git a/src/db/db_jobs.rs b/src/db/db_jobs.rs index c3f5c07c6..648b6b44f 100644 --- a/src/db/db_jobs.rs +++ b/src/db/db_jobs.rs @@ -4,7 +4,7 @@ use super::{db::Topic, db_errors::ShinkaiDBError, ShinkaiDB}; use crate::agent::execution::job_prompts::{Prompt, SubPromptType}; use crate::agent::job::{Job, JobLike, JobStepResult}; use rocksdb::{IteratorMode, Options, WriteBatch}; -use shinkai_message_primitives::schemas::{inbox_name::InboxName, shinkai_time::ShinkaiTime}; +use shinkai_message_primitives::schemas::{inbox_name::InboxName, shinkai_time::ShinkaiStringTime}; use shinkai_message_primitives::shinkai_message::shinkai_message::ShinkaiMessage; use shinkai_message_primitives::shinkai_utils::job_scope::JobScope; @@ -87,7 +87,7 @@ impl ShinkaiDB { let mut batch = WriteBatch::default(); // Generate time currently, used as a key. It should be safe because it's generated here so it shouldn't be duplicated (presumably) - let current_time = ShinkaiTime::generate_time_now(); + let current_time = ShinkaiStringTime::generate_time_now(); let scope_bytes = scope.to_bytes()?; let cf_job_id = self.cf_handle(&cf_job_id_name)?; @@ -363,7 +363,7 @@ impl ShinkaiDB { }; let cf_name = format!("{}_{}_execution_context", &job_id, &message_key); - let current_time = ShinkaiTime::generate_time_now(); + let current_time = ShinkaiStringTime::generate_time_now(); // Convert the context to bytes let context_bytes = bincode::serialize(&context).map_err(|_| { @@ -518,7 +518,7 @@ impl ShinkaiDB { .db .cf_handle(&cf_name) .ok_or(ShinkaiDBError::ProfileNameNonExistent(cf_name))?; - let current_time = ShinkaiTime::generate_time_now(); + let current_time = ShinkaiStringTime::generate_time_now(); self.db.put_cf(cf_handle, current_time.as_bytes(), message.as_bytes())?; Ok(()) } @@ -549,7 +549,7 @@ impl ShinkaiDB { }; let cf_name = format!("{}_{}_step_history", &job_id, &message_key); - let current_time = ShinkaiTime::generate_time_now(); + let current_time = ShinkaiStringTime::generate_time_now(); // Create prompt & JobStepResult let mut prompt = Prompt::new(); diff --git a/src/db/db_resources.rs b/src/db/db_resources.rs index 4965f6030..9e590f8f5 100644 --- a/src/db/db_resources.rs +++ b/src/db/db_resources.rs @@ -1,18 +1,16 @@ +use super::db::ProfileBoundWriteBatch; +use super::db_errors::*; use crate::db::{ShinkaiDB, Topic}; use crate::resources::router::VectorResourceRouter; use serde_json::from_str; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_vector_resources::base_vector_resources::{BaseVectorResource, VRBaseType}; -use shinkai_vector_resources::document_resource::DocumentVectorResource; use shinkai_vector_resources::embeddings::Embedding; use shinkai_vector_resources::resource_errors::VRError; use shinkai_vector_resources::vector_resource::{ - RetrievedNode, ScoringMode, TraversalMethod, TraversalOption, VRHeader, VectorResource, + BaseVectorResource, DocumentVectorResource, RetrievedNode, ScoringMode, TraversalMethod, TraversalOption, + VRBaseType, VRHeader, VectorResource, }; -use super::db::ProfileBoundWriteBatch; -use super::db_errors::*; - impl ShinkaiDB { /// Saves the supplied `VectorResourceRouter` into the ShinkaiDB as the profile resource router. fn save_profile_resource_router( @@ -109,7 +107,7 @@ impl ShinkaiDB { // Add the resource_header to the router, then putting the router // into the batch - let resource_header = resource.as_trait_object().generate_resource_header(None); + let resource_header = resource.as_trait_object().generate_resource_header(); router.add_resource_header(&resource_header)?; let (bytes, cf) = self._prepare_profile_resource_router(&router)?; pb_batch.put_cf_pb(cf, &VectorResourceRouter::profile_router_shinkai_db_key(), &bytes); diff --git a/src/resources/router.rs b/src/resources/router.rs index e68c5cf5c..12f565c93 100644 --- a/src/resources/router.rs +++ b/src/resources/router.rs @@ -1,12 +1,14 @@ use serde_json; -use shinkai_vector_resources::base_vector_resources::VRBaseType; use shinkai_vector_resources::embeddings::Embedding; -use shinkai_vector_resources::map_resource::MapVectorResource; use shinkai_vector_resources::model_type::EmbeddingModelType; use shinkai_vector_resources::resource_errors::VRError; use shinkai_vector_resources::source::VRSource; -use shinkai_vector_resources::vector_resource::{NodeContent, RetrievedNode, VRHeader, VectorResource}; -use shinkai_vector_resources::vector_resource_types::VRPath; +use shinkai_vector_resources::vector_resource::MapVectorResource; +use shinkai_vector_resources::vector_resource::VRBaseType; +use shinkai_vector_resources::vector_resource::VRPath; +use shinkai_vector_resources::vector_resource::{ + NodeContent, RetrievedNode, VRHeader, VectorResource, VectorResourceCore, VectorResourceSearch, +}; use std::collections::HashMap; use std::str::FromStr; @@ -26,7 +28,7 @@ impl VectorResourceRouter { let desc = Some("Enables performing vector searches to find relevant resources."); let source = VRSource::None; VectorResourceRouter { - routing_resource: MapVectorResource::new_empty(name, desc, source), + routing_resource: MapVectorResource::new_empty(name, desc, source, true), } } @@ -63,7 +65,7 @@ impl VectorResourceRouter { /// Returns all VRHeaders in the Resource Router pub fn get_all_resource_headers(&self) -> Vec { let nodes = self.routing_resource.get_nodes(); - let map_resource_header = self.routing_resource.generate_resource_header(None); + let map_resource_header = self.routing_resource.generate_resource_header(); let mut resource_headers = vec![]; for node in nodes { @@ -109,11 +111,11 @@ impl VectorResourceRouter { embedding, ret_node.node.data_tag_names.clone(), source, - ret_node.node.last_modified_datetime.clone(), - ret_node.node.last_modified_datetime.clone(), - None, + ret_node.node.last_written_datetime.clone(), + ret_node.node.last_written_datetime.clone(), vec![], NEW_PROFILE_DEFAULT_EMBEDDING_MODEL.clone(), + None, ); if let Ok(resource_header) = resource_header { resource_headers.push(resource_header); @@ -204,7 +206,8 @@ impl VectorResourceRouter { /// Deletes the resource resource_header inside of the VectorResourceRouter given a valid id pub fn delete_resource_header(&mut self, old_resource_header_id: &str) -> Result<(), VRError> { - self.routing_resource.remove_node(old_resource_header_id.to_string())?; + self.routing_resource + .remove_node(old_resource_header_id.to_string(), None)?; Ok(()) } @@ -226,6 +229,6 @@ impl VectorResourceRouter { } /// Convert to json pub fn to_json(&self) -> Result { - serde_json::to_string(self).map_err(|_| VRError::FailedJSONParsing) + Ok(serde_json::to_string(self)?) } } diff --git a/src/tools/router.rs b/src/tools/router.rs index 92073325d..616ef4471 100644 --- a/src/tools/router.rs +++ b/src/tools/router.rs @@ -6,9 +6,10 @@ use crate::tools::rust_tools::{RustTool, RUST_TOOLKIT}; use serde_json; use shinkai_vector_resources::embeddings::Embedding; use shinkai_vector_resources::embeddings::MAX_EMBEDDING_STRING_SIZE; -use shinkai_vector_resources::map_resource::MapVectorResource; use shinkai_vector_resources::source::VRSource; -use shinkai_vector_resources::vector_resource::{NodeContent, RetrievedNode, VectorResource}; +use shinkai_vector_resources::vector_resource::{ + MapVectorResource, NodeContent, RetrievedNode, VectorResource, VectorResourceCore, VectorResourceSearch, +}; use std::collections::HashMap; #[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] @@ -292,7 +293,7 @@ impl ToolRouter { let source = VRSource::None; // Initialize the MapVectorResource and add all of the rust tools by default - let mut routing_resource = MapVectorResource::new_empty(name, desc, source); + let mut routing_resource = MapVectorResource::new_empty(name, desc, source, true); let mut metadata = HashMap::new(); metadata.insert(Self::tool_type_metadata_key(), Self::tool_type_rust_value()); @@ -406,7 +407,7 @@ impl ToolRouter { let key = ShinkaiTool::gen_router_key(tool_name.to_string(), toolkit_name.to_string()); self.routing_resource.print_all_nodes_exhaustive(None, false, false); println!("Tool key: {}", key); - self.routing_resource.remove_node(key)?; + self.routing_resource.remove_node(key, None)?; Ok(()) } diff --git a/src/vector_fs/db/fs_db.rs b/src/vector_fs/db/fs_db.rs index caaf82e0c..9b12dded3 100644 --- a/src/vector_fs/db/fs_db.rs +++ b/src/vector_fs/db/fs_db.rs @@ -1,10 +1,11 @@ -use super::super::{fs_error::VectorFSError, fs_internals::VectorFSInternals}; +use super::super::{vector_fs_error::VectorFSError, vector_fs_internals::VectorFSInternals}; use crate::db::db::ProfileBoundWriteBatch; +use crate::db::ShinkaiDB; use rand::Rng; use rand::{distributions::Alphanumeric, thread_rng}; use rocksdb::{ - AsColumnFamilyRef, ColumnFamily, ColumnFamilyDescriptor, DBCommon, DBIteratorWithThreadMode, Error, IteratorMode, - Options, SingleThreaded, WriteBatch, DB, + AsColumnFamilyRef, ColumnFamily, ColumnFamilyDescriptor, DBCommon, DBCompressionType, DBIteratorWithThreadMode, + Error, IteratorMode, Options, SingleThreaded, WriteBatch, DB, }; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; use std::path::Path; @@ -13,6 +14,8 @@ pub enum FSTopic { VectorResources, FileSystem, SourceFiles, + ReadAccessLogs, + WriteAccessLogs, } impl FSTopic { @@ -21,6 +24,8 @@ impl FSTopic { Self::VectorResources => "resources", Self::FileSystem => "filesystem", Self::SourceFiles => "sourcefiles", + Self::ReadAccessLogs => "readacesslogs", + Self::WriteAccessLogs => "writeaccesslogs", } } } @@ -36,7 +41,7 @@ impl VectorFSDB { db_opts.create_if_missing(true); db_opts.create_missing_column_families(true); // if we want to enable compression - // db_opts.set_compression_type(DBCompressionType::Lz4); + db_opts.set_compression_type(DBCompressionType::Lz4); let cf_names = if Path::new(db_path).exists() { // If the database file exists, get the list of column families from the database @@ -47,6 +52,8 @@ impl VectorFSDB { FSTopic::VectorResources.as_str().to_string(), FSTopic::FileSystem.as_str().to_string(), FSTopic::SourceFiles.as_str().to_string(), + FSTopic::ReadAccessLogs.as_str().to_string(), + FSTopic::WriteAccessLogs.as_str().to_string(), ] }; @@ -199,9 +206,7 @@ impl VectorFSDB { /// Prepends the profile name to the provided key to make it "profile bound" pub fn generate_profile_bound_key_from_str(key: &str, profile_name: &str) -> String { - let mut prof_name = profile_name.to_string(); - prof_name.push_str(key); - prof_name + ShinkaiDB::generate_profile_bound_key_from_str(key, profile_name) } /// Extracts the profile name with VectorFSError wrapping diff --git a/src/vector_fs/db/fs_internals_db.rs b/src/vector_fs/db/fs_internals_db.rs index cbc30b085..5f9287fa1 100644 --- a/src/vector_fs/db/fs_internals_db.rs +++ b/src/vector_fs/db/fs_internals_db.rs @@ -1,11 +1,11 @@ -use super::super::{fs_error::VectorFSError, fs_internals::VectorFSInternals}; +use super::super::{vector_fs_error::VectorFSError, vector_fs_internals::VectorFSInternals}; use super::fs_db::{FSTopic, VectorFSDB}; use crate::db::db::ProfileBoundWriteBatch; use serde_json::from_str; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_vector_resources::map_resource::MapVectorResource; use shinkai_vector_resources::model_type::EmbeddingModelType; -use shinkai_vector_resources::vector_search_traversal::VRSource; +use shinkai_vector_resources::vector_resource::MapVectorResource; +use shinkai_vector_resources::vector_resource::VRSource; use std::collections::HashMap; impl VectorFSDB { @@ -53,7 +53,6 @@ impl VectorFSDB { /// Fetches the profile's `VectorFSInternals` from the DB pub fn get_profile_fs_internals(&self, profile: &ShinkaiName) -> Result { - println!("Profile: {:?}", profile.to_string()); let bytes = self.get_cf_pb( FSTopic::FileSystem, &VectorFSInternals::profile_fs_internals_shinkai_db_key(), diff --git a/src/vector_fs/db/mod.rs b/src/vector_fs/db/mod.rs index 22a7e513b..4988b31d5 100644 --- a/src/vector_fs/db/mod.rs +++ b/src/vector_fs/db/mod.rs @@ -1,3 +1,6 @@ pub mod fs_db; pub mod fs_internals_db; +pub mod read_access_logs_db; pub mod resources_db; +pub mod source_file_db; +pub mod write_access_logs_db; diff --git a/src/vector_fs/db/read_access_logs_db.rs b/src/vector_fs/db/read_access_logs_db.rs new file mode 100644 index 000000000..9ad6b64c0 --- /dev/null +++ b/src/vector_fs/db/read_access_logs_db.rs @@ -0,0 +1,42 @@ +use chrono::{DateTime, Utc}; +use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; +use shinkai_vector_resources::vector_resource::VRPath; + +use crate::{db::db::ProfileBoundWriteBatch, vector_fs::vector_fs_error::VectorFSError}; + +use super::fs_db::VectorFSDB; + +impl VectorFSDB { + /// TODO: Implement real logic + /// Adds the read access log into the FSDB + pub fn wb_add_read_access_log( + &self, + requester_name: ShinkaiName, + read_path: &VRPath, + datetime: DateTime, + profile: ShinkaiName, + batch: &mut ProfileBoundWriteBatch, + ) -> Result<(), VectorFSError> { + // let (bytes, cf) = self._prepare_read_access_log(...)?; + // batch.put_cf_pb(cf, db_key, &bytes); + + // 1. Update the path_read_log_count in the db + 1 + + // 2. Add the new access log into the +1 key + + Ok(()) + } + + /// TODO: Implement real logic + /// Returns a tuple of Option<(DateTime, ShinkaiName)>, of the last access + /// made at a specific path. If was successful but returns None, then there were no + /// read access logs stored in the DB. + pub fn get_latest_read_access_log( + &self, + read_path: &VRPath, + profile: ShinkaiName, + ) -> Result, ShinkaiName)>, VectorFSError> { + // Implement logic + Ok(None) + } +} diff --git a/src/vector_fs/db/resources_db.rs b/src/vector_fs/db/resources_db.rs index 60f135900..3430d6771 100644 --- a/src/vector_fs/db/resources_db.rs +++ b/src/vector_fs/db/resources_db.rs @@ -1,9 +1,9 @@ -use super::super::fs_error::VectorFSError; +use super::super::vector_fs_error::VectorFSError; use super::fs_db::{FSTopic, VectorFSDB}; use crate::db::db::ProfileBoundWriteBatch; +use crate::vector_fs::vector_fs_types::FSItem; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_vector_resources::base_vector_resources::BaseVectorResource; -use shinkai_vector_resources::vector_search_traversal::VRHeader; +use shinkai_vector_resources::vector_resource::{BaseVectorResource, VRHeader}; impl VectorFSDB { /// Saves the `VectorResource` into the Resources topic as a JSON @@ -45,6 +45,15 @@ impl VectorFSDB { self.get_resource(&resource_header.reference_string(), profile) } + /// Fetches the BaseVectorResource from the DB using a FSItem + pub fn get_resource_by_fs_item( + &self, + fs_item: &FSItem, + profile: &ShinkaiName, + ) -> Result { + self.get_resource(&fs_item.resource_db_key(), profile) + } + /// Fetches the BaseVectorResource from the FSDB in the VectorResources topic pub fn get_resource(&self, key: &str, profile: &ShinkaiName) -> Result { // Fetch and convert the bytes to a valid UTF-8 string diff --git a/src/vector_fs/db/source_file_db.rs b/src/vector_fs/db/source_file_db.rs new file mode 100644 index 000000000..3cda51b6a --- /dev/null +++ b/src/vector_fs/db/source_file_db.rs @@ -0,0 +1,63 @@ +use super::super::vector_fs_error::VectorFSError; +use super::fs_db::{FSTopic, VectorFSDB}; +use crate::db::db::ProfileBoundWriteBatch; +use crate::vector_fs::vector_fs_types::FSItem; +use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; +use shinkai_vector_resources::source::SourceFileMap; +use shinkai_vector_resources::vector_resource::{BaseVectorResource, VRHeader}; + +impl VectorFSDB { + /// Saves the `SourceFileMap` into the SourceFiles topic. + pub fn wb_save_source_file_map( + &self, + source_file_map: &SourceFileMap, + db_key: &str, + batch: &mut ProfileBoundWriteBatch, + ) -> Result<(), VectorFSError> { + let (bytes, cf) = self._prepare_source_file_map(source_file_map)?; + + // Insert into the "SourceFileMaps" column family + batch.put_cf_pb(cf, db_key, &bytes); + + Ok(()) + } + + /// Prepares the `SourceFileMap` for saving into the FSDB in the SourceFiles topic. + fn _prepare_source_file_map( + &self, + source_file_map: &SourceFileMap, + ) -> Result<(Vec, &rocksdb::ColumnFamily), VectorFSError> { + let json = source_file_map.to_json()?; + let bytes = json.as_bytes().to_vec(); + // Retrieve the handle for the "SourceFiles" column family + let cf = self.get_cf_handle(FSTopic::SourceFiles)?; + Ok((bytes, cf)) + } + + /// Fetches the SourceFileMap from the DB using a VRHeader + pub fn get_source_file_map_by_header( + &self, + resource_header: &VRHeader, + profile: &ShinkaiName, + ) -> Result { + self.get_source_file_map(&resource_header.reference_string(), profile) + } + + /// Fetches the SourceFileMap from the DB using a FSItem + pub fn get_source_file_map_by_fs_item( + &self, + fs_item: &FSItem, + profile: &ShinkaiName, + ) -> Result { + let key = fs_item.source_file_map_db_key()?; + self.get_source_file_map(&key, profile) + } + + /// Fetches the SourceFileMap from the FSDB in the SourceFiles topic + pub fn get_source_file_map(&self, key: &str, profile: &ShinkaiName) -> Result { + // Fetch and convert the bytes to a valid UTF-8 string + let bytes = self.get_cf_pb(FSTopic::SourceFiles, key, profile)?; + let json_str = std::str::from_utf8(&bytes)?; + Ok(SourceFileMap::from_json(json_str)?) + } +} diff --git a/src/vector_fs/db/write_access_logs_db.rs b/src/vector_fs/db/write_access_logs_db.rs new file mode 100644 index 000000000..1bc7297d3 --- /dev/null +++ b/src/vector_fs/db/write_access_logs_db.rs @@ -0,0 +1,42 @@ +use chrono::{DateTime, Utc}; +use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; +use shinkai_vector_resources::vector_resource::VRPath; + +use crate::{db::db::ProfileBoundWriteBatch, vector_fs::vector_fs_error::VectorFSError}; + +use super::fs_db::VectorFSDB; + +impl VectorFSDB { + /// TODO: Implement real logic + /// Adds the write access log into the FSDB + pub fn wb_add_write_access_log( + &self, + requester_name: ShinkaiName, + write_path: &VRPath, + datetime: DateTime, + profile: ShinkaiName, + batch: &mut ProfileBoundWriteBatch, + ) -> Result<(), VectorFSError> { + // let (bytes, cf) = self._prepare_write_access_log(...)?; + // batch.put_cf_pb(cf, db_key, &bytes); + + // 1. Update the path_write_log_count in the db + 1 + + // 2. Add the new access log into the +1 key + + Ok(()) + } + + /// TODO: Implement real logic + /// Returns a tuple of Option<(DateTime, ShinkaiName)>, of the last access + /// made at a specific path. If was successful but returns None, then there were no + /// write access logs stored in the DB. + pub fn get_latest_write_access_log( + &self, + write_path: &VRPath, + profile: ShinkaiName, + ) -> Result, ShinkaiName)>, VectorFSError> { + // Implement logic + Ok(None) + } +} diff --git a/src/vector_fs/mod.rs b/src/vector_fs/mod.rs index 09074dc0e..c016d0019 100644 --- a/src/vector_fs/mod.rs +++ b/src/vector_fs/mod.rs @@ -1,8 +1,9 @@ pub mod db; -pub mod fs_error; -pub mod fs_internals; -pub mod permissions; pub mod vector_fs; +pub mod vector_fs_error; +pub mod vector_fs_internals; +pub mod vector_fs_permissions; pub mod vector_fs_reader; +pub mod vector_fs_search; +pub mod vector_fs_types; pub mod vector_fs_writer; -pub mod vector_search; diff --git a/src/vector_fs/vector_fs.rs b/src/vector_fs/vector_fs.rs index c1bf63c3e..dbc7c8948 100644 --- a/src/vector_fs/vector_fs.rs +++ b/src/vector_fs/vector_fs.rs @@ -1,12 +1,11 @@ -use super::fs_internals::VectorFSInternals; +use super::vector_fs_internals::VectorFSInternals; use super::vector_fs_reader::VFSReader; use super::vector_fs_writer::VFSWriter; -use super::{db::fs_db::VectorFSDB, fs_error::VectorFSError}; +use super::{db::fs_db::VectorFSDB, vector_fs_error::VectorFSError}; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; use shinkai_vector_resources::embedding_generator::{EmbeddingGenerator, RemoteEmbeddingGenerator}; -use shinkai_vector_resources::model_type::EmbeddingModelType; -use shinkai_vector_resources::vector_resource::VectorResource; -use shinkai_vector_resources::vector_search_traversal::VRPath; +use shinkai_vector_resources::model_type::{EmbeddingModelType, TextEmbeddingsInference}; +use shinkai_vector_resources::vector_resource::{VRPath, VectorResource, VectorResourceCore}; use std::collections::HashMap; /// Struct that wraps all functionality of the VectorFS. @@ -14,8 +13,8 @@ use std::collections::HashMap; /// for all profiles on the node. pub struct VectorFS { pub node_name: ShinkaiName, - internals_map: HashMap, - db: VectorFSDB, + pub internals_map: HashMap, + pub db: VectorFSDB, /// Intended to be used only for generating query embeddings for Vector Search /// Processing content into Vector Resources should always be done outside of the VectorFS /// to prevent locking for long periods of time. (If VR with unsupported model is tried to be added to FS, should error, and regeneration happens externally) @@ -79,8 +78,8 @@ impl VectorFS { /// Creates a new VFSReader if the `requester_name` passes read permission validation check. /// VFSReader can then be used to perform read actions at the specified path. - pub fn reader( - &self, + pub fn new_reader( + &mut self, requester_name: ShinkaiName, path: VRPath, profile: ShinkaiName, @@ -90,7 +89,7 @@ impl VectorFS { /// Creates a new VFSWriter if the `requester_name` passes write permission validation check. /// VFSWriter can then be used to perform write actions at the specified path. - pub fn writer( + pub fn new_writer( &mut self, requester_name: ShinkaiName, path: VRPath, diff --git a/src/vector_fs/fs_error.rs b/src/vector_fs/vector_fs_error.rs similarity index 71% rename from src/vector_fs/fs_error.rs rename to src/vector_fs/vector_fs_error.rs index 1dd1ba971..50c9fa63f 100644 --- a/src/vector_fs/fs_error.rs +++ b/src/vector_fs/vector_fs_error.rs @@ -7,7 +7,7 @@ use shinkai_message_primitives::{ }, shinkai_message::shinkai_message_error::ShinkaiMessageError, }; -use shinkai_vector_resources::{resource_errors::VRError, vector_search_traversal::VRPath}; +use shinkai_vector_resources::{model_type::EmbeddingModelType, resource_errors::VRError, vector_resource::VRPath}; use std::{io, str::Utf8Error}; #[derive(Debug)] @@ -36,6 +36,21 @@ pub enum VectorFSError { InvalidProfileActionPermission(ShinkaiName, String), InvalidReaderPermission(ShinkaiName, ShinkaiName, VRPath), InvalidWriterPermission(ShinkaiName, ShinkaiName, VRPath), + InvalidReadPermission(ShinkaiName, VRPath), + InvalidWritePermission(ShinkaiName, VRPath), + NoSourceFileAvailable(String), + InvalidFSEntryType(String), + EmbeddingModelTypeMismatch(EmbeddingModelType, EmbeddingModelType), + EmbeddingMissingInResource(String), + InvalidMetadata(String), + FailedCreatingProfileBoundWriteBatch(String), + CannotOverwriteFolder(VRPath), + PathDoesNotPointAtItem(VRPath), + PathDoesNotPointAtFolder(VRPath), + NoEntryAtPath(VRPath), + EntryAlreadyExistsAtPath(VRPath), + DateTimeParseError(String), + FailedGettingFSPathOfRetrievedNode(String), } impl fmt::Display for VectorFSError { @@ -91,6 +106,46 @@ impl fmt::Display for VectorFSError { profile, path.format_to_string() ), + VectorFSError::NoSourceFileAvailable(s) => write!(f, "No SourceFile available for: {}", s), + VectorFSError::InvalidFSEntryType(s) => { + write!(f, "Parsing FSEntry into specific type failed at path: {}", s) + } + VectorFSError::EmbeddingModelTypeMismatch(a, b) => { + write!(f, "Embedding model mismatch: {} vs. {}", a, b) + } + VectorFSError::EmbeddingMissingInResource(s) => { + write!(f, "Embedding is not defined in resource: {} ", s) + } + VectorFSError::InvalidMetadata(e) => write!(f, "Invalid metadata at key: {}", e), + VectorFSError::FailedCreatingProfileBoundWriteBatch(e) => { + write!(f, "Failed parsing profile and creating a write batch for: {}", e) + } + VectorFSError::CannotOverwriteFolder(e) => write!(f, "Cannot write over existing folder at: {}", e), + VectorFSError::PathDoesNotPointAtFolder(e) => { + write!(f, "Entry at supplied path does not hold an FSFolder: {}", e) + } + VectorFSError::PathDoesNotPointAtItem(e) => { + write!(f, "Entry at supplied path does not hold an FSItem: {}", e) + } + VectorFSError::NoEntryAtPath(e) => { + write!( + f, + "Supplied path does not exist/hold any FSEntry in the VectorFS: {}", + e + ) + } + VectorFSError::EntryAlreadyExistsAtPath(p) => { + write!(f, "FSEntry already exists at path, and cannot overwrite: {}", p) + } + + VectorFSError::DateTimeParseError(e) => write!(f, "Datetime Parse Error: {}", e), + VectorFSError::InvalidReadPermission(n, p) => { + write!(f, "{} does not have read permissions for path: {}", n, p) + } + VectorFSError::InvalidWritePermission(n, p) => { + write!(f, "{} does not have write permissions for path: {}", n, p) + } + VectorFSError::FailedGettingFSPathOfRetrievedNode(s) => write!(f, "While performing 2-tier 'deep' vector search, unable to get VectorFS path of the VR the retrieved node was from: {}", s), } } } @@ -188,3 +243,9 @@ impl From for VectorFSError { VectorFSError::ShinkaiMessageError(err.to_string()) } } + +impl From for VectorFSError { + fn from(err: chrono::ParseError) -> VectorFSError { + VectorFSError::DateTimeParseError(err.to_string()) + } +} diff --git a/src/vector_fs/fs_internals.rs b/src/vector_fs/vector_fs_internals.rs similarity index 89% rename from src/vector_fs/fs_internals.rs rename to src/vector_fs/vector_fs_internals.rs index b97f9077e..da8686623 100644 --- a/src/vector_fs/fs_internals.rs +++ b/src/vector_fs/vector_fs_internals.rs @@ -1,15 +1,20 @@ -use super::{fs_error::VectorFSError, permissions::PermissionsIndex}; +use super::{ + vector_fs_error::VectorFSError, + vector_fs_permissions::PermissionsIndex, + vector_fs_types::{LastReadIndex, SubscriptionsIndex}, +}; use crate::tools::js_toolkit_executor::DEFAULT_LOCAL_TOOLKIT_EXECUTOR_PORT; +use chrono::{DateTime, Utc}; use serde_json; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; use shinkai_vector_resources::{ - base_vector_resources::BaseVectorResource, embeddings::Embedding, - map_resource::MapVectorResource, model_type::{EmbeddingModelType, TextEmbeddingsInference}, resource_errors::VRError, - vector_resource::VectorResource, - vector_search_traversal::{NodeContent, VRPath, VRSource}, + vector_resource::{ + BaseVectorResource, MapVectorResource, NodeContent, VRHeader, VRPath, VRSource, VectorResource, + VectorResourceCore, + }, }; use std::collections::HashMap; @@ -17,8 +22,9 @@ use std::collections::HashMap; pub struct VectorFSInternals { pub fs_core_resource: MapVectorResource, pub permissions_index: PermissionsIndex, - pub subscription_index: HashMap>, + pub subscription_index: SubscriptionsIndex, pub supported_embedding_models: Vec, + pub last_read_index: LastReadIndex, } impl VectorFSInternals { @@ -35,12 +41,14 @@ impl VectorFSInternals { HashMap::new(), HashMap::new(), default_embedding_model_used, + true, ); Self { fs_core_resource: core_resource, permissions_index: PermissionsIndex::new(node_name), - subscription_index: HashMap::new(), + subscription_index: SubscriptionsIndex::new_empty(), supported_embedding_models, + last_read_index: LastReadIndex::new_empty(), } } diff --git a/src/vector_fs/permissions.rs b/src/vector_fs/vector_fs_permissions.rs similarity index 51% rename from src/vector_fs/permissions.rs rename to src/vector_fs/vector_fs_permissions.rs index 0566763a1..1fa25b629 100644 --- a/src/vector_fs/permissions.rs +++ b/src/vector_fs/vector_fs_permissions.rs @@ -1,7 +1,9 @@ use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_vector_resources::vector_search_traversal::VRPath; +use shinkai_vector_resources::vector_resource::VRPath; use std::{collections::HashMap, fmt::Write}; +use super::{vector_fs_error::VectorFSError, vector_fs_reader::VFSReader}; + /// Struct that holds the read/write permissions specified for a specific path in the VectorFS #[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] pub struct PathPermission { @@ -12,6 +14,18 @@ pub struct PathPermission { whitelist: HashMap, } +impl PathPermission { + /// Serialize the PathPermission struct into a JSON string + pub fn to_json(&self) -> Result { + serde_json::to_string(self) + } + + /// Deserialize a JSON string into a PathPermission struct + pub fn from_json(json: &str) -> Result { + serde_json::from_str(json) + } +} + /// Enum representing the different types of read permissions a VRPath can have. #[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] pub enum ReadPermission { @@ -46,21 +60,62 @@ pub enum WhitelistPermission { } /// Struct holding the VectorFS' permissions for a given profile. +/// Note we store the PathPermissions as json strings internally to support efficient +/// permission checking during VectorFS vector searches. #[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] pub struct PermissionsIndex { /// Map which defines the kind of read and write permission per path in the VectorFS - fs_permissions: HashMap, + pub fs_permissions: HashMap, /// ShinkaiName of the profile this permissions index is for. - profile_name: ShinkaiName, + pub profile_name: ShinkaiName, } impl PermissionsIndex { - /// Creates a new PermissionsIndex. + /// Creates a new PermissionsIndex struct pub fn new(profile_name: ShinkaiName) -> Self { - Self { + let mut index = Self { fs_permissions: HashMap::new(), profile_name, + }; + // Set permissions for the FS root to be private by default (only for profile owner). + // This unwrap is safe due to hard coded values. + index + .insert_path_permission(VRPath::new(), ReadPermission::Private, WritePermission::Private) + .unwrap(); + index + } + + /// Creates a new PermissionsIndex using an input hashmap and profile. + pub fn from_hashmap(profile_name: ShinkaiName, json_permissions: HashMap) -> Self { + let mut index = Self { + fs_permissions: json_permissions, + profile_name, + }; + + index + } + + /// Prepares a copy of the internal permissions hashmap to be used in a Vector Search, by appending + /// a json serialized reader at a hardcoded key. which is very unlikely to be used normally. + pub fn export_permissions_hashmap_with_reader(&self, reader: &VFSReader) -> HashMap { + // Convert values to json + let mut hashmap: HashMap = self.fs_permissions.clone(); + + // Add reader at a hard-coded path that can't be used by the VecFS normally + if let Ok(json) = reader.to_json() { + hashmap.insert(Self::vfs_reader_unique_path(), json); } + + hashmap + } + + /// A hard-coded path that isn't likely to be used by the VecFS normally for permissions ever. + pub fn vfs_reader_unique_path() -> VRPath { + let mut path = VRPath::new(); + path.push("9529".to_string()); + path.push("|do-not_use".to_string()); + path.push("7482".to_string()); + path } /// Inserts a new path permission into the fs_permissions map. Note, this will overwrite @@ -71,13 +126,14 @@ impl PermissionsIndex { path: VRPath, read_permission: ReadPermission, write_permission: WritePermission, - ) { + ) -> Result<(), VectorFSError> { let path_perm = PathPermission { read_permission, write_permission, whitelist: HashMap::new(), }; - self.fs_permissions.insert(path.clone(), path_perm); + self.fs_permissions.insert(path.clone(), path_perm.to_json()?); + Ok(()) } /// Removes a permission from the fs_permissions map. @@ -86,93 +142,153 @@ impl PermissionsIndex { } /// Inserts the WhitelistPermission for a ShinkaiName to the whitelist for a given path. - pub fn insert_to_whitelist(&mut self, path: VRPath, name: ShinkaiName, whitelist_perm: WhitelistPermission) { - if let Some(path_permission) = self.fs_permissions.get_mut(&path) { + pub fn insert_to_whitelist( + &mut self, + path: VRPath, + name: ShinkaiName, + whitelist_perm: WhitelistPermission, + ) -> Result<(), VectorFSError> { + if let Some(mut path_permission_json) = self.fs_permissions.get_mut(&path) { + let mut path_permission = PathPermission::from_json(&path_permission_json.clone())?; path_permission.whitelist.insert(name, whitelist_perm); + *path_permission_json = path_permission.to_json()?; } + Ok(()) } /// Removes a ShinkaiName from the whitelist for a given path. - pub fn remove_from_whitelist(&mut self, path: VRPath, name: ShinkaiName) { - if let Some(path_permission) = self.fs_permissions.get_mut(&path) { + pub fn remove_from_whitelist(&mut self, path: VRPath, name: ShinkaiName) -> Result<(), VectorFSError> { + if let Some(mut path_permission_json) = self.fs_permissions.get_mut(&path) { + let mut path_permission = PathPermission::from_json(&path_permission_json.clone())?; path_permission.whitelist.remove(&name); + *path_permission_json = path_permission.to_json()?; } + Ok(()) } /// Validates the permission for a given requester ShinkaiName + Path in the node's VectorFS. - pub fn validate_read_permission(&self, requester_name: &ShinkaiName, path: &VRPath) -> bool { + /// If it returns Ok(()), then permission has passed. + pub fn validate_read_permission(&self, requester_name: &ShinkaiName, path: &VRPath) -> Result<(), VectorFSError> { let mut path = path.clone(); loop { - if let Some(path_permission) = self.fs_permissions.get(&path) { + if let Some(path_permission_json) = self.fs_permissions.get(&path) { + let mut path_permission = PathPermission::from_json(&path_permission_json.clone())?; match &path_permission.read_permission { // If Public, then reading is always allowed - ReadPermission::Public => return true, + ReadPermission::Public => return Ok(()), // If private, then reading is allowed for the specific profile that owns the VectorFS ReadPermission::Private => { - return requester_name.get_profile_name() == self.profile_name.get_profile_name() + if requester_name.get_profile_name() == self.profile_name.get_profile_name() { + return Ok(()); + } else { + return Err(VectorFSError::InvalidReadPermission( + requester_name.clone(), + path.clone(), + )); + } } // If node profiles permission, then reading is allowed to specified profiles in the same node ReadPermission::NodeProfiles(profiles) => { - return profiles.iter().any(|profile| { + if profiles.iter().any(|profile| { profile.node_name == self.profile_name.node_name && requester_name.profile_name == profile.profile_name - }) + }) { + return Ok(()); + } else { + return Err(VectorFSError::InvalidReadPermission( + requester_name.clone(), + path.clone(), + )); + } } // If Whitelist, checks if the current path permission has the WhitelistPermission for the user. If not, then recursively checks above // directories (if they are also whitelisted) to see if the WhitelistPermission can be found there, until a non-whitelisted // directory is found (returns false), or the WhitelistPermission is found for the requester. ReadPermission::Whitelist => { if let Some(whitelist_permission) = path_permission.whitelist.get(requester_name) { - return matches!( + if matches!( whitelist_permission, WhitelistPermission::Read | WhitelistPermission::ReadWrite - ); + ) { + return Ok(()); + } else { + return Err(VectorFSError::InvalidReadPermission( + requester_name.clone(), + path.clone(), + )); + } } } } } // If we've gone through the whole path and no WhitelistPermission is found, then return false if path.pop().is_none() { - return false; + return Err(VectorFSError::InvalidReadPermission( + requester_name.clone(), + path.clone(), + )); } } } /// Validates the permission for a given requester ShinkaiName + Path in the node's VectorFS. - pub fn validate_write_permission(&self, requester_name: &ShinkaiName, path: &VRPath) -> bool { + /// If it returns Ok(()), then permission has passed. + pub fn validate_write_permission(&self, requester_name: &ShinkaiName, path: &VRPath) -> Result<(), VectorFSError> { let mut path = path.clone(); loop { - if let Some(path_permission) = self.fs_permissions.get(&path) { + if let Some(path_permission_json) = self.fs_permissions.get(&path) { + let mut path_permission = PathPermission::from_json(&path_permission_json.clone())?; match &path_permission.write_permission { // If private, then writing is allowed for the specific profile that owns the VectorFS WritePermission::Private => { - return requester_name.get_profile_name() == self.profile_name.get_profile_name() + if requester_name.get_profile_name() == self.profile_name.get_profile_name() { + } else { + return Err(VectorFSError::InvalidWritePermission( + requester_name.clone(), + path.clone(), + )); + } } // If node profiles permission, then writing is allowed to specified profiles in the same node WritePermission::NodeProfiles(profiles) => { - return profiles.iter().any(|profile| { + if profiles.iter().any(|profile| { profile.node_name == self.profile_name.node_name && requester_name.profile_name == profile.profile_name - }) + }) { + } else { + return Err(VectorFSError::InvalidWritePermission( + requester_name.clone(), + path.clone(), + )); + } } // If Whitelist, checks if the current path permission has the WhitelistPermission for the user. If not, then recursively checks above // directories (if they are also whitelisted) to see if the WhitelistPermission can be found there, until a non-whitelisted // directory is found (returns false), or the WhitelistPermission is found for the requester. WritePermission::Whitelist => { if let Some(whitelist_permission) = path_permission.whitelist.get(requester_name) { - return matches!( + if matches!( whitelist_permission, WhitelistPermission::Write | WhitelistPermission::ReadWrite - ); + ) { + } else { + return Err(VectorFSError::InvalidWritePermission( + requester_name.clone(), + path.clone(), + )); + } } } } } // If we've gone through the whole path and no WhitelistPermission is found, then return false if path.pop().is_none() { - return false; + return Err(VectorFSError::InvalidWritePermission( + requester_name.clone(), + path.clone(), + )); } } } diff --git a/src/vector_fs/vector_fs_reader.rs b/src/vector_fs/vector_fs_reader.rs index 7f9bcfdf0..691a9ba31 100644 --- a/src/vector_fs/vector_fs_reader.rs +++ b/src/vector_fs/vector_fs_reader.rs @@ -1,56 +1,218 @@ -use super::{fs_error::VectorFSError, vector_fs::VectorFS}; +use super::vector_fs::{self, VectorFS}; +use super::vector_fs_error::VectorFSError; +use super::vector_fs_types::{FSEntry, FSFolder, FSItem, FSRoot, LastReadIndex}; +use super::vector_fs_writer::VFSWriter; +use crate::db::db::ProfileBoundWriteBatch; +use serde::{Deserialize, Serialize}; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_vector_resources::embedding_generator::{EmbeddingGenerator, RemoteEmbeddingGenerator}; use shinkai_vector_resources::embeddings::MAX_EMBEDDING_STRING_SIZE; -use shinkai_vector_resources::{embeddings::Embedding, vector_search_traversal::VRPath}; +use shinkai_vector_resources::resource_errors::VRError; +use shinkai_vector_resources::shinkai_time::ShinkaiTime; +use shinkai_vector_resources::source::{SourceFile, SourceFileMap}; +use shinkai_vector_resources::vector_resource::{ + BaseVectorResource, NodeContent, RetrievedNode, VectorResource, VectorResourceCore, VectorResourceSearch, +}; +use shinkai_vector_resources::{embeddings::Embedding, vector_resource::VRPath}; -/// A struct that allows performing read actions on the VectorFS under a profile/at a specific path. +/// A struct that represents having access rights to read the VectorFS under a profile/at a specific path. /// If a VFSReader struct is constructed, that means the `requester_name` has passed /// permissions validation and is thus allowed to read `path`. -pub struct VFSReader<'a> { +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +pub struct VFSReader { pub requester_name: ShinkaiName, pub path: VRPath, - pub vector_fs: &'a VectorFS, pub profile: ShinkaiName, } -impl<'a> VFSReader<'a> { +impl VFSReader { /// Creates a new VFSReader if the `requester_name` passes read permission validation check. pub fn new( requester_name: ShinkaiName, path: VRPath, - vector_fs: &'a VectorFS, + vector_fs: &mut VectorFS, profile: ShinkaiName, ) -> Result { let reader = VFSReader { requester_name: requester_name.clone(), path: path.clone(), - vector_fs, profile: profile.clone(), }; - // Validate read permissions - let fs_internals = reader.vector_fs._get_profile_fs_internals_read_only(&profile)?; - if !fs_internals + // Validate read permissions to ensure requester_name has rights + let fs_internals = vector_fs._get_profile_fs_internals(&profile)?; + if fs_internals .permissions_index .validate_read_permission(&requester_name, &path) + .is_err() { return Err(VectorFSError::InvalidReaderPermission(requester_name, profile, path)); } + // Once permission verified, saves the datatime both into memory (last_read_index) + // and into the FSDB as stored logs. + let current_datetime = ShinkaiTime::generate_time_now(); + fs_internals + .last_read_index + .update_path_last_read(path.clone(), current_datetime, requester_name.clone()); + let mut write_batch = ProfileBoundWriteBatch::new_vfs_batch(&profile)?; + vector_fs + .db + .wb_add_read_access_log(requester_name, &path, current_datetime, profile, &mut write_batch)?; + vector_fs.db.write_pb(write_batch)?; + Ok(reader) } - /// Generates an Embedding for the input query to be used in a Vector Search in the VecFS. - /// This automatically uses the correct default embedding model for the given profile. - pub async fn generate_query_embedding( + /// Generates a VFSReader using the same requester_name/profile held in self. + /// Read permissions are verified before the VFSReader is produced. + pub fn _new_reader_copied_data(&self, path: VRPath, vector_fs: &mut VectorFS) -> Result { + VFSReader::new(self.requester_name.clone(), path, vector_fs, self.profile.clone()) + } + + /// Generates a VFSWriter using the same requester_name/profile held in self. + /// Write permissions are verified before the VFSWriter is produced. + pub fn _new_writer_copied_data(&self, path: VRPath, vector_fs: &mut VectorFS) -> Result { + VFSWriter::new(self.requester_name.clone(), path, vector_fs, self.profile.clone()) + } + + /// Serialize the PathPermission struct into a JSON string + pub fn to_json(&self) -> Result { + serde_json::to_string(self) + } + + /// Deserialize a JSON string into a PathPermission struct + pub fn from_json(json: &str) -> Result { + serde_json::from_str(json) + } +} + +impl VectorFS { + /// Retrieves the FSEntry for the reader's path in the VectorFS. If path is root `/`, then returns a + /// FSFolder that matches the FS root structure. + pub fn retrieve_fs_entry(&mut self, reader: &VFSReader) -> Result { + let internals = self._get_profile_fs_internals_read_only(&reader.profile)?; + + // Create FSRoot directly if path is root + if reader.path.is_empty() { + let fs_root = + FSRoot::from_core_vector_resource(internals.fs_core_resource.clone(), &internals.last_read_index)?; + return Ok(FSEntry::Root(fs_root)); + } + + // Otherwise retrieve the node and process it + let ret_node = internals.fs_core_resource.retrieve_node_at_path(reader.path.clone())?; + match ret_node.node.content { + NodeContent::Resource(_) => { + let fs_folder = FSFolder::from_vector_resource_node( + ret_node.node.clone(), + reader.path.clone(), + &internals.last_read_index, + )?; + Ok(FSEntry::Folder(fs_folder)) + } + NodeContent::VRHeader(_) => { + let fs_item = + FSItem::from_vr_header_node(ret_node.node, reader.path.clone(), &internals.last_read_index)?; + Ok(FSEntry::Item(fs_item)) + } + _ => Ok(Err(VRError::InvalidNodeType(ret_node.node.id))?), + } + } + + /// Attempts to retrieve a VectorResource from inside an FSItem at the path specified in reader. If an FSItem/VectorResource is not saved + /// at this path, an error will be returned. + pub fn retrieve_vector_resource(&mut self, reader: &VFSReader) -> Result { + let fs_item = self.retrieve_fs_entry(reader)?.as_item()?; + self.db.get_resource_by_fs_item(&fs_item, &reader.profile) + } + + /// Attempts to retrieve the SourceFileMap from inside an FSItem at the path specified in reader. If this path does not currently exist, or + /// a source_file is not saved at this path, then an error is returned. + pub fn retrieve_source_file_map(&mut self, reader: &VFSReader) -> Result { + let fs_item = self.retrieve_fs_entry(reader)?.as_item()?; + self.db.get_source_file_map_by_fs_item(&fs_item, &reader.profile) + } + + /// Attempts to retrieve a VectorResource and its SourceFileMap at the path specified in reader. If either is not available + /// an error will be returned. + pub fn retrieve_vr_and_source_file_map( + &mut self, + reader: &VFSReader, + ) -> Result<(BaseVectorResource, SourceFileMap), VectorFSError> { + let vr = self.retrieve_vector_resource(reader)?; + let sfm = self.retrieve_source_file_map(reader)?; + Ok((vr, sfm)) + } + + /// Attempts to retrieve a VectorResource from inside an FSItem within the folder specified at reader path. + /// If a VectorResource is not saved at this path, an error will be returned. + pub fn retrieve_vector_resource_in_folder( + &mut self, + reader: &VFSReader, + item_name: String, + ) -> Result { + let new_reader = reader._new_reader_copied_data(reader.path.push_cloned(item_name), self)?; + self.retrieve_vector_resource(&new_reader) + } + + /// Attempts to retrieve a SourceFileMap from inside an FSItem within the folder specified at reader path. + /// If this path does not currently exist, or a source_file is not saved at this path, + /// then an error is returned. + pub fn retrieve_source_file_map_in_folder( + &mut self, + reader: &VFSReader, + item_name: String, + ) -> Result { + let new_reader = reader._new_reader_copied_data(reader.path.push_cloned(item_name), self)?; + self.retrieve_source_file_map(&new_reader) + } + + /// Attempts to retrieve a VectorResource and its SourceFileMap from inside an FSItem within the folder specified at reader path. + /// If either is not available, an error will be returned. + pub fn retrieve_vr_and_source_file_map_in_folder( + &mut self, + reader: &VFSReader, + item_name: String, + ) -> Result<(BaseVectorResource, SourceFileMap), VectorFSError> { + let new_reader = reader._new_reader_copied_data(reader.path.push_cloned(item_name), self)?; + self.retrieve_vr_and_source_file_map(&new_reader) + } + + /// Retrieves a node at a given path from the VectorFS core resource under a profile + pub fn _retrieve_core_resource_node_at_path( &self, - input_query: String, + path: VRPath, profile: &ShinkaiName, - ) -> Result { - let generator = self.vector_fs._get_embedding_generator(profile)?; - Ok(generator - .generate_embedding_shorten_input_default(&input_query, MAX_EMBEDDING_STRING_SIZE as u64) // TODO: remove the hard-coding of embedding string size - .await?) + ) -> Result { + let internals = self._get_profile_fs_internals_read_only(profile)?; + internals + .fs_core_resource + .retrieve_node_at_path(path.clone()) + .map_err(|_| VectorFSError::NoEntryAtPath(path.clone())) + } + + /// Validates that the path points to a FSFolder + pub fn _validate_path_points_to_folder(&self, path: VRPath, profile: &ShinkaiName) -> Result<(), VectorFSError> { + let ret_node = self._retrieve_core_resource_node_at_path(path.clone(), profile)?; + + match ret_node.node.content { + NodeContent::Resource(_) => Ok(()), + _ => Err(VectorFSError::PathDoesNotPointAtFolder(path)), + } + } + + /// Validates that the path points to a FSItem + pub fn _validate_path_points_to_item(&self, path: VRPath, profile: &ShinkaiName) -> Result<(), VectorFSError> { + let ret_node = self._retrieve_core_resource_node_at_path(path.clone(), profile)?; + + match ret_node.node.content { + NodeContent::VRHeader(_) => Ok(()), + _ => Err(VectorFSError::PathDoesNotPointAtItem(path.clone())), + } + } + + /// Validates that the path points to any FSEntry, meaning that something exists at that path + pub fn _validate_path_points_to_entry(&self, path: VRPath, profile: &ShinkaiName) -> Result<(), VectorFSError> { + self._retrieve_core_resource_node_at_path(path, profile).map(|_| ()) } } diff --git a/src/vector_fs/vector_fs_search.rs b/src/vector_fs/vector_fs_search.rs new file mode 100644 index 000000000..f3e42fd96 --- /dev/null +++ b/src/vector_fs/vector_fs_search.rs @@ -0,0 +1,303 @@ +use super::vector_fs_types::FSItem; +use super::{vector_fs::VectorFS, vector_fs_error::VectorFSError, vector_fs_reader::VFSReader}; +use crate::vector_fs::vector_fs_permissions::PermissionsIndex; +use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; +use shinkai_vector_resources::embedding_generator::{EmbeddingGenerator, RemoteEmbeddingGenerator}; +use shinkai_vector_resources::embeddings::MAX_EMBEDDING_STRING_SIZE; +use shinkai_vector_resources::source::SourceFileMap; +use shinkai_vector_resources::vector_resource::{BaseVectorResource, LimitTraversalMode, Node, NodeContent, VRHeader}; +use shinkai_vector_resources::{ + embeddings::Embedding, + vector_resource::{ + RetrievedNode, TraversalMethod, TraversalOption, VRPath, VectorResource, VectorResourceCore, + VectorResourceSearch, + }, +}; +use std::collections::HashMap; + +/// A retrieved node from within a Vector Resource inside of the VectorFS. +/// Includes the path of the FSItem in the VectorFS and the retrieved node +/// from the Vector Resource inside the FSItem's path. +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub struct FSRetrievedNode { + fs_item_path: VRPath, + pub resource_retrieved_node: RetrievedNode, +} + +impl FSRetrievedNode { + /// Creates a new FSRetrievedNode. + pub fn new(fs_item_path: VRPath, resource_retrieved_node: RetrievedNode) -> Self { + FSRetrievedNode { + fs_item_path, + resource_retrieved_node, + } + } + /// Returns the path of the FSItem the node was from + pub fn fs_item_path(&self) -> VRPath { + self.fs_item_path.clone() + } + + /// Returns the name of the FSItem the node was from + pub fn fs_item_name(&self) -> String { + self.resource_retrieved_node.resource_header.resource_name.to_string() + } + + /// Returns the reference_string of the FSItem (db key where the VR is stored) + pub fn reference_string(&self) -> String { + self.resource_retrieved_node.resource_header.reference_string() + } + + /// Returns the similarity score of the retrieved node + pub fn score(&self) -> f32 { + self.resource_retrieved_node.score + } +} + +impl VectorFS { + /// Generates an Embedding for the input query to be used in a Vector Search in the VecFS. + /// This automatically uses the correct default embedding model for the given profile. + pub async fn generate_query_embedding( + &self, + input_query: String, + profile: &ShinkaiName, + ) -> Result { + let generator = self._get_embedding_generator(profile)?; + Ok(generator + .generate_embedding_shorten_input_default(&input_query, MAX_EMBEDDING_STRING_SIZE as u64) // TODO: remove the hard-coding of embedding string size + .await?) + } + + /// Generates an Embedding for the input query to be used in a Vector Search in the VecFS. + /// This automatically uses the correct default embedding model for the given profile in reader. + pub async fn generate_query_embedding_using_reader( + &self, + input_query: String, + reader: &VFSReader, + ) -> Result { + self.generate_query_embedding(input_query, &reader.profile).await + } + + /// Performs a "deep" vector search into the VectorFS starting at the reader's path, + /// first finding the num_of_resources_to_search_into most relevant FSItems, then performing another + /// vector search into each Vector Resource (inside the FSItem) to find and return the highest scored nodes. + pub fn vector_search_fs_retrieved_node( + &mut self, + reader: &VFSReader, + query: Embedding, + num_of_resources_to_search_into: u64, + num_of_results: u64, + ) -> Result, VectorFSError> { + let mut ret_nodes = Vec::new(); + let mut fs_path_hashmap = HashMap::new(); + let items = self.vector_search_fs_item(reader, query.clone(), num_of_resources_to_search_into)?; + + for item in items { + println!("Item: {:?}", item); + // Create a new reader at the path of the fs_item, and then fetch the VR from there + let new_reader = reader._new_reader_copied_data(item.path.clone(), self)?; + let resource = self.retrieve_vector_resource(&new_reader)?; + + // Store the VectorFS path of the item in the hashmap for use later + fs_path_hashmap.insert(resource.as_trait_object().reference_string(), item.path); + + // Perform the internal vector search into the resource itself + let results = resource.as_trait_object().vector_search(query.clone(), num_of_results); + println!("\nResults: {:?}\n\n", results); + ret_nodes.extend(results); + } + + let mut final_results = vec![]; + for node in RetrievedNode::sort_by_score(&ret_nodes, num_of_results) { + let fs_path = fs_path_hashmap.get(&node.resource_header.reference_string()).ok_or( + VectorFSError::FailedGettingFSPathOfRetrievedNode(node.resource_header.reference_string()), + )?; + final_results.push(FSRetrievedNode::new(fs_path.clone(), node)) + } + Ok(final_results) + } + + /// Performs a vector search into the VectorFS starting at the reader's path, + /// returning the retrieved FSItems extracted from the VRHeader-holding nodes + pub fn vector_search_fs_item( + &self, + reader: &VFSReader, + query: Embedding, + num_of_results: u64, + ) -> Result, VectorFSError> { + let ret_nodes = + self._vector_search_core(reader, query, num_of_results, TraversalMethod::Exhaustive, &vec![])?; + let internals = self._get_profile_fs_internals_read_only(&reader.profile)?; + + let mut fs_items = vec![]; + for ret_node in ret_nodes { + println!("Ret Node: {:?}", ret_node); + if let NodeContent::VRHeader(_) = ret_node.node.content { + fs_items.push(FSItem::from_vr_header_node( + ret_node.node, + ret_node.retrieval_path, + &internals.last_read_index, + )?) + } + } + Ok(fs_items) + } + + /// Performs a vector search into the VectorFS starting at the reader's path, + /// returning the retrieved (BaseVectorResource, SourceFileMap) pairs of the most + /// similar FSItems. + pub fn vector_search_vr_and_source_file_map( + &mut self, + reader: &VFSReader, + query: Embedding, + num_of_results: u64, + ) -> Result, VectorFSError> { + let items = self.vector_search_fs_item(reader, query, num_of_results)?; + let mut results = vec![]; + + for item in items { + let res_pair = self.retrieve_vr_and_source_file_map_in_folder(reader, item.name())?; + results.push(res_pair); + } + Ok(results) + } + + /// Performs a vector search into the VectorFS starting at the reader's path, + /// returning the retrieved BaseVectorResources which are the most similar. + pub fn vector_search_vector_resource( + &mut self, + reader: &VFSReader, + query: Embedding, + num_of_results: u64, + ) -> Result, VectorFSError> { + let items = self.vector_search_fs_item(reader, query, num_of_results)?; + let mut results = vec![]; + + for item in items { + let res = self.retrieve_vector_resource_in_folder(reader, item.name())?; + results.push(res); + } + Ok(results) + } + + /// Performs a vector search into the VectorFS starting at the reader's path, + /// returning the retrieved SourceFileMap which are the most similar. + pub fn vector_search_source_file_map( + &mut self, + reader: &VFSReader, + query: Embedding, + num_of_results: u64, + ) -> Result, VectorFSError> { + let items = self.vector_search_fs_item(reader, query, num_of_results)?; + let mut results = vec![]; + + for item in items { + let res = self.retrieve_source_file_map_in_folder(reader, item.name())?; + results.push(res); + } + Ok(results) + } + + /// Performs a vector search into the VectorFS starting at the reader's path, + /// returning the retrieved VRHeaders extracted from the nodes + pub fn vector_search_vr_header( + &self, + reader: &VFSReader, + query: Embedding, + num_of_results: u64, + ) -> Result, VectorFSError> { + let ret_nodes = + self._vector_search_core(reader, query, num_of_results, TraversalMethod::Exhaustive, &vec![])?; + let mut vr_headers = Vec::new(); + + for node in ret_nodes { + if let NodeContent::VRHeader(vr_header) = node.node.content { + vr_headers.push(vr_header); + } + } + + Ok(vr_headers) + } + + /// Core method all VectorFS vector searches *must* use. Performs a vector search into the VectorFS at + /// the specified path in reader, returning the retrieved VRHeader nodes. + /// Automatically inspects traversal_options to guarantee folder permissions, and any other must-have options + /// are always respected. + fn _vector_search_core( + &self, + reader: &VFSReader, + query: Embedding, + num_of_results: u64, + traversal_method: TraversalMethod, + traversal_options: &Vec, + ) -> Result, VectorFSError> { + let mut traversal_options = traversal_options.clone(); + let internals = self._get_profile_fs_internals_read_only(&reader.profile)?; + let stringified_permissions_map = internals + .permissions_index + .export_permissions_hashmap_with_reader(reader); + + // Search without unique scoring (ie. hierarchical) because "folders" have no content/real embedding. + // Also remove any set traversal limit, so we can enforce folder permission traversal limiting. + traversal_options.retain(|option| match option { + TraversalOption::SetTraversalLimiting(_) | TraversalOption::SetScoringMode(_) => false, + _ => true, + }); + + // Enforce folder permissions are respected + traversal_options.push(TraversalOption::SetTraversalLimiting( + LimitTraversalMode::LimitTraversalByValidationWithMap(( + _permissions_validation_func, + stringified_permissions_map, + )), + )); + + println!( + "Core resource node count: {}", + internals.fs_core_resource.get_nodes().len() + ); + + let results = internals.fs_core_resource.vector_search_customized( + query, + num_of_results, + traversal_method, + &traversal_options, + Some(reader.path.clone()), + ); + + println!("Results: {:?}", results); + + Ok(results) + } +} + +/// Internal validation function used by all VectorFS vector searches, in order to validate permissions of +/// VR-holding nodes while the search is traversing. +fn _permissions_validation_func(_: &Node, path: &VRPath, hashmap: HashMap) -> bool { + // If the specified path has no permissions, then the default is to now allow traversing deeper + if !hashmap.contains_key(path) { + println!(" path being checked in permissions hashmap: {}", path); + println!("doesn't contain key"); + + println!("Permissions hashmap: {:?}", hashmap); + return false; + } + + // Fetch/parse the VFSReader from the hashmap + let reader = match hashmap.get(&PermissionsIndex::vfs_reader_unique_path()) { + Some(reader_json) => match VFSReader::from_json(reader_json) { + Ok(reader) => reader, + Err(_) => return false, + }, + None => return false, + }; + + println!("got reader"); + // Initialize the PermissionsIndex struct + let perm_index = PermissionsIndex::from_hashmap(reader.profile.clone(), hashmap); + + println!("initialized perm index"); + + perm_index + .validate_read_permission(&reader.requester_name, path) + .is_ok() +} diff --git a/src/vector_fs/vector_fs_types.rs b/src/vector_fs/vector_fs_types.rs new file mode 100644 index 000000000..c1fa35968 --- /dev/null +++ b/src/vector_fs/vector_fs_types.rs @@ -0,0 +1,564 @@ +use super::vector_fs_error::VectorFSError; +use chrono::{DateTime, Utc}; +use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; +use shinkai_vector_resources::{ + resource_errors::VRError, + shinkai_time::ShinkaiTime, + vector_resource::{BaseVectorResource, MapVectorResource, Node, NodeContent, VRHeader, VRPath}, +}; +use std::{collections::HashMap, mem::discriminant}; + +/// Enum that holds the types of external-facing entries used in the VectorFS +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub enum FSEntry { + Folder(FSFolder), + Item(FSItem), + Root(FSRoot), +} + +impl FSEntry { + // Attempts to parse the FSEntry into an FSFolder + pub fn as_folder(self) -> Result { + match self { + FSEntry::Folder(folder) => Ok(folder), + FSEntry::Item(i) => Err(VectorFSError::InvalidFSEntryType(i.path.to_string())), + FSEntry::Root(root) => Err(VectorFSError::InvalidFSEntryType(root.path.to_string())), + } + } + + // Attempts to parse the FSEntry into an FSItem + pub fn as_item(self) -> Result { + match self { + FSEntry::Item(item) => Ok(item), + FSEntry::Folder(f) => Err(VectorFSError::InvalidFSEntryType(f.path.to_string())), + FSEntry::Root(root) => Err(VectorFSError::InvalidFSEntryType(root.path.to_string())), + } + } + + // Attempts to parse the FSEntry into an FSItem + pub fn as_root(self) -> Result { + match self { + FSEntry::Root(root) => Ok(root), + FSEntry::Item(item) => Err(VectorFSError::InvalidFSEntryType(item.path.to_string())), + FSEntry::Folder(f) => Err(VectorFSError::InvalidFSEntryType(f.path.to_string())), + } + } + + /// Converts the FSEntry to a JSON string + pub fn to_json(&self) -> Result { + Ok(serde_json::to_string(self)?) + } + + /// Creates a FSEntry from a JSON string + pub fn from_json(s: &str) -> Result { + Ok(serde_json::from_str(s)?) + } +} + +/// An external facing abstraction representing the VecFS root for a given profile. +/// Actual data represented by a FSRoot is the profile's Core MapVectorResource. +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub struct FSRoot { + pub path: VRPath, + pub child_folders: Vec, + pub child_items: Vec, + // Datetime when the profile's VectorFS was created + pub created_datetime: DateTime, + /// Datetime which is updated whenever any writes take place. In other words, when + /// a FSItem or FSFolder is updated/moved/renamed/deleted/etc., last written timestamp is updated. + pub last_written_datetime: DateTime, + /// Merkle root of the profile's FS + pub merkle_root: String, +} + +impl FSRoot { + /// Generates a new FSRoot from a MapVectorResource, which is expected to be the FS core resource. + pub fn from_core_vector_resource( + resource: MapVectorResource, + lr_index: &LastReadIndex, + ) -> Result { + // Generate datetime to suffice the method, this gets ignored in practice when converting back via Self::from + let current_datetime = ShinkaiTime::generate_time_now(); + let resource = BaseVectorResource::Map(resource); + let fs_folder = FSFolder::from_vector_resource(resource, VRPath::new(), lr_index, current_datetime)?; + Ok(Self::from(fs_folder)) + } +} + +impl From for FSRoot { + fn from(folder: FSFolder) -> Self { + Self { + path: folder.path, + child_folders: folder.child_folders, + child_items: folder.child_items, + created_datetime: folder.created_datetime, + last_written_datetime: folder.last_written_datetime, + merkle_root: folder.merkle_hash, + } + } +} + +/// An external facing folder abstraction used to make interacting with the VectorFS easier. +/// Actual data represented by a FSFolder is a VectorResource-holding Node. +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub struct FSFolder { + pub path: VRPath, + pub child_folders: Vec, + pub child_items: Vec, + /// Datetime the FSFolder was first created + pub created_datetime: DateTime, + /// Datetime the FSFolder was last read by any ShinkaiName + pub last_read_datetime: DateTime, + /// Datetime the FSFolder was last modified, meaning contents of the directory were changed. + /// Ie. An FSEntry is moved/renamed/deleted/new one added. + pub last_modified_datetime: DateTime, + /// Datetime the FSFolder was last written to, meaning any write took place under the folder. In other words, even when + /// a VR is updated or moved/renamed, then last written is always updated. + pub last_written_datetime: DateTime, + /// Merkle hash comprised of all of the FSEntries within this folder + pub merkle_hash: String, +} + +impl FSFolder { + /// Initializes a new FSFolder struct + pub fn new( + path: VRPath, + child_folders: Vec, + child_items: Vec, + created_datetime: DateTime, + last_written_datetime: DateTime, + last_read_datetime: DateTime, + last_modified_datetime: DateTime, + merkle_hash: String, + ) -> Self { + Self { + path, + child_folders, + child_items, + created_datetime, + last_read_datetime, + last_modified_datetime, + last_written_datetime, + merkle_hash, + } + } + + /// Initializes a new FSFolder struct with all datetimes set to the current moment. + pub fn _new_current_time( + path: VRPath, + child_folders: Vec, + child_items: Vec, + merkle_hash: String, + ) -> Self { + let now = ShinkaiTime::generate_time_now(); + Self::new( + path, + child_folders, + child_items, + now.clone(), + now.clone(), + now.clone(), + now.clone(), + merkle_hash, + ) + } + + /// Generates a new FSFolder using a BaseVectorResource holding Node + the path where the node was retrieved + /// from in the VecFS internals. + pub fn from_vector_resource_node( + node: Node, + node_fs_path: VRPath, + lr_index: &LastReadIndex, + ) -> Result { + // Process datetimes from node + let last_modified_datetime = Self::process_datetimes_from_node(&node)?; + + match node.content { + NodeContent::Resource(base_vector_resource) => { + // Call from_vector_resource with the parsed datetimes + Self::from_vector_resource(base_vector_resource, node_fs_path, lr_index, last_modified_datetime) + } + _ => Err(VRError::InvalidNodeType(node.id))?, + } + } + + /// Generates a new FSFolder from a BaseVectorResource + the path where it was retrieved + /// from inside of the VectorFS. + fn from_vector_resource( + resource: BaseVectorResource, + resource_fs_path: VRPath, + lr_index: &LastReadIndex, + last_modified_datetime: DateTime, + ) -> Result { + let mut child_folders = Vec::new(); + let mut child_items = Vec::new(); + + // Parse all of the inner nodes + for node in &resource.as_trait_object().get_nodes() { + match &node.content { + // If it's a Resource, then create a FSFolder by recursing, and push it to child_folders + NodeContent::Resource(inner_resource) => { + // Process datetimes from node + let (lm_datetime) = Self::process_datetimes_from_node(&node)?; + let new_path = resource_fs_path.push_cloned(inner_resource.as_trait_object().name().to_string()); + child_folders.push(Self::from_vector_resource( + inner_resource.clone(), + new_path, + lr_index, + lm_datetime, + )?); + } + // If it's a VRHeader, then create a FSEntry and push it to child_items + NodeContent::VRHeader(_) => { + let new_path = resource_fs_path.push_cloned(node.id.clone()); + let fs_item = FSItem::from_vr_header_node(node.clone(), new_path, lr_index)?; + child_items.push(fs_item); + } + _ => {} + } + } + + // Fetch the datetimes/merkle root, and return the created FSFolder + let last_read_datetime = lr_index.get_last_read_datetime_or_now(&resource_fs_path); + let created_datetime = resource.as_trait_object().created_datetime(); + let last_written_datetime = resource.as_trait_object().last_written_datetime(); + let merkle_hash = resource.as_trait_object().get_merkle_root()?; + Ok(Self::new( + resource_fs_path, + child_folders, + child_items, + created_datetime, + last_written_datetime, + last_read_datetime, + last_modified_datetime, + merkle_hash, + )) + } + + /// Process last_modified datetime in a Node from the VectorFS core resource. + /// The node must be an FSFolder for this to succeed. + pub fn process_datetimes_from_node(node: &Node) -> Result, VectorFSError> { + // Read last_modified_datetime from metadata + let last_modified_str = node + .metadata + .as_ref() + .and_then(|metadata| metadata.get(&Self::last_modified_key())) + .ok_or(VectorFSError::InvalidMetadata(Self::last_modified_key()))?; + + // Parse the datetime string + let last_modified_datetime = ShinkaiTime::from_rfc3339_string(last_modified_str) + .map_err(|_| VectorFSError::InvalidMetadata(Self::last_modified_key()))?; + + Ok(last_modified_datetime) + } + + /// Returns the metadata key for the last modified datetime. + pub fn last_modified_key() -> String { + String::from("last_modified") + } +} + +/// An external facing "file" abstraction used to make interacting with the VectorFS easier. +/// Each FSItem always represents a single stored VectorResource, which sometimes also has an optional SourceFileMap. +/// Actual data represented by a FSItem is a VRHeader-holding Node. +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub struct FSItem { + /// Path where the FSItem is held in the VectorFS + pub path: VRPath, + /// The VRHeader matching the Vector Resource stored at this FSItem's path + pub vr_header: VRHeader, + /// Datetime the Vector Resource in the FSItem was first created + pub created_datetime: DateTime, + /// Datetime the Vector Resource in the FSItem was last written to, meaning any updates to its contents. + pub last_written_datetime: DateTime, + /// Datetime the FSItem was last read by any ShinkaiName + pub last_read_datetime: DateTime, + /// Datetime the Vector Resource in the FSItem was last saved/updated. + /// For example when saving a VR into the FS that someone else generated on their node, last_written and last_saved will be different. + pub vr_last_saved_datetime: DateTime, + /// Datetime the SourceFileMap in the FSItem was last saved/updated. None if no SourceFileMap was ever saved. + pub source_file_map_last_saved_datetime: Option>, + /// The original location where the VectorResource/SourceFileMap in this FSItem were downloaded/fetched/synced from. + pub distribution_origin: DistributionOrigin, + /// The size of the Vector Resource in this FSItem + pub vr_size: usize, + /// The size of the SourceFileMap in this FSItem. Will be 0 if no SourceFiles are saved. + pub source_file_map_size: usize, + /// Merkle hash, which is in fact the merkle root of the Vector Resource stored in the FSItem + pub merkle_hash: String, +} + +impl FSItem { + /// Initialize a new FSItem struct + pub fn new( + path: VRPath, + vr_header: VRHeader, + created_datetime: DateTime, + last_written_datetime: DateTime, + last_read_datetime: DateTime, + vr_last_saved_datetime: DateTime, + source_file_map_last_saved_datetime: Option>, + distribution_origin: DistributionOrigin, + vr_size: usize, + source_file_map_size: usize, + merkle_hash: String, + ) -> Self { + Self { + path, + vr_header, + created_datetime, + last_written_datetime, + last_read_datetime, + vr_last_saved_datetime, + source_file_map_last_saved_datetime, + distribution_origin, + vr_size, + source_file_map_size, + merkle_hash, + } + } + + /// Returns the name of the FSItem (based on the name in VRHeader) + pub fn name(&self) -> String { + self.vr_header.resource_name.to_string() + } + + /// DB key where the Vector Resource matching this FSEntry is held. + /// Uses the VRHeader reference string. Equivalent to self.resource_reference_string(). + pub fn resource_db_key(&self) -> String { + self.vr_header.reference_string() + } + + /// Returns the VRHeader's reference string. Equivalent to self.resource_db_key(). + pub fn resource_reference_string(&self) -> String { + self.vr_header.reference_string() + } + + /// Returns the DB key where the SourceFileMap matching this FSEntry is held. + /// If the FSEntry is marked as having no source file map saved, then returns an VectorFSError. + pub fn source_file_map_db_key(&self) -> Result { + if self.is_source_file_map_saved() { + Ok(self.resource_db_key()) + } else { + Err(VectorFSError::NoSourceFileAvailable(self.vr_header.reference_string())) + } + } + + /// Checks the last saved datetime to determine if it was ever saved into the FSDB + pub fn is_source_file_map_saved(&self) -> bool { + self.source_file_map_last_saved_datetime.is_some() + } + + /// Generates a new FSItem using a VRHeader holding Node + the path where the node was retrieved + /// from in the VecFS internals. Use VRPath::new() if the path is root. + pub fn from_vr_header_node( + node: Node, + node_fs_path: VRPath, + lr_index: &LastReadIndex, + ) -> Result { + match &node.content { + NodeContent::VRHeader(header) => { + // Process data from node metadata + let (vr_last_saved_datetime, source_file_map_last_saved) = Self::process_datetimes_from_node(&node)?; + let last_read_datetime = lr_index.get_last_read_datetime_or_now(&node_fs_path); + let (vr_size, sfm_size) = Self::process_sizes_from_node(&node)?; + let distribution_origin = Self::process_distribution_origin(&node)?; + let merkle_hash = node.get_merkle_hash()?; + + Ok(FSItem::new( + node_fs_path, + header.clone(), + header.resource_created_datetime, + header.resource_last_written_datetime, + last_read_datetime, + vr_last_saved_datetime, + source_file_map_last_saved, + distribution_origin, + vr_size, + sfm_size, + merkle_hash, + )) + } + + _ => Err(VRError::InvalidNodeType(node.id))?, + } + } + + /// Process the two last_saved datetimes in a Node from the VectorFS core resource. + /// The node must be an FSItem for this to succeed. + pub fn process_datetimes_from_node(node: &Node) -> Result<(DateTime, Option>), VectorFSError> { + // Read last_saved_datetime from metadata + let last_saved_str = node + .metadata + .as_ref() + .and_then(|metadata| metadata.get(&Self::vr_last_saved_metadata_key())) + .ok_or(VectorFSError::InvalidMetadata(Self::vr_last_saved_metadata_key()))?; + + // Parse the datetime strings + let last_saved_datetime = ShinkaiTime::from_rfc3339_string(last_saved_str) + .map_err(|_| VectorFSError::InvalidMetadata(Self::vr_last_saved_metadata_key()))?; + + // Read source_file_map_saved from metadata, and convert it back into a DateTime + let source_file_map_last_saved = match node + .metadata + .as_ref() + .and_then(|metadata| metadata.get(&FSItem::source_file_map_last_saved_metadata_key())) + { + Some(s) => Some(ShinkaiTime::from_rfc3339_string(s)?), + None => None, + }; + + Ok((last_saved_datetime, source_file_map_last_saved)) + } + + /// Process the two sizes stored in metadata in an FSItem Node from the VectorFS core resource. + /// The node must be an FSItem for this to succeed. + pub fn process_sizes_from_node(node: &Node) -> Result<(usize, usize), VectorFSError> { + let vr_size_str = node + .metadata + .as_ref() + .and_then(|metadata| metadata.get(&Self::vr_size_metadata_key())); + let vr_size = match vr_size_str { + Some(s) => s + .parse::() + .map_err(|_| VectorFSError::InvalidMetadata(Self::vr_size_metadata_key()))?, + None => 0, + }; + + let sfm_size_str = node + .metadata + .as_ref() + .and_then(|metadata| metadata.get(&Self::source_file_map_size_metadata_key())); + let sfm_size = match sfm_size_str { + Some(s) => s + .parse::() + .map_err(|_| VectorFSError::InvalidMetadata(Self::source_file_map_size_metadata_key()))?, + None => 0, + }; + + Ok((vr_size, sfm_size)) + } + + /// Process the distribution origin stored in metadata in an FSItem Node from the VectorFS core resource. + /// The node must be an FSItem for this to succeed. + pub fn process_distribution_origin(node: &Node) -> Result { + let dist_origin_str = node + .metadata + .as_ref() + .and_then(|metadata| metadata.get(&Self::distribution_origin_metadata_key())) + .ok_or(VectorFSError::InvalidMetadata(Self::distribution_origin_metadata_key()))?; + Ok(DistributionOrigin::from_json(dist_origin_str)?) + } + + /// Returns the metadata key for the Vector Resource last saved datetime. + pub fn vr_last_saved_metadata_key() -> String { + String::from("vr_last_saved") + } + + /// Metadata key where Vector Resource's size will be found in a Node. + pub fn vr_size_metadata_key() -> String { + String::from("vr_size") + } + + /// Metadata key where Source File Map's last saved datetime will be found in a Node. + pub fn source_file_map_last_saved_metadata_key() -> String { + String::from("sfm_last_saved") + } + + /// Metadata key where SourceFileMap's size will be found in a Node. + pub fn source_file_map_size_metadata_key() -> String { + String::from("sfm_size") + } + + /// Metadata key where DistributionOrigin will be found in a Node. + pub fn distribution_origin_metadata_key() -> String { + String::from("dist_origin") + } +} + +/// TODO: Implement SubscriptionsIndex later on when it's relevant. For now struct exists +/// to have types roughly in place. +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub struct SubscriptionsIndex { + pub index: HashMap>, +} + +impl SubscriptionsIndex { + // Creates a new SubscriptionsIndex with the provided index + pub fn new(index: HashMap>) -> Self { + Self { index } + } + + // Creates a new SubscriptionsIndex with an empty index + pub fn new_empty() -> Self { + Self { index: HashMap::new() } + } +} + +/// An active in-memory index which holds the last read Datetime of any +/// accessed paths in the VectorFS +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub struct LastReadIndex { + pub index: HashMap, ShinkaiName)>, +} + +impl LastReadIndex { + // Creates a new LastReadIndex with the provided index + pub fn new(index: HashMap, ShinkaiName)>) -> Self { + Self { index } + } + + // Creates a new LastReadIndex with an empty index + pub fn new_empty() -> Self { + Self { index: HashMap::new() } + } + + // Updates the last read datetime and name for a given path + pub fn update_path_last_read(&mut self, path: VRPath, datetime: DateTime, name: ShinkaiName) { + self.index.insert(path, (datetime, name)); + } + + // Retrieves the last read DateTime and ShinkaiName for a given path + pub fn get_last_read(&self, path: &VRPath) -> Option<&(DateTime, ShinkaiName)> { + self.index.get(path) + } + + // Retrieves the DateTime when the the FSEntry at the given path was last read + pub fn get_last_read_datetime(&self, path: &VRPath) -> Option<&DateTime> { + self.index.get(path).map(|tuple| &tuple.0) + } + + // Retrieves the ShinkaiName who last read the FSEntry at the given path + pub fn get_last_read_name(&self, path: &VRPath) -> Option<&ShinkaiName> { + self.index.get(path).map(|tuple| &tuple.1) + } + + // Retrieves the DateTime when the the FSEntry at the given path was last read, or the current time if not found + pub fn get_last_read_datetime_or_now(&self, path: &VRPath) -> DateTime { + self.get_last_read_datetime(path) + .cloned() + .unwrap_or_else(|| ShinkaiTime::generate_time_now()) + } +} + +/// The origin where a VectorResource was downloaded/acquired from before it arrived +/// in the node's VectorFS +#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] +pub enum DistributionOrigin { + Uri(String), + ShinkaiNode((ShinkaiName, VRPath)), + Other(String), + None, +} + +impl DistributionOrigin { + // Converts the DistributionOrigin to a JSON string + pub fn to_json(&self) -> Result { + serde_json::to_string(self) + } + + // Creates a DistributionOrigin from a JSON string + pub fn from_json(json: &str) -> Result { + serde_json::from_str(json) + } +} diff --git a/src/vector_fs/vector_fs_writer.rs b/src/vector_fs/vector_fs_writer.rs index 005cd8af3..ff5238aa2 100644 --- a/src/vector_fs/vector_fs_writer.rs +++ b/src/vector_fs/vector_fs_writer.rs @@ -1,75 +1,402 @@ +use super::vector_fs_types::{DistributionOrigin, FSFolder, FSItem}; +use super::{vector_fs::VectorFS, vector_fs_error::VectorFSError, vector_fs_reader::VFSReader}; use crate::db::db::ProfileBoundWriteBatch; - -use super::{fs_error::VectorFSError, vector_fs::VectorFS, vector_fs_reader::VFSReader}; +use crate::vector_fs::vector_fs_permissions::{ReadPermission, WritePermission}; +use chrono::{DateTime, Utc}; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_vector_resources::vector_search_traversal::{VRHeader, VRPath}; +use shinkai_vector_resources::resource_errors::VRError; +use shinkai_vector_resources::shinkai_time::ShinkaiTime; +use shinkai_vector_resources::source::SourceFileMap; +use shinkai_vector_resources::vector_resource::{NodeContent, RetrievedNode, SourceFileType}; +use shinkai_vector_resources::{ + embeddings::Embedding, + source::SourceFile, + vector_resource::{BaseVectorResource, MapVectorResource, Node, VRHeader, VRPath, VRSource, VectorResourceCore}, +}; +use std::collections::HashMap; +use std::process::ExitStatus; -/// A struct that allows performing write actions on the VectorFS under a profile/at a specific path. +/// A struct that represents having rights to write to the VectorFS under a profile/at a specific path. /// If a VFSWriter struct is constructed, that means the `requester_name` has passed /// permissions validation and is thus allowed to write to `path`. -pub struct VFSWriter<'a> { +pub struct VFSWriter { pub requester_name: ShinkaiName, pub path: VRPath, - pub vector_fs: &'a mut VectorFS, pub profile: ShinkaiName, } -impl<'a> VFSWriter<'a> { +impl VFSWriter { /// Creates a new VFSWriter if the `requester_name` passes read permission validation check. pub fn new( requester_name: ShinkaiName, path: VRPath, - vector_fs: &'a mut VectorFS, + vector_fs: &mut VectorFS, profile: ShinkaiName, ) -> Result { let writer = VFSWriter { requester_name: requester_name.clone(), path: path.clone(), - vector_fs, profile: profile.clone(), }; - // Validate read permissions - let fs_internals = writer.vector_fs._get_profile_fs_internals_read_only(&profile)?; - if !fs_internals + // Validate write permissions to ensure requester_name has rights + let fs_internals = vector_fs._get_profile_fs_internals_read_only(&profile)?; + if fs_internals .permissions_index .validate_read_permission(&requester_name, &path) + .is_err() { return Err(VectorFSError::InvalidWriterPermission(requester_name, profile, path)); } + // Once permission verified, saves the datatime into the FSDB as stored logs. + let current_datetime = ShinkaiTime::generate_time_now(); + let mut write_batch = ProfileBoundWriteBatch::new_vfs_batch(&profile)?; + vector_fs + .db + .wb_add_write_access_log(requester_name, &path, current_datetime, profile, &mut write_batch)?; + vector_fs.db.write_pb(write_batch)?; + Ok(writer) } - /// Generates a VFSReader using data held in VFSWriter. This is an internal method to improve ease of use of - /// generating a Reader for specific write operations which may need it. - pub fn _reader(&'a self, path: VRPath, profile: ShinkaiName) -> Result, VectorFSError> { - VFSReader::new(self.requester_name.clone(), path, self.vector_fs, profile) + /// Generates a VFSReader using the same requester_name/profile held in self. + /// Read permissions are verified before the VFSReader is produced. + pub fn _new_reader_copied_data(&self, path: VRPath, vector_fs: &mut VectorFS) -> Result { + VFSReader::new(self.requester_name.clone(), path, vector_fs, self.profile.clone()) + } + + /// Generates a VFSWriter using the same requester_name/profile held in self. + /// Write permissions are verified before the VFSWriter is produced. + pub fn _new_writer_copied_data(&self, path: VRPath, vector_fs: &mut VectorFS) -> Result { + VFSWriter::new(self.requester_name.clone(), path, vector_fs, self.profile.clone()) } - // /// Internal method used to add a VRHeader into the core resource of a profile's VectorFS internals in memory. - // pub fn _memory_add_vr_header_to_core_resource(&mut self, vr_header: VRHeader) -> Result<(), VectorFSError> { - // let mut internals = self.vector_fs._get_profile_fs_internals(&self.profile)?; - - // if let Some(embedding) = vr_header.resource_embedding { - // if vr_header.resource_embedding_model_used == internals.default_embedding_model() { - // // save to source resource in internals - // Ok(()) - // } else { - // return Err(VectorFSError::EmbeddingModelTypeMismatch( - // vr_header.resource_embedding_model_used, - // internals.default_embedding_model(), - // )); - // } - // } else { - // return Err(VectorFSError::EmbeddingMissingInResource); - // } + /// Generates a new empty ProfileBoundWiteBatch using the profile in the Writer + fn new_write_batch(&self) -> Result { + ProfileBoundWriteBatch::new_vfs_batch(&self.profile) + } +} + +impl VectorFS { + /// Saves a Vector Resource and optional SourceFile underneath the FSFolder at the specified path. + /// If a VR with the same name already exists underneath the current path, then overwrites it. + /// Currently does not support saving into VecFS root. + pub fn create_new_folder(&mut self, writer: &VFSWriter, folder_name: &str) -> Result { + // Create a new MapVectorResource which represents a folder + let current_datetime = ShinkaiTime::generate_time_now(); + let new_vr = BaseVectorResource::Map(MapVectorResource::new_empty(folder_name, None, VRSource::None, true)); + let embedding = Embedding::new("", vec![]); // Empty embedding as folders do not score in VecFS search + + // Setup default metadata for new folder node + let mut metadata = HashMap::new(); + metadata.insert(FSFolder::last_modified_key(), current_datetime.to_rfc3339()); + + // Add the folder into the internals + let new_folder = + self._add_existing_vr_to_core_resource(writer, new_vr, embedding, Some(metadata), current_datetime)?; + let new_folder_path = new_folder.path.clone(); + + // Add private read/write permission for the folder path + { + let internals = self._get_profile_fs_internals(&writer.profile)?; + internals.permissions_index.insert_path_permission( + new_folder_path, + ReadPermission::Private, + WritePermission::Private, + )?; + } + + // Save the FSInternals into the FSDB + let internals = self._get_profile_fs_internals_read_only(&writer.profile)?; + let mut write_batch = writer.new_write_batch()?; + self.db.wb_save_profile_fs_internals(internals, &mut write_batch)?; + self.db.write_pb(write_batch)?; + + return Ok(new_folder); + } + + /// Saves a Vector Resource and optional SourceFile underneath the FSFolder at the specified path. + /// If a VR with the same name already exists underneath the current path, then updates(overwrites) it. + /// Does not support saving into VecFS root. + pub fn save_vector_resource_in_folder( + &mut self, + writer: &VFSWriter, + resource: BaseVectorResource, + source_file_map: Option, + distribution_origin: DistributionOrigin, + ) -> Result { + let batch = ProfileBoundWriteBatch::new(&writer.profile); + let mut resource = resource; + let vr_header = resource.as_trait_object().generate_resource_header(); + let source_db_key = vr_header.reference_string(); + let resource_name = SourceFileType::clean_string_of_extension(resource.as_trait_object().name()); + resource.as_trait_object_mut().set_name(resource_name.clone()); + let node_path = writer.path.push_cloned(resource_name.to_string()); + let mut node_metadata = None; + let mut node_at_path_already_exists = false; + let mut new_item = None; + + { + let internals = self._get_profile_fs_internals(&writer.profile)?; + + // Ensure path of writer points at a folder before proceeding + self._validate_path_points_to_folder(writer.path.clone(), &writer.profile)?; + // If an existing FSFolder is already saved at the node path, return error. + if let Ok(_) = self._validate_path_points_to_folder(node_path.clone(), &writer.profile) { + return Err(VectorFSError::CannotOverwriteFolder(node_path.clone())); + } + // If an existing FSItem is saved at the node path + if let Ok(_) = self._validate_path_points_to_item(node_path.clone(), &writer.profile) { + if let Ok(ret_node) = self._retrieve_core_resource_node_at_path(node_path.clone(), &writer.profile) { + node_metadata = ret_node.node.metadata.clone(); + node_at_path_already_exists = true; + } + } + // Check if an existing VR is saved in the FSDB with the same reference string. If so, re-generate id of the current resource. + if let Ok(_) = self + .db + .get_resource(&resource.as_trait_object().reference_string(), &writer.profile) + { + resource.as_trait_object_mut().generate_and_update_resource_id(); + } + + // Now all validation checks/setup have passed, move forward with saving header/resource/source file + let current_datetime = ShinkaiTime::generate_time_now(); + // Update the metadata keys of the FSItem node + let mut node_metadata = node_metadata.unwrap_or_else(|| HashMap::new()); + node_metadata.insert(FSItem::vr_last_saved_metadata_key(), current_datetime.to_rfc3339()); + if let Some(sfm) = &source_file_map { + // Last Saved SFM + node_metadata.insert( + FSItem::source_file_map_last_saved_metadata_key(), + current_datetime.to_rfc3339(), + ); + // SFM Size + let sfm_size = sfm.encoded_size()?; + node_metadata.insert(FSItem::source_file_map_size_metadata_key(), sfm_size.to_string()); + } + // Update distribution_origin key in metadata + node_metadata.insert( + FSItem::distribution_origin_metadata_key(), + distribution_origin.to_json()?, + ); + // Update vr_size key in metadata + let vr_size = resource.as_trait_object().encoded_size()?; + node_metadata.insert(FSItem::vr_size_metadata_key(), vr_size.to_string()); + + // Now after updating the metadata, finally save the VRHeader Node into the core vector resource + { + new_item = Some(self._add_vr_header_to_core_resource( + writer, + vr_header, + Some(node_metadata), + current_datetime, + node_at_path_already_exists, + )?); + } + } + + // Finally saving the resource, the source file (if it was provided), and the FSInternals into the FSDB + let mut write_batch = writer.new_write_batch()?; + if let Some(sfm) = source_file_map { + self.db + .wb_save_source_file_map(&sfm, &source_db_key, &mut write_batch)?; + } + self.db.wb_save_resource(&resource, &mut write_batch)?; + let internals = self._get_profile_fs_internals_read_only(&writer.profile)?; + self.db.wb_save_profile_fs_internals(internals, &mut write_batch)?; + self.db.write_pb(write_batch)?; + + if let Some(item) = new_item { + Ok(item) + } else { + Err(VectorFSError::NoEntryAtPath(node_path)) + } + } + + // /// Updates the SourceFile attached to a Vector Resource (FSItem) underneath the current path. + // /// If no VR (FSItem) with the same name already exists underneath the current path, then errors. + // pub fn update_source_file(&mut self,) { + + // Don't forget to update the sourcefile map last saved metadata key + // if source_file_map.is_some() { + // node_metadata.insert( + // FSItem::source_file_map_last_saved_metadata_key(), + // current_datetime.to_rfc3339(), + // ); // } - // /// Saves a Vector Resource into the VectorFS. If a VR with the same id already exists and writing to the - // /// same path, then overwrites the existing VR. If same id, but writing to a different path, then a new id - // /// is generated/set for the input VR and it is saved separately in the fs_db. - // /// If an source_file is provided then it likewise follows the same update logic just like the VR. - // pub fn save_vector_resource(&mut self, resource: BaseVectorResource) { - // } + // } + + // /// Attempts to update the FSItem at the VFSWriter's path by mutating it's SourceFileMap (if available) + // /// by attaching the `original_creation_datetime` to the SourceFile at `source_file_map_path` in the map. + // pub fn update_source_file_original_creation_datetime( + // &mut self, + // writer: &VFSWriter, + // source_file_map_path: VRPath, + // original_creation_datetime: DateTime, + // ) -> Result<(), VectorFSError> { + // } + + /// Internal method used to add a VRHeader into the core resource of a profile's VectorFS internals in memory. + fn _add_vr_header_to_core_resource( + &mut self, + writer: &VFSWriter, + vr_header: VRHeader, + metadata: Option>, + current_datetime: DateTime, + node_at_path_already_exists: bool, + ) -> Result { + let internals = self._get_profile_fs_internals(&writer.profile)?; + let new_node_path = writer.path.push_cloned(vr_header.resource_name.clone()); + + // Mutator method for inserting the VR header and updating the last_modified metadata of parent folder + let mut mutator = |node: &mut Node, embedding: &mut Embedding| -> Result<(), VRError> { + // If no existing node is stored with the same id, then this is adding a new node so update last_modified key + if !node_at_path_already_exists { + node.metadata + .as_mut() + .map(|m| m.insert(FSFolder::last_modified_key(), current_datetime.to_rfc3339())); + } + // Setup the new node & insert it + let node_id = vr_header.resource_name.clone(); + let resource = node.get_vector_resource_content_mut()?; + let new_vr_header_node = Node::new_vr_header(node_id, &vr_header, metadata.clone(), &vec![]); + resource.as_trait_object_mut().insert_node( + vr_header.resource_name.clone(), + new_vr_header_node, + embedding.clone(), + Some(current_datetime), + )?; + Ok(()) + }; + + // If an embedding exists on the VR, and it is generated using the same embedding model + if let Some(_) = vr_header.resource_embedding.clone() { + if vr_header.resource_embedding_model_used == internals.default_embedding_model() { + internals + .fs_core_resource + .mutate_node_at_path(writer.path.clone(), &mut mutator)?; + // Update last read of the new FSItem + internals.last_read_index.update_path_last_read( + new_node_path.clone(), + current_datetime, + writer.requester_name.clone(), + ); + + let retrieved_node = internals + .fs_core_resource + .retrieve_node_at_path(new_node_path.clone())?; + let new_item = FSItem::from_vr_header_node( + retrieved_node.node, + new_node_path.clone(), + &internals.last_read_index, + )?; + Ok(new_item) + } else { + return Err(VectorFSError::EmbeddingModelTypeMismatch( + vr_header.resource_embedding_model_used, + internals.default_embedding_model(), + )); + } + } else { + return Err(VectorFSError::EmbeddingMissingInResource(vr_header.resource_name)); + } + } + + /// Internal method used to add an existing VectorResource into the core resource of a profile's VectorFS internals in memory. + /// Aka, add a folder into the VectorFS under the given path. + fn _add_existing_vr_to_core_resource( + &mut self, + writer: &VFSWriter, + resource: BaseVectorResource, + embedding: Embedding, + metadata: Option>, + current_datetime: DateTime, + ) -> Result { + let resource_name = resource.as_trait_object().name().to_string(); + let new_node_path = writer.path.push_cloned(resource_name.clone()); + // Check if anything exists at the new node's path and error if so (cannot overwrite an existing FSEntry) + if let Ok(_) = self._validate_path_points_to_entry(new_node_path.clone(), &writer.profile) { + return Err(VectorFSError::EntryAlreadyExistsAtPath(new_node_path)); + } + + // Fetch FSInternals + let internals = self._get_profile_fs_internals(&writer.profile)?; + + // Check if parent is root, if so then direct insert into root and return, else proceed + if writer.path.is_empty() { + let new_node = Node::new_vector_resource(resource_name.clone(), &resource, metadata.clone()); + internals + .fs_core_resource + .insert_node(resource_name.clone(), new_node.clone(), embedding.clone(), None)?; + // Update last read of the new FSFolder + internals.last_read_index.update_path_last_read( + new_node_path.clone(), + current_datetime, + writer.requester_name.clone(), + ); + + let folder = FSFolder::from_vector_resource_node(new_node, new_node_path, &internals.last_read_index)?; + return Ok(folder); + } + + // Mutator method for inserting the VR and updating the last_modified metadata of parent folder + let mut mutator = |node: &mut Node, _: &mut Embedding| -> Result<(), VRError> { + // Update last_modified key of the parent folder + node.metadata + .as_mut() + .map(|m| m.insert(FSFolder::last_modified_key(), current_datetime.to_rfc3339())); + // Create the new folder child node and insert it + let new_node = Node::new_vector_resource(resource_name.clone(), &resource, metadata.clone()); + let resource = node.get_vector_resource_content_mut()?; + resource + .as_trait_object_mut() + .insert_node(resource_name.clone(), new_node, embedding.clone(), None)?; + Ok(()) + }; + + internals + .fs_core_resource + .mutate_node_at_path(writer.path.clone(), &mut mutator)?; + // Update last read of the new FSFolder + internals.last_read_index.update_path_last_read( + new_node_path.clone(), + current_datetime, + writer.requester_name.clone(), + ); + + let retrieved_node = internals + .fs_core_resource + .retrieve_node_at_path(new_node_path.clone())?; + let folder = + FSFolder::from_vector_resource_node(retrieved_node.node, new_node_path, &internals.last_read_index)?; + + Ok(folder) + } + + /// Internal method used to remove a child node of the current path, given its id. Applies only in memory. + /// This only works if path is a folder and node_id is either an item or folder underneath, and node_id points + /// to a valid node. + fn _remove_child_node_from_core_resource( + &mut self, + writer: &VFSWriter, + node_id: String, + ) -> Result<(), VectorFSError> { + let internals = self._get_profile_fs_internals(&writer.profile)?; + let path = writer.path.push_cloned(node_id); + internals.fs_core_resource.remove_node_at_path(path)?; + + Ok(()) + } + + /// Internal method used to remove the node at current path. Applies only in memory. + /// Errors if no node exists at path. + fn _remove_node_from_core_resource(&mut self, writer: &VFSWriter) -> Result<(), VectorFSError> { + let internals = self._get_profile_fs_internals(&writer.profile)?; + internals.fs_core_resource.remove_node_at_path(writer.path.clone())?; + + Ok(()) + } } diff --git a/src/vector_fs/vector_search.rs b/src/vector_fs/vector_search.rs deleted file mode 100644 index 6eeb08734..000000000 --- a/src/vector_fs/vector_search.rs +++ /dev/null @@ -1,30 +0,0 @@ -use super::{fs_error::VectorFSError, vector_fs::VectorFS, vector_fs_reader::VFSReader}; -use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_vector_resources::{ - embeddings::Embedding, - vector_resource::VectorResource, - vector_search_traversal::{RetrievedNode, TraversalMethod, TraversalOption, VRPath}, -}; - -impl<'a> VFSReader<'a> { - /// Performs a vector search into the VectorFS at a specific path, - /// returning the retrieved VRHeader nodes. - pub fn vector_search_headers( - &self, - query: Embedding, - num_of_results: u64, - profile: &ShinkaiName, - ) -> Result, VectorFSError> { - let internals = self.vector_fs._get_profile_fs_internals_read_only(profile)?; - // Vector search without hierarchical scoring because "folders" have no content/real embedding - let results = internals.fs_core_resource.vector_search_customized( - query, - num_of_results, - TraversalMethod::Exhaustive, - &vec![], - Some(self.path.clone()), - ); - - Ok(results) - } -} diff --git a/tests/it/agent_integration_tests.rs b/tests/it/agent_integration_tests.rs index 3e59ef578..bfd9d885a 100644 --- a/tests/it/agent_integration_tests.rs +++ b/tests/it/agent_integration_tests.rs @@ -4,7 +4,7 @@ use shinkai_message_primitives::schemas::agents::serialized_agent::{ }; use shinkai_message_primitives::schemas::inbox_name::InboxName; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_message_primitives::schemas::shinkai_time::ShinkaiTime; +use shinkai_message_primitives::schemas::shinkai_time::ShinkaiStringTime; use shinkai_message_primitives::shinkai_message::shinkai_message_schemas::{JobMessage, MessageSchemaType}; use shinkai_message_primitives::shinkai_utils::encryption::{ clone_static_secret_key, unsafe_deterministic_encryption_keypair, EncryptionMethod, @@ -360,7 +360,8 @@ fn node_agent_registration() { assert!(node2_last_messages.len() == 3); let shinkai_message_content_user = node2_last_messages[0].get_message_content().unwrap(); - let prev_message_content_user: JobMessage = serde_json::from_str(&shinkai_message_content_user).unwrap(); + let prev_message_content_user: JobMessage = + serde_json::from_str(&shinkai_message_content_user).unwrap(); let offset = node2_last_messages[1].calculate_message_hash(); let next_msg = ShinkaiMessageBuilder::get_last_unread_messages_from_inbox( @@ -452,7 +453,7 @@ fn node_agent_registration() { let message = "scheduled message".to_string(); let inbox_name = InboxName::get_job_inbox_name_from_params(job_id.clone()).unwrap(); let sender = format!("{}/{}", node1_identity_name.clone(), node1_subidentity_name.clone()); - let future_time_2_secs = ShinkaiTime::generate_time_in_future_with_secs(2); + let future_time_2_secs = ShinkaiStringTime::generate_time_in_future_with_secs(2); let msg = ShinkaiMessageBuilder::new( clone_static_secret_key(&node1_profile_encryption_sk), diff --git a/tests/it/db_for_testing/test/000168.sst b/tests/it/db_for_testing/test/000168.sst deleted file mode 100644 index 4f197d399..000000000 Binary files a/tests/it/db_for_testing/test/000168.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000169.sst b/tests/it/db_for_testing/test/000169.sst deleted file mode 100644 index e94e7232e..000000000 Binary files a/tests/it/db_for_testing/test/000169.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000170.sst b/tests/it/db_for_testing/test/000170.sst deleted file mode 100644 index 5b8363efa..000000000 Binary files a/tests/it/db_for_testing/test/000170.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000171.sst b/tests/it/db_for_testing/test/000171.sst deleted file mode 100644 index 46683df85..000000000 Binary files a/tests/it/db_for_testing/test/000171.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000172.sst b/tests/it/db_for_testing/test/000172.sst deleted file mode 100644 index 1bf8f3f7c..000000000 Binary files a/tests/it/db_for_testing/test/000172.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000173.sst b/tests/it/db_for_testing/test/000173.sst deleted file mode 100644 index f04e03f78..000000000 Binary files a/tests/it/db_for_testing/test/000173.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000174.sst b/tests/it/db_for_testing/test/000174.sst deleted file mode 100644 index 959ba3650..000000000 Binary files a/tests/it/db_for_testing/test/000174.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000175.sst b/tests/it/db_for_testing/test/000175.sst deleted file mode 100644 index 855feaf20..000000000 Binary files a/tests/it/db_for_testing/test/000175.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000176.sst b/tests/it/db_for_testing/test/000176.sst deleted file mode 100644 index a93f768f5..000000000 Binary files a/tests/it/db_for_testing/test/000176.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000177.sst b/tests/it/db_for_testing/test/000177.sst deleted file mode 100644 index d3de136ab..000000000 Binary files a/tests/it/db_for_testing/test/000177.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000178.sst b/tests/it/db_for_testing/test/000178.sst deleted file mode 100644 index a753c71e8..000000000 Binary files a/tests/it/db_for_testing/test/000178.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000179.sst b/tests/it/db_for_testing/test/000179.sst deleted file mode 100644 index c621b0d5f..000000000 Binary files a/tests/it/db_for_testing/test/000179.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000180.sst b/tests/it/db_for_testing/test/000180.sst deleted file mode 100644 index f43b1007e..000000000 Binary files a/tests/it/db_for_testing/test/000180.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000181.sst b/tests/it/db_for_testing/test/000181.sst deleted file mode 100644 index cb066bad6..000000000 Binary files a/tests/it/db_for_testing/test/000181.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000182.sst b/tests/it/db_for_testing/test/000182.sst deleted file mode 100644 index 662a9e517..000000000 Binary files a/tests/it/db_for_testing/test/000182.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000183.sst b/tests/it/db_for_testing/test/000183.sst deleted file mode 100644 index 012a19f23..000000000 Binary files a/tests/it/db_for_testing/test/000183.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000184.sst b/tests/it/db_for_testing/test/000184.sst deleted file mode 100644 index 660b9b3a8..000000000 Binary files a/tests/it/db_for_testing/test/000184.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000185.sst b/tests/it/db_for_testing/test/000185.sst deleted file mode 100644 index c2f9bd3a2..000000000 Binary files a/tests/it/db_for_testing/test/000185.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000186.sst b/tests/it/db_for_testing/test/000186.sst deleted file mode 100644 index ebc56fe14..000000000 Binary files a/tests/it/db_for_testing/test/000186.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000187.sst b/tests/it/db_for_testing/test/000187.sst deleted file mode 100644 index 668bece3b..000000000 Binary files a/tests/it/db_for_testing/test/000187.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000188.sst b/tests/it/db_for_testing/test/000188.sst deleted file mode 100644 index ef1fb2d6a..000000000 Binary files a/tests/it/db_for_testing/test/000188.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000189.sst b/tests/it/db_for_testing/test/000189.sst deleted file mode 100644 index 60625d2f4..000000000 Binary files a/tests/it/db_for_testing/test/000189.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000190.sst b/tests/it/db_for_testing/test/000190.sst deleted file mode 100644 index 39537e798..000000000 Binary files a/tests/it/db_for_testing/test/000190.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000191.sst b/tests/it/db_for_testing/test/000191.sst deleted file mode 100644 index d2fc5b12e..000000000 Binary files a/tests/it/db_for_testing/test/000191.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000192.sst b/tests/it/db_for_testing/test/000192.sst deleted file mode 100644 index 4b856c170..000000000 Binary files a/tests/it/db_for_testing/test/000192.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000193.sst b/tests/it/db_for_testing/test/000193.sst deleted file mode 100644 index 1e35e7053..000000000 Binary files a/tests/it/db_for_testing/test/000193.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000194.sst b/tests/it/db_for_testing/test/000194.sst deleted file mode 100644 index d40fe89dd..000000000 Binary files a/tests/it/db_for_testing/test/000194.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000195.sst b/tests/it/db_for_testing/test/000195.sst deleted file mode 100644 index e7da50c75..000000000 Binary files a/tests/it/db_for_testing/test/000195.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000196.sst b/tests/it/db_for_testing/test/000196.sst deleted file mode 100644 index 9d74d84d7..000000000 Binary files a/tests/it/db_for_testing/test/000196.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000197.sst b/tests/it/db_for_testing/test/000197.sst deleted file mode 100644 index fe65cb439..000000000 Binary files a/tests/it/db_for_testing/test/000197.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000198.sst b/tests/it/db_for_testing/test/000198.sst deleted file mode 100644 index 4b271f817..000000000 Binary files a/tests/it/db_for_testing/test/000198.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000199.sst b/tests/it/db_for_testing/test/000199.sst deleted file mode 100644 index 161c0d1f5..000000000 Binary files a/tests/it/db_for_testing/test/000199.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000200.sst b/tests/it/db_for_testing/test/000200.sst deleted file mode 100644 index 15e773ba2..000000000 Binary files a/tests/it/db_for_testing/test/000200.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000201.sst b/tests/it/db_for_testing/test/000201.sst deleted file mode 100644 index 9c4daada1..000000000 Binary files a/tests/it/db_for_testing/test/000201.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000202.sst b/tests/it/db_for_testing/test/000202.sst deleted file mode 100644 index 4845ca040..000000000 Binary files a/tests/it/db_for_testing/test/000202.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000203.sst b/tests/it/db_for_testing/test/000203.sst deleted file mode 100644 index 049bfec72..000000000 Binary files a/tests/it/db_for_testing/test/000203.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000204.sst b/tests/it/db_for_testing/test/000204.sst deleted file mode 100644 index 865180a2c..000000000 Binary files a/tests/it/db_for_testing/test/000204.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000205.sst b/tests/it/db_for_testing/test/000205.sst deleted file mode 100644 index f6ab797a6..000000000 Binary files a/tests/it/db_for_testing/test/000205.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000206.sst b/tests/it/db_for_testing/test/000206.sst deleted file mode 100644 index 32b790de5..000000000 Binary files a/tests/it/db_for_testing/test/000206.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000207.sst b/tests/it/db_for_testing/test/000207.sst deleted file mode 100644 index b40403081..000000000 Binary files a/tests/it/db_for_testing/test/000207.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000208.sst b/tests/it/db_for_testing/test/000208.sst deleted file mode 100644 index 254f718e7..000000000 Binary files a/tests/it/db_for_testing/test/000208.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000209.sst b/tests/it/db_for_testing/test/000209.sst deleted file mode 100644 index 594d80f30..000000000 Binary files a/tests/it/db_for_testing/test/000209.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000210.sst b/tests/it/db_for_testing/test/000210.sst deleted file mode 100644 index 0372942e5..000000000 Binary files a/tests/it/db_for_testing/test/000210.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000211.sst b/tests/it/db_for_testing/test/000211.sst deleted file mode 100644 index 713d756cb..000000000 Binary files a/tests/it/db_for_testing/test/000211.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000212.sst b/tests/it/db_for_testing/test/000212.sst deleted file mode 100644 index ad41685ac..000000000 Binary files a/tests/it/db_for_testing/test/000212.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000213.sst b/tests/it/db_for_testing/test/000213.sst deleted file mode 100644 index d1b5fc86c..000000000 Binary files a/tests/it/db_for_testing/test/000213.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000214.sst b/tests/it/db_for_testing/test/000214.sst deleted file mode 100644 index d76cd4a58..000000000 Binary files a/tests/it/db_for_testing/test/000214.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000215.sst b/tests/it/db_for_testing/test/000215.sst deleted file mode 100644 index 07a9e7ad4..000000000 Binary files a/tests/it/db_for_testing/test/000215.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000216.sst b/tests/it/db_for_testing/test/000216.sst deleted file mode 100644 index 7d9a395e8..000000000 Binary files a/tests/it/db_for_testing/test/000216.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000217.sst b/tests/it/db_for_testing/test/000217.sst deleted file mode 100644 index e57492258..000000000 Binary files a/tests/it/db_for_testing/test/000217.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000218.sst b/tests/it/db_for_testing/test/000218.sst deleted file mode 100644 index 524fd1f31..000000000 Binary files a/tests/it/db_for_testing/test/000218.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000219.sst b/tests/it/db_for_testing/test/000219.sst deleted file mode 100644 index 9a98a8b73..000000000 Binary files a/tests/it/db_for_testing/test/000219.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000220.sst b/tests/it/db_for_testing/test/000220.sst deleted file mode 100644 index aa85afbfe..000000000 Binary files a/tests/it/db_for_testing/test/000220.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000221.sst b/tests/it/db_for_testing/test/000221.sst deleted file mode 100644 index bda2a4be2..000000000 Binary files a/tests/it/db_for_testing/test/000221.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000222.sst b/tests/it/db_for_testing/test/000222.sst deleted file mode 100644 index af5529c3e..000000000 Binary files a/tests/it/db_for_testing/test/000222.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000223.sst b/tests/it/db_for_testing/test/000223.sst deleted file mode 100644 index c8b74e73f..000000000 Binary files a/tests/it/db_for_testing/test/000223.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000224.sst b/tests/it/db_for_testing/test/000224.sst deleted file mode 100644 index d449b286c..000000000 Binary files a/tests/it/db_for_testing/test/000224.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000225.sst b/tests/it/db_for_testing/test/000225.sst deleted file mode 100644 index 8aa9c1410..000000000 Binary files a/tests/it/db_for_testing/test/000225.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000226.sst b/tests/it/db_for_testing/test/000226.sst deleted file mode 100644 index 22ee037a6..000000000 Binary files a/tests/it/db_for_testing/test/000226.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000227.sst b/tests/it/db_for_testing/test/000227.sst deleted file mode 100644 index d6c25457e..000000000 Binary files a/tests/it/db_for_testing/test/000227.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000228.sst b/tests/it/db_for_testing/test/000228.sst deleted file mode 100644 index 8064a6439..000000000 Binary files a/tests/it/db_for_testing/test/000228.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000229.sst b/tests/it/db_for_testing/test/000229.sst deleted file mode 100644 index e1a6f3d14..000000000 Binary files a/tests/it/db_for_testing/test/000229.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000230.sst b/tests/it/db_for_testing/test/000230.sst deleted file mode 100644 index 2f6f0862f..000000000 Binary files a/tests/it/db_for_testing/test/000230.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000231.sst b/tests/it/db_for_testing/test/000231.sst deleted file mode 100644 index 99c3caff0..000000000 Binary files a/tests/it/db_for_testing/test/000231.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000232.sst b/tests/it/db_for_testing/test/000232.sst deleted file mode 100644 index e6b762f86..000000000 Binary files a/tests/it/db_for_testing/test/000232.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000233.sst b/tests/it/db_for_testing/test/000233.sst deleted file mode 100644 index f6a970293..000000000 Binary files a/tests/it/db_for_testing/test/000233.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000238.sst b/tests/it/db_for_testing/test/000238.sst deleted file mode 100644 index 96264418a..000000000 Binary files a/tests/it/db_for_testing/test/000238.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000239.sst b/tests/it/db_for_testing/test/000239.sst deleted file mode 100644 index 1edaf5cdf..000000000 Binary files a/tests/it/db_for_testing/test/000239.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000240.sst b/tests/it/db_for_testing/test/000240.sst deleted file mode 100644 index 491438e35..000000000 Binary files a/tests/it/db_for_testing/test/000240.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000241.sst b/tests/it/db_for_testing/test/000241.sst deleted file mode 100644 index e8c4d73d0..000000000 Binary files a/tests/it/db_for_testing/test/000241.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000242.sst b/tests/it/db_for_testing/test/000242.sst deleted file mode 100644 index c835d6050..000000000 Binary files a/tests/it/db_for_testing/test/000242.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000243.sst b/tests/it/db_for_testing/test/000243.sst deleted file mode 100644 index 12fe821f1..000000000 Binary files a/tests/it/db_for_testing/test/000243.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000248.sst b/tests/it/db_for_testing/test/000248.sst deleted file mode 100644 index 22f18fdaf..000000000 Binary files a/tests/it/db_for_testing/test/000248.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000249.sst b/tests/it/db_for_testing/test/000249.sst deleted file mode 100644 index 45299db7f..000000000 Binary files a/tests/it/db_for_testing/test/000249.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000254.sst b/tests/it/db_for_testing/test/000254.sst deleted file mode 100644 index fd9186c16..000000000 Binary files a/tests/it/db_for_testing/test/000254.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/000255.sst b/tests/it/db_for_testing/test/000255.sst deleted file mode 100644 index 1c8da14e3..000000000 Binary files a/tests/it/db_for_testing/test/000255.sst and /dev/null differ diff --git a/tests/it/db_for_testing/test/CURRENT b/tests/it/db_for_testing/test/CURRENT deleted file mode 100644 index f0b77ed34..000000000 --- a/tests/it/db_for_testing/test/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000257 diff --git a/tests/it/db_for_testing/test/IDENTITY b/tests/it/db_for_testing/test/IDENTITY deleted file mode 100644 index 068135b06..000000000 --- a/tests/it/db_for_testing/test/IDENTITY +++ /dev/null @@ -1 +0,0 @@ -cd8c8a56-182b-440f-8ebb-d520dc6f6053 \ No newline at end of file diff --git a/tests/it/db_for_testing/test/LOCK b/tests/it/db_for_testing/test/LOCK deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/it/db_for_testing/test/LOG b/tests/it/db_for_testing/test/LOG deleted file mode 100644 index 31deb1c77..000000000 --- a/tests/it/db_for_testing/test/LOG +++ /dev/null @@ -1,2261 +0,0 @@ -2023/12/15-18:14:51.430161 6120108032 RocksDB version: 8.1.1 -2023/12/15-18:14:51.430700 6120108032 Compile date 2023-04-06 16:38:52 -2023/12/15-18:14:51.430703 6120108032 DB SUMMARY -2023/12/15-18:14:51.430704 6120108032 DB Session ID: ZF24XZBYCVC2EM9KWE4P -2023/12/15-18:14:51.430842 6120108032 CURRENT file: CURRENT -2023/12/15-18:14:51.430844 6120108032 IDENTITY file: IDENTITY -2023/12/15-18:14:51.430850 6120108032 MANIFEST file: MANIFEST-000251 size: 21710 Bytes -2023/12/15-18:14:51.430852 6120108032 SST files in tests/db_for_testing/test dir, Total Num: 74, files: 000168.sst 000169.sst 000170.sst 000171.sst 000172.sst 000173.sst 000174.sst 000175.sst 000176.sst -2023/12/15-18:14:51.430854 6120108032 Write Ahead Log file in tests/db_for_testing/test: 000250.log size: 195 ; -2023/12/15-18:14:51.430856 6120108032 Options.error_if_exists: 0 -2023/12/15-18:14:51.430857 6120108032 Options.create_if_missing: 1 -2023/12/15-18:14:51.430858 6120108032 Options.paranoid_checks: 1 -2023/12/15-18:14:51.430859 6120108032 Options.flush_verify_memtable_count: 1 -2023/12/15-18:14:51.430860 6120108032 Options.track_and_verify_wals_in_manifest: 0 -2023/12/15-18:14:51.430861 6120108032 Options.verify_sst_unique_id_in_manifest: 1 -2023/12/15-18:14:51.430862 6120108032 Options.env: 0x106c8c050 -2023/12/15-18:14:51.430863 6120108032 Options.fs: PosixFileSystem -2023/12/15-18:14:51.430864 6120108032 Options.info_log: 0x131355128 -2023/12/15-18:14:51.430865 6120108032 Options.max_file_opening_threads: 16 -2023/12/15-18:14:51.430866 6120108032 Options.statistics: 0x0 -2023/12/15-18:14:51.430867 6120108032 Options.use_fsync: 0 -2023/12/15-18:14:51.430868 6120108032 Options.max_log_file_size: 0 -2023/12/15-18:14:51.430869 6120108032 Options.max_manifest_file_size: 1073741824 -2023/12/15-18:14:51.430870 6120108032 Options.log_file_time_to_roll: 0 -2023/12/15-18:14:51.430871 6120108032 Options.keep_log_file_num: 1000 -2023/12/15-18:14:51.430872 6120108032 Options.recycle_log_file_num: 0 -2023/12/15-18:14:51.430873 6120108032 Options.allow_fallocate: 1 -2023/12/15-18:14:51.430874 6120108032 Options.allow_mmap_reads: 0 -2023/12/15-18:14:51.430874 6120108032 Options.allow_mmap_writes: 0 -2023/12/15-18:14:51.430875 6120108032 Options.use_direct_reads: 0 -2023/12/15-18:14:51.430876 6120108032 Options.use_direct_io_for_flush_and_compaction: 0 -2023/12/15-18:14:51.430877 6120108032 Options.create_missing_column_families: 1 -2023/12/15-18:14:51.430878 6120108032 Options.db_log_dir: -2023/12/15-18:14:51.430879 6120108032 Options.wal_dir: -2023/12/15-18:14:51.430880 6120108032 Options.table_cache_numshardbits: 6 -2023/12/15-18:14:51.430881 6120108032 Options.WAL_ttl_seconds: 0 -2023/12/15-18:14:51.430881 6120108032 Options.WAL_size_limit_MB: 0 -2023/12/15-18:14:51.430882 6120108032 Options.max_write_batch_group_size_bytes: 1048576 -2023/12/15-18:14:51.430883 6120108032 Options.manifest_preallocation_size: 4194304 -2023/12/15-18:14:51.430884 6120108032 Options.is_fd_close_on_exec: 1 -2023/12/15-18:14:51.430885 6120108032 Options.advise_random_on_open: 1 -2023/12/15-18:14:51.430886 6120108032 Options.db_write_buffer_size: 0 -2023/12/15-18:14:51.430887 6120108032 Options.write_buffer_manager: 0x1313552f0 -2023/12/15-18:14:51.430888 6120108032 Options.access_hint_on_compaction_start: 1 -2023/12/15-18:14:51.430889 6120108032 Options.random_access_max_buffer_size: 1048576 -2023/12/15-18:14:51.430890 6120108032 Options.use_adaptive_mutex: 0 -2023/12/15-18:14:51.430891 6120108032 Options.rate_limiter: 0x0 -2023/12/15-18:14:51.430892 6120108032 Options.sst_file_manager.rate_bytes_per_sec: 0 -2023/12/15-18:14:51.430893 6120108032 Options.wal_recovery_mode: 2 -2023/12/15-18:14:51.430894 6120108032 Options.enable_thread_tracking: 0 -2023/12/15-18:14:51.430895 6120108032 Options.enable_pipelined_write: 0 -2023/12/15-18:14:51.430895 6120108032 Options.unordered_write: 0 -2023/12/15-18:14:51.430896 6120108032 Options.allow_concurrent_memtable_write: 1 -2023/12/15-18:14:51.430897 6120108032 Options.enable_write_thread_adaptive_yield: 1 -2023/12/15-18:14:51.430898 6120108032 Options.write_thread_max_yield_usec: 100 -2023/12/15-18:14:51.430899 6120108032 Options.write_thread_slow_yield_usec: 3 -2023/12/15-18:14:51.430900 6120108032 Options.row_cache: None -2023/12/15-18:14:51.430901 6120108032 Options.wal_filter: None -2023/12/15-18:14:51.430902 6120108032 Options.avoid_flush_during_recovery: 0 -2023/12/15-18:14:51.430903 6120108032 Options.allow_ingest_behind: 0 -2023/12/15-18:14:51.430904 6120108032 Options.two_write_queues: 0 -2023/12/15-18:14:51.430905 6120108032 Options.manual_wal_flush: 0 -2023/12/15-18:14:51.430906 6120108032 Options.wal_compression: 0 -2023/12/15-18:14:51.430907 6120108032 Options.atomic_flush: 0 -2023/12/15-18:14:51.430907 6120108032 Options.avoid_unnecessary_blocking_io: 0 -2023/12/15-18:14:51.430908 6120108032 Options.persist_stats_to_disk: 0 -2023/12/15-18:14:51.430909 6120108032 Options.write_dbid_to_manifest: 0 -2023/12/15-18:14:51.430910 6120108032 Options.log_readahead_size: 0 -2023/12/15-18:14:51.430911 6120108032 Options.file_checksum_gen_factory: Unknown -2023/12/15-18:14:51.430912 6120108032 Options.best_efforts_recovery: 0 -2023/12/15-18:14:51.430913 6120108032 Options.max_bgerror_resume_count: 2147483647 -2023/12/15-18:14:51.430914 6120108032 Options.bgerror_resume_retry_interval: 1000000 -2023/12/15-18:14:51.430915 6120108032 Options.allow_data_in_errors: 0 -2023/12/15-18:14:51.430916 6120108032 Options.db_host_id: __hostname__ -2023/12/15-18:14:51.430917 6120108032 Options.enforce_single_del_contracts: true -2023/12/15-18:14:51.430918 6120108032 Options.max_background_jobs: 2 -2023/12/15-18:14:51.430919 6120108032 Options.max_background_compactions: -1 -2023/12/15-18:14:51.430919 6120108032 Options.max_subcompactions: 1 -2023/12/15-18:14:51.430920 6120108032 Options.avoid_flush_during_shutdown: 0 -2023/12/15-18:14:51.430921 6120108032 Options.writable_file_max_buffer_size: 1048576 -2023/12/15-18:14:51.430922 6120108032 Options.delayed_write_rate : 16777216 -2023/12/15-18:14:51.430923 6120108032 Options.max_total_wal_size: 0 -2023/12/15-18:14:51.430924 6120108032 Options.delete_obsolete_files_period_micros: 21600000000 -2023/12/15-18:14:51.430925 6120108032 Options.stats_dump_period_sec: 600 -2023/12/15-18:14:51.430926 6120108032 Options.stats_persist_period_sec: 600 -2023/12/15-18:14:51.430927 6120108032 Options.stats_history_buffer_size: 1048576 -2023/12/15-18:14:51.430928 6120108032 Options.max_open_files: -1 -2023/12/15-18:14:51.430928 6120108032 Options.bytes_per_sync: 0 -2023/12/15-18:14:51.430929 6120108032 Options.wal_bytes_per_sync: 0 -2023/12/15-18:14:51.430930 6120108032 Options.strict_bytes_per_sync: 0 -2023/12/15-18:14:51.430931 6120108032 Options.compaction_readahead_size: 0 -2023/12/15-18:14:51.430932 6120108032 Options.max_background_flushes: -1 -2023/12/15-18:14:51.430933 6120108032 Compression algorithms supported: -2023/12/15-18:14:51.430934 6120108032 kZSTD supported: 0 -2023/12/15-18:14:51.430935 6120108032 kZlibCompression supported: 0 -2023/12/15-18:14:51.430936 6120108032 kXpressCompression supported: 0 -2023/12/15-18:14:51.430937 6120108032 kSnappyCompression supported: 0 -2023/12/15-18:14:51.430938 6120108032 kZSTDNotFinalCompression supported: 0 -2023/12/15-18:14:51.430940 6120108032 kLZ4HCCompression supported: 1 -2023/12/15-18:14:51.430940 6120108032 kLZ4Compression supported: 1 -2023/12/15-18:14:51.430941 6120108032 kBZip2Compression supported: 0 -2023/12/15-18:14:51.430948 6120108032 Fast CRC32 supported: Supported on Arm64 -2023/12/15-18:14:51.430949 6120108032 DMutex implementation: pthread_mutex_t -2023/12/15-18:14:51.431066 6120108032 [db/version_set.cc:5662] Recovering from manifest file: tests/db_for_testing/test/MANIFEST-000251 -2023/12/15-18:14:51.431373 6120108032 [db/column_family.cc:621] --------------- Options for column family [default]: -2023/12/15-18:14:51.431375 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.431376 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.431377 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.431378 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.431379 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.431380 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.431381 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.431414 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x131308970) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x131304448 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.431417 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.431418 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.431419 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.431420 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.431421 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.431422 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.431423 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.431424 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.431425 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.431426 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.431427 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.431427 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.431428 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.431429 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.431430 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.431431 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.431432 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.431433 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.431434 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.431435 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.431436 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.431437 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.431438 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.431438 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.431439 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.431440 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.431441 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.431442 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.431443 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.431444 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.431445 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.431446 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.431446 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.431447 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.431448 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.431449 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.431450 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.431451 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.431452 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.431453 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.431454 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.431455 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.431456 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.431457 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.431457 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.431458 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.431459 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.431460 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.431461 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.431462 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.431464 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.431465 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.431466 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.431467 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.431468 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.431469 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.431470 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.431473 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.431474 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.431475 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.431477 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.431478 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.431479 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.431480 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.431481 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.431482 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.431482 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.431483 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.431484 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.431485 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.431486 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.431487 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.431488 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.431489 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.431489 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.431490 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.431491 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.431492 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.431493 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.431494 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.431495 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.431496 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.431497 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.431498 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.431499 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.431500 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.431809 6120108032 [db/column_family.cc:621] --------------- Options for column family [inbox]: -2023/12/15-18:14:51.431811 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.431812 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.431813 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.431814 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.431815 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.431816 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.431817 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.431824 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x1313053b0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x1313055f8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.431825 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.431826 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.431827 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.431828 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.431829 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.431830 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.431830 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.431831 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.431832 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.431833 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.431834 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.431835 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.431836 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.431837 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.431838 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.431839 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.431839 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.431840 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.431841 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.431842 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.431843 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.431844 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.431845 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.431845 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.431846 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.431847 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.431848 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.431849 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.431850 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.431851 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.431851 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.431852 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.431853 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.431854 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.431855 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.431856 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.431857 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.431858 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.431858 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.431859 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.431860 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.431861 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.431862 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.431863 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.431864 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.431865 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.431866 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.431866 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.431867 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.431868 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.431869 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.431870 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.431871 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.431872 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.431873 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.431874 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.431875 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.431876 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.431877 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.431878 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.431879 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.431880 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.431881 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.431882 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.431883 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.431883 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.431884 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.431885 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.431886 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.431887 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.431888 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.431889 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.431889 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.431890 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.431891 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.431892 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.431893 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.431894 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.431895 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.431895 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.431896 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.431897 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.431898 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.431899 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.431900 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.431901 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.431983 6120108032 [db/column_family.cc:621] --------------- Options for column family [peers]: -2023/12/15-18:14:51.431985 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.431986 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.431987 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.431988 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.431989 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.431989 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.431990 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.431996 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x131306460) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x1313064b8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.431997 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.431998 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.431999 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.432000 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.432001 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.432002 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.432003 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.432004 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.432005 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.432005 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.432006 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.432007 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.432008 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.432009 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432010 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432011 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432012 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.432013 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432014 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432014 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.432017 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.432018 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.432019 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432020 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432020 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432021 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432022 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.432023 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432024 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.432025 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.432026 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.432027 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.432027 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.432028 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.432029 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.432030 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.432031 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.432032 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.432033 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.432034 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.432035 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.432036 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.432036 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.432037 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.432038 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.432039 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.432040 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.432041 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.432042 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.432043 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.432044 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.432045 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.432046 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.432047 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.432048 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.432048 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.432049 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.432050 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.432051 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.432052 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.432053 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.432054 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.432055 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.432056 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.432057 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.432058 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.432059 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.432059 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.432060 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.432061 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.432062 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.432063 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.432064 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.432065 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.432065 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.432066 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.432067 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.432068 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.432069 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.432070 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.432071 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.432071 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.432072 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.432073 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.432074 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.432075 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.432133 6120108032 [db/column_family.cc:621] --------------- Options for column family [profiles_encryption_key]: -2023/12/15-18:14:51.432135 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.432136 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.432137 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.432138 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.432139 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.432139 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.432140 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.432146 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x131307350) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x1313073a8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.432147 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.432148 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.432149 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.432150 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.432151 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.432152 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.432153 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.432153 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.432154 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.432155 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.432156 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.432157 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.432158 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.432159 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432160 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432161 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432161 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.432162 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432163 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432164 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.432165 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.432166 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.432167 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432168 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432168 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432169 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432170 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.432171 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432172 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.432173 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.432174 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.432175 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.432175 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.432176 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.432177 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.432178 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.432179 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.432180 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.432181 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.432182 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.432182 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.432183 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.432184 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.432185 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.432186 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.432187 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.432188 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.432189 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.432190 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.432190 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.432191 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.432193 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.432193 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.432194 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.432195 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.432196 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.432197 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.432198 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.432199 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.432200 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.432201 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.432202 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.432203 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.432204 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.432205 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.432205 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.432206 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.432207 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.432208 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.432209 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.432210 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.432211 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.432211 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.432212 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.432213 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.432214 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.432215 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.432216 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.432217 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.432218 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.432218 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.432219 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.432220 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.432221 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.432222 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.432223 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.432282 6120108032 [db/column_family.cc:621] --------------- Options for column family [profiles_identity_key]: -2023/12/15-18:14:51.432284 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.432285 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.432292 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.432292 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.432293 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.432294 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.432295 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.432301 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x131308260) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x1313082b8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.432302 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.432303 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.432304 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.432304 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.432305 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.432306 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.432307 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.432308 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.432309 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.432310 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.432311 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.432312 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.432313 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.432314 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432314 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432315 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432316 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.432317 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432318 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432319 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.432320 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.432321 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.432322 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432323 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432323 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432324 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432325 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.432326 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432327 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.432328 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.432329 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.432330 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.432331 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.432332 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.432332 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.432333 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.432334 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.432335 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.432336 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.432337 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.432338 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.432339 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.432340 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.432341 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.432342 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.432343 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.432344 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.432344 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.432345 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.432346 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.432347 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.432349 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.432349 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.432350 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.432351 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.432352 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.432353 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.432354 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.432355 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.432356 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.432357 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.432358 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.432359 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.432360 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.432361 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.432362 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.432363 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.432364 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.432364 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.432365 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.432366 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.432367 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.432368 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.432369 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.432370 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.432371 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.432372 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.432373 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.432373 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.432374 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.432375 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.432376 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.432377 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.432378 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.432379 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.432380 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.432441 6120108032 [db/column_family.cc:621] --------------- Options for column family [devices_encryption_key]: -2023/12/15-18:14:51.432442 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.432443 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.432444 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.432445 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.432446 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.432447 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.432448 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.432453 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x131305050) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x13130a2d8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.432454 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.432455 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.432456 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.432457 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.432458 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.432459 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.432460 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.432461 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.432462 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.432462 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.432463 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.432464 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.432465 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.432466 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432467 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432468 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432469 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.432470 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432470 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432471 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.432472 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.432473 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.432474 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432475 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432476 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432477 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432477 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.432478 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432479 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.432480 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.432481 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.432482 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.432483 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.432484 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.432485 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.432485 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.432486 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.432487 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.432488 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.432489 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.432490 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.432491 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.432492 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.432493 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.432493 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.432494 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.432495 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.432496 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.432497 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.432498 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.432499 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.432508 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.432509 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.432510 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.432511 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.432512 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.432513 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.432514 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.432515 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.432515 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.432517 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.432517 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.432518 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.432519 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.432520 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.432521 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.432522 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.432523 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.432523 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.432524 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.432525 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.432526 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.432527 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.432528 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.432528 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.432529 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.432530 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.432531 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.432532 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.432533 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.432534 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.432535 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.432536 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.432536 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.432537 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.432538 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.432601 6120108032 [db/column_family.cc:621] --------------- Options for column family [devices_identity_key]: -2023/12/15-18:14:51.432603 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.432604 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.432605 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.432606 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.432607 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.432608 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.432609 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.432614 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x13130b170) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x13130b1c8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.432615 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.432616 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.432617 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.432618 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.432618 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.432619 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.432620 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.432621 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.432622 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.432623 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.432624 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.432625 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.432626 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.432626 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432627 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432628 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432629 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.432630 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432631 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432632 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.432633 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.432633 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.432634 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432635 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432636 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432637 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432638 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.432638 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432639 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.432640 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.432641 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.432642 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.432643 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.432644 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.432644 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.432645 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.432646 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.432647 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.432648 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.432649 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.432650 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.432651 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.432652 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.432652 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.432653 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.432654 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.432655 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.432656 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.432657 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.432658 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.432659 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.432660 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.432661 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.432661 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.432662 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.432663 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.432664 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.432665 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.432666 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.432667 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.432668 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.432669 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.432670 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.432671 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.432671 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.432672 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.432673 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.432674 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.432675 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.432676 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.432677 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.432677 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.432678 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.432679 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.432680 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.432681 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.432682 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.432683 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.432683 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.432684 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.432685 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.432686 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.432687 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.432688 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.432689 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.432690 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.432750 6120108032 [db/column_family.cc:621] --------------- Options for column family [devices_permissions]: -2023/12/15-18:14:51.432752 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.432753 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.432754 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.432755 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.432756 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.432757 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.432758 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.432763 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x13130c080) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x13130c0d8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.432764 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.432765 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.432766 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.432767 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.432768 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.432769 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.432769 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.432770 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.432771 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.432772 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.432773 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.432774 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.432775 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.432776 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432778 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432779 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432780 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.432781 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432782 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432783 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.432784 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.432784 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.432785 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432786 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432787 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432788 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432789 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.432790 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432791 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.432791 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.432792 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.432793 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.432794 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.432795 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.432796 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.432797 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.432798 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.432798 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.432799 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.432800 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.432801 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.432802 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.432803 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.432804 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.432805 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.432806 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.432806 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.432807 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.432808 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.432809 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.432810 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.432811 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.432812 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.432813 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.432814 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.432814 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.432815 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.432816 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.432817 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.432818 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.432819 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.432820 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.432821 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.432822 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.432823 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.432823 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.432824 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.432825 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.432826 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.432827 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.432828 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.432829 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.432829 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.432830 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.432831 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.432832 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.432833 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.432834 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.432835 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.432835 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.432836 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.432837 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.432838 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.432839 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.432840 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.432841 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.432900 6120108032 [db/column_family.cc:621] --------------- Options for column family [scheduled_message]: -2023/12/15-18:14:51.432902 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.432902 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.432903 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.432904 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.432905 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.432906 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.432907 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.432912 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x13130cf90) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x13130cfe8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.432913 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.432914 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.432915 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.432916 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.432917 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.432918 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.432919 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.432920 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.432921 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.432921 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.432922 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.432923 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.432924 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.432925 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432926 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432927 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432928 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.432928 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432929 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432930 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.432931 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.432932 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.432933 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.432934 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.432935 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.432935 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.432936 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.432937 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.432938 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.432939 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.432940 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.432940 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.432941 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.432942 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.432943 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.432944 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.432945 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.432946 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.432947 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.432947 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.432948 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.432949 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.432950 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.432951 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.432952 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.432953 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.432953 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.432954 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.432955 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.432956 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.432957 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.432958 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.432959 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.432960 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.432961 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.432962 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.432963 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.432964 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.432965 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.432965 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.432966 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.432967 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.432968 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.432969 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.432970 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.432971 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.432972 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.432973 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.432974 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.432974 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.432975 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.432976 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.432977 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.432978 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.432979 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.432980 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.432981 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.432981 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.432982 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.432983 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.432984 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.432985 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.432986 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.432988 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.432989 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.432990 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.433042 6120108032 [db/column_family.cc:621] --------------- Options for column family [all_messages]: -2023/12/15-18:14:51.433043 6120108032 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:14:51.433044 6120108032 Options.merge_operator: None -2023/12/15-18:14:51.433045 6120108032 Options.compaction_filter: None -2023/12/15-18:14:51.433046 6120108032 Options.compaction_filter_factory: None -2023/12/15-18:14:51.433047 6120108032 Options.sst_partitioner_factory: None -2023/12/15-18:14:51.433048 6120108032 Options.memtable_factory: SkipListFactory -2023/12/15-18:14:51.433049 6120108032 Options.table_factory: BlockBasedTable -2023/12/15-18:14:51.433054 6120108032 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x131309f00) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x131309f58 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:14:51.433055 6120108032 Options.write_buffer_size: 67108864 -2023/12/15-18:14:51.433056 6120108032 Options.max_write_buffer_number: 2 -2023/12/15-18:14:51.433057 6120108032 Options.compression: NoCompression -2023/12/15-18:14:51.433058 6120108032 Options.bottommost_compression: Disabled -2023/12/15-18:14:51.433059 6120108032 Options.prefix_extractor: nullptr -2023/12/15-18:14:51.433059 6120108032 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:14:51.433060 6120108032 Options.num_levels: 7 -2023/12/15-18:14:51.433061 6120108032 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:14:51.433062 6120108032 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:14:51.433063 6120108032 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:14:51.433064 6120108032 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:14:51.433065 6120108032 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:14:51.433066 6120108032 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:14:51.433066 6120108032 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.433067 6120108032 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.433068 6120108032 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.433069 6120108032 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:14:51.433070 6120108032 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.433071 6120108032 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.433072 6120108032 Options.compression_opts.window_bits: -14 -2023/12/15-18:14:51.433073 6120108032 Options.compression_opts.level: 32767 -2023/12/15-18:14:51.433074 6120108032 Options.compression_opts.strategy: 0 -2023/12/15-18:14:51.433074 6120108032 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:14:51.433075 6120108032 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:14:51.433076 6120108032 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:14:51.433077 6120108032 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:14:51.433078 6120108032 Options.compression_opts.enabled: false -2023/12/15-18:14:51.433079 6120108032 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:14:51.433080 6120108032 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:14:51.433080 6120108032 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:14:51.433081 6120108032 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:14:51.433082 6120108032 Options.target_file_size_base: 67108864 -2023/12/15-18:14:51.433083 6120108032 Options.target_file_size_multiplier: 1 -2023/12/15-18:14:51.433084 6120108032 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:14:51.433085 6120108032 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:14:51.433085 6120108032 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:14:51.433086 6120108032 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:14:51.433087 6120108032 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:14:51.433088 6120108032 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:14:51.433089 6120108032 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:14:51.433090 6120108032 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:14:51.433091 6120108032 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:14:51.433092 6120108032 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:14:51.433093 6120108032 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:14:51.433093 6120108032 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:14:51.433094 6120108032 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:14:51.433095 6120108032 Options.arena_block_size: 1048576 -2023/12/15-18:14:51.433096 6120108032 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:14:51.433097 6120108032 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:14:51.433098 6120108032 Options.disable_auto_compactions: 0 -2023/12/15-18:14:51.433099 6120108032 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:14:51.433100 6120108032 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:14:51.433101 6120108032 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:14:51.433102 6120108032 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:14:51.433102 6120108032 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:14:51.433103 6120108032 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:14:51.433104 6120108032 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:14:51.433105 6120108032 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:14:51.433106 6120108032 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:14:51.433107 6120108032 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:14:51.433108 6120108032 Options.table_properties_collectors: -2023/12/15-18:14:51.433109 6120108032 Options.inplace_update_support: 0 -2023/12/15-18:14:51.433110 6120108032 Options.inplace_update_num_locks: 10000 -2023/12/15-18:14:51.433111 6120108032 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:14:51.433112 6120108032 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:14:51.433112 6120108032 Options.memtable_huge_page_size: 0 -2023/12/15-18:14:51.433113 6120108032 Options.bloom_locality: 0 -2023/12/15-18:14:51.433114 6120108032 Options.max_successive_merges: 0 -2023/12/15-18:14:51.433115 6120108032 Options.optimize_filters_for_hits: 0 -2023/12/15-18:14:51.433116 6120108032 Options.paranoid_file_checks: 0 -2023/12/15-18:14:51.433117 6120108032 Options.force_consistency_checks: 1 -2023/12/15-18:14:51.433118 6120108032 Options.report_bg_io_stats: 0 -2023/12/15-18:14:51.433118 6120108032 Options.ttl: 2592000 -2023/12/15-18:14:51.433119 6120108032 Options.periodic_compaction_seconds: 0 -2023/12/15-18:14:51.433120 6120108032 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:14:51.433121 6120108032 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:14:51.433122 6120108032 Options.enable_blob_files: false -2023/12/15-18:14:51.433123 6120108032 Options.min_blob_size: 0 -2023/12/15-18:14:51.433123 6120108032 Options.blob_file_size: 268435456 -2023/12/15-18:14:51.433124 6120108032 Options.blob_compression_type: NoCompression -2023/12/15-18:14:51.433125 6120108032 Options.enable_blob_garbage_collection: false -2023/12/15-18:14:51.433126 6120108032 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:14:51.433127 6120108032 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:14:51.433128 6120108032 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:14:51.433129 6120108032 Options.blob_file_starting_level: 0 -2023/12/15-18:14:51.433130 6120108032 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:14:51.433188 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433253 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433343 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433406 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433470 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433534 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433595 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433652 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433710 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433767 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433818 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433871 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433930 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.433984 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434044 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434099 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434149 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434200 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434250 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434301 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434351 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434404 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434458 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434512 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434568 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434623 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434676 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434730 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434780 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434833 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434887 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434939 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.434991 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435045 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435097 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435150 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435204 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435257 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435311 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435364 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435420 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435472 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435524 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435577 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435629 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435681 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435736 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435789 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435839 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435906 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.435960 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436014 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436065 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436118 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436170 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436227 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436280 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436333 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436392 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436445 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436496 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436550 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436602 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436652 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436706 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436759 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436816 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436868 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436917 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.436972 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.437030 6120108032 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:14:51.456792 6120108032 [db/version_set.cc:5713] Recovered from manifest file:tests/db_for_testing/test/MANIFEST-000251 succeeded,manifest_file_number is 251, next_file_number is 253, last_sequence is 181, log_number is 245,prev_log_number is 0,max_column_family is 80,min_log_number_to_keep is 245 -2023/12/15-18:14:51.456800 6120108032 [db/version_set.cc:5722] Column family [default] (ID 0), log number is 245 -2023/12/15-18:14:51.456802 6120108032 [db/version_set.cc:5722] Column family [inbox] (ID 1), log number is 245 -2023/12/15-18:14:51.456803 6120108032 [db/version_set.cc:5722] Column family [peers] (ID 2), log number is 245 -2023/12/15-18:14:51.456804 6120108032 [db/version_set.cc:5722] Column family [profiles_encryption_key] (ID 3), log number is 245 -2023/12/15-18:14:51.456805 6120108032 [db/version_set.cc:5722] Column family [profiles_identity_key] (ID 4), log number is 245 -2023/12/15-18:14:51.456806 6120108032 [db/version_set.cc:5722] Column family [devices_encryption_key] (ID 5), log number is 245 -2023/12/15-18:14:51.456807 6120108032 [db/version_set.cc:5722] Column family [devices_identity_key] (ID 6), log number is 245 -2023/12/15-18:14:51.456807 6120108032 [db/version_set.cc:5722] Column family [devices_permissions] (ID 7), log number is 245 -2023/12/15-18:14:51.456808 6120108032 [db/version_set.cc:5722] Column family [scheduled_message] (ID 8), log number is 245 -2023/12/15-18:14:51.456809 6120108032 [db/version_set.cc:5722] Column family [all_messages] (ID 9), log number is 245 -2023/12/15-18:14:51.456810 6120108032 [db/version_set.cc:5722] Column family [all_messages_time_keyed] (ID 10), log number is 245 -2023/12/15-18:14:51.456811 6120108032 [db/version_set.cc:5722] Column family [one_time_registration_codes] (ID 11), log number is 245 -2023/12/15-18:14:51.456812 6120108032 [db/version_set.cc:5722] Column family [profiles_identity_type] (ID 12), log number is 245 -2023/12/15-18:14:51.456813 6120108032 [db/version_set.cc:5722] Column family [profiles_permission] (ID 13), log number is 245 -2023/12/15-18:14:51.456814 6120108032 [db/version_set.cc:5722] Column family [external_node_identity_key] (ID 14), log number is 245 -2023/12/15-18:14:51.456815 6120108032 [db/version_set.cc:5722] Column family [external_node_encryption_key] (ID 15), log number is 245 -2023/12/15-18:14:51.456816 6120108032 [db/version_set.cc:5722] Column family [all_jobs_time_keyed] (ID 16), log number is 245 -2023/12/15-18:14:51.456817 6120108032 [db/version_set.cc:5722] Column family [resources] (ID 17), log number is 245 -2023/12/15-18:14:51.456818 6120108032 [db/version_set.cc:5722] Column family [agents] (ID 18), log number is 245 -2023/12/15-18:14:51.456819 6120108032 [db/version_set.cc:5722] Column family [toolkits] (ID 19), log number is 245 -2023/12/15-18:14:51.456820 6120108032 [db/version_set.cc:5722] Column family [mesages_to_retry] (ID 20), log number is 245 -2023/12/15-18:14:51.456821 6120108032 [db/version_set.cc:5722] Column family [message_box_symmetric_keys] (ID 21), log number is 245 -2023/12/15-18:14:51.456822 6120108032 [db/version_set.cc:5722] Column family [message_box_symmetric_keys_times] (ID 22), log number is 245 -2023/12/15-18:14:51.456823 6120108032 [db/version_set.cc:5722] Column family [temp_files_inbox] (ID 23), log number is 245 -2023/12/15-18:14:51.456824 6120108032 [db/version_set.cc:5722] Column family [job_queues] (ID 24), log number is 245 -2023/12/15-18:14:51.456825 6120108032 [db/version_set.cc:5722] Column family [cron_queues] (ID 25), log number is 245 -2023/12/15-18:14:51.456826 6120108032 [db/version_set.cc:5722] Column family [agent_my_gpt_profiles_with_access] (ID 26), log number is 245 -2023/12/15-18:14:51.456827 6120108032 [db/version_set.cc:5722] Column family [agent_my_gpt_toolkits_accessible] (ID 27), log number is 245 -2023/12/15-18:14:51.456828 6120108032 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_profiles_with_access] (ID 28), log number is 245 -2023/12/15-18:14:51.456829 6120108032 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_toolkits_accessible] (ID 29), log number is 245 -2023/12/15-18:14:51.456830 6120108032 [db/version_set.cc:5722] Column family [agentid_my_gpt] (ID 30), log number is 245 -2023/12/15-18:14:51.456830 6120108032 [db/version_set.cc:5722] Column family [jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae] (ID 31), log number is 245 -2023/12/15-18:14:51.456831 6120108032 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope] (ID 32), log number is 245 -2023/12/15-18:14:51.456832 6120108032 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history] (ID 33), log number is 245 -2023/12/15-18:14:51.456833 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false] (ID 34), log number is 245 -2023/12/15-18:14:51.456834 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_perms] (ID 35), log number is 245 -2023/12/15-18:14:51.456835 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_unread_list] (ID 36), log number is 245 -2023/12/15-18:14:51.456836 6120108032 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages] (ID 37), log number is 245 -2023/12/15-18:14:51.456837 6120108032 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context] (ID 38), log number is 245 -2023/12/15-18:14:51.456838 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_smart_inbox_name] (ID 39), log number is 245 -2023/12/15-18:14:51.456839 6120108032 [db/version_set.cc:5722] Column family [agentid_my_gpt_vision] (ID 40), log number is 245 -2023/12/15-18:14:51.456840 6120108032 [db/version_set.cc:5722] Column family [jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c] (ID 41), log number is 245 -2023/12/15-18:14:51.456841 6120108032 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope] (ID 42), log number is 245 -2023/12/15-18:14:51.456842 6120108032 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history] (ID 43), log number is 245 -2023/12/15-18:14:51.456843 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false] (ID 44), log number is 245 -2023/12/15-18:14:51.456844 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_perms] (ID 45), log number is 245 -2023/12/15-18:14:51.456845 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_unread_list] (ID 46), log number is 245 -2023/12/15-18:14:51.456845 6120108032 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages] (ID 47), log number is 245 -2023/12/15-18:14:51.456846 6120108032 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context] (ID 48), log number is 245 -2023/12/15-18:14:51.456847 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_smart_inbox_name] (ID 49), log number is 245 -2023/12/15-18:14:51.456848 6120108032 [db/version_set.cc:5722] Column family [3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201] (ID 50), log number is 245 -2023/12/15-18:14:51.456849 6120108032 [db/version_set.cc:5722] Column family [jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d] (ID 51), log number is 245 -2023/12/15-18:14:51.456850 6120108032 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope] (ID 52), log number is 245 -2023/12/15-18:14:51.456851 6120108032 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history] (ID 53), log number is 245 -2023/12/15-18:14:51.456852 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false] (ID 54), log number is 245 -2023/12/15-18:14:51.456853 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_perms] (ID 55), log number is 245 -2023/12/15-18:14:51.456854 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_unread_list] (ID 56), log number is 245 -2023/12/15-18:14:51.456855 6120108032 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages] (ID 57), log number is 245 -2023/12/15-18:14:51.456856 6120108032 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context] (ID 58), log number is 245 -2023/12/15-18:14:51.456857 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_smart_inbox_name] (ID 59), log number is 245 -2023/12/15-18:14:51.456858 6120108032 [db/version_set.cc:5722] Column family [655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9] (ID 60), log number is 245 -2023/12/15-18:14:51.456859 6120108032 [db/version_set.cc:5722] Column family [jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580] (ID 61), log number is 245 -2023/12/15-18:14:51.456859 6120108032 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope] (ID 62), log number is 245 -2023/12/15-18:14:51.456860 6120108032 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history] (ID 63), log number is 245 -2023/12/15-18:14:51.456861 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false] (ID 64), log number is 245 -2023/12/15-18:14:51.456862 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_perms] (ID 65), log number is 245 -2023/12/15-18:14:51.456863 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_unread_list] (ID 66), log number is 245 -2023/12/15-18:14:51.456864 6120108032 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages] (ID 67), log number is 245 -2023/12/15-18:14:51.456865 6120108032 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context] (ID 68), log number is 245 -2023/12/15-18:14:51.456866 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_smart_inbox_name] (ID 69), log number is 245 -2023/12/15-18:14:51.456867 6120108032 [db/version_set.cc:5722] Column family [d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368] (ID 70), log number is 245 -2023/12/15-18:14:51.456868 6120108032 [db/version_set.cc:5722] Column family [jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1] (ID 71), log number is 245 -2023/12/15-18:14:51.456869 6120108032 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope] (ID 72), log number is 245 -2023/12/15-18:14:51.456870 6120108032 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history] (ID 73), log number is 245 -2023/12/15-18:14:51.456871 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false] (ID 74), log number is 245 -2023/12/15-18:14:51.456872 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_perms] (ID 75), log number is 245 -2023/12/15-18:14:51.456873 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_unread_list] (ID 76), log number is 245 -2023/12/15-18:14:51.456874 6120108032 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages] (ID 77), log number is 245 -2023/12/15-18:14:51.456875 6120108032 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context] (ID 78), log number is 245 -2023/12/15-18:14:51.456876 6120108032 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_smart_inbox_name] (ID 79), log number is 245 -2023/12/15-18:14:51.456877 6120108032 [db/version_set.cc:5722] Column family [48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a] (ID 80), log number is 245 -2023/12/15-18:14:51.456924 6120108032 [db/db_impl/db_impl_open.cc:537] DB ID: cd8c8a56-182b-440f-8ebb-d520dc6f6053 -2023/12/15-18:14:51.457843 6120108032 EVENT_LOG_v1 {"time_micros": 1702631691457822, "job": 1, "event": "recovery_started", "wal_files": [250]} -2023/12/15-18:14:51.457847 6120108032 [db/db_impl/db_impl_open.cc:1031] Recovering log #250 mode 2 -2023/12/15-18:14:51.459027 6120108032 EVENT_LOG_v1 {"time_micros": 1702631691459006, "cf_name": "external_node_identity_key", "job": 1, "event": "table_file_creation", "file_number": 254, "file_size": 1107, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 183, "largest_seqno": 183, "table_properties": {"data_size": 108, "index_size": 37, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 28, "raw_average_key_size": 28, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_identity_key", "column_family_id": 14, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631691, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "ZF24XZBYCVC2EM9KWE4P", "orig_file_number": 254, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:14:51.459485 6120108032 EVENT_LOG_v1 {"time_micros": 1702631691459466, "cf_name": "external_node_encryption_key", "job": 1, "event": "table_file_creation", "file_number": 255, "file_size": 1109, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 182, "largest_seqno": 182, "table_properties": {"data_size": 108, "index_size": 37, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 28, "raw_average_key_size": 28, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_encryption_key", "column_family_id": 15, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631691, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "ZF24XZBYCVC2EM9KWE4P", "orig_file_number": 255, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:14:51.459699 6120108032 EVENT_LOG_v1 {"time_micros": 1702631691459697, "job": 1, "event": "recovery_finished"} -2023/12/15-18:14:51.461010 6120108032 [db/version_set.cc:5180] Creating manifest 257 -2023/12/15-18:14:51.540753 6120108032 [file/delete_scheduler.cc:77] Deleted file tests/db_for_testing/test/000250.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 -2023/12/15-18:14:51.540854 6120108032 [db/db_impl/db_impl_open.cc:1977] SstFileManager instance 0x131355550 -2023/12/15-18:14:51.541740 6120108032 DB pointer 0x1338a5200 -2023/12/15-18:14:51.542172 6120681472 (Original Log Time 2023/12/15-18:14:51.541531) [db/db_impl/db_impl_compaction_flush.cc:3432] [external_node_identity_key] Moving #179 to level-1 1105 bytes -2023/12/15-18:14:51.542175 6120681472 (Original Log Time 2023/12/15-18:14:51.542128) EVENT_LOG_v1 {"time_micros": 1702631691542122, "job": 3, "event": "trivial_move", "destination_level": 1, "files": 1, "total_files_size": 1105} -2023/12/15-18:14:51.542176 6120681472 (Original Log Time 2023/12/15-18:14:51.542130) [db/db_impl/db_impl_compaction_flush.cc:3471] [external_node_identity_key] Moved #1 files to level-1 1105 bytes OK: files[3 1 0 0 0 0 0] max score 0.75 -2023/12/15-18:14:51.542418 6120681472 (Original Log Time 2023/12/15-18:14:51.542228) [db/db_impl/db_impl_compaction_flush.cc:3432] [external_node_encryption_key] Moving #180 to level-1 1107 bytes -2023/12/15-18:14:51.542421 6120681472 (Original Log Time 2023/12/15-18:14:51.542385) EVENT_LOG_v1 {"time_micros": 1702631691542381, "job": 4, "event": "trivial_move", "destination_level": 1, "files": 1, "total_files_size": 1107} -2023/12/15-18:14:51.542422 6120681472 (Original Log Time 2023/12/15-18:14:51.542387) [db/db_impl/db_impl_compaction_flush.cc:3471] [external_node_encryption_key] Moved #1 files to level-1 1107 bytes OK: files[3 1 0 0 0 0 0] max score 0.75 -2023/12/15-18:14:51.549333 6121828352 [db/db_impl/db_impl.cc:1085] ------- DUMPING STATS ------- -2023/12/15-18:14:51.549344 6121828352 [db/db_impl/db_impl.cc:1086] -** DB Stats ** -Uptime(secs): 0.1 total, 0.1 interval -Cumulative writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s -Cumulative WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent -Interval writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s -Interval WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Interval stall: 00:00:0.000 H:M:S, 0.0 percent -Write Stall (count): write-buffer-manager-limit-stops: 0, -** Compaction Stats [default] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [default] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131304448#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [default] ** - -** Compaction Stats [inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1313055f8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [inbox] ** - -** Compaction Stats [peers] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [peers] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1313064b8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [peers] ** - -** Compaction Stats [profiles_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.05 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.05 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1313073a8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_encryption_key] ** - -** Compaction Stats [profiles_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.04 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.04 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1313082b8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_key] ** - -** Compaction Stats [devices_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13130a2d8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_encryption_key] ** - -** Compaction Stats [devices_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13130b1c8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_identity_key] ** - -** Compaction Stats [devices_permissions] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.13 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_permissions] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13130c0d8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_permissions] ** - -** Compaction Stats [scheduled_message] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [scheduled_message] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13130cfe8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [scheduled_message] ** - -** Compaction Stats [all_messages] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 17.37 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 17.37 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131309f58#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages] ** - -** Compaction Stats [all_messages_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 3.13 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 3.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13130ebf8#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages_time_keyed] ** - -** Compaction Stats [one_time_registration_codes] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.68 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.68 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [one_time_registration_codes] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13130fb08#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [one_time_registration_codes] ** - -** Compaction Stats [profiles_identity_type] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.99 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 0.99 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_type] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131310a18#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_type] ** - -** Compaction Stats [profiles_permission] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.98 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 0.98 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_permission] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131311928#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_permission] ** - -** Compaction Stats [external_node_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 3/0 3.24 KB 0.8 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - L1 1/0 1.08 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 4/0 4.32 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - -** Compaction Stats [external_node_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131312838#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_identity_key] ** - -** Compaction Stats [external_node_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 3/0 3.25 KB 0.8 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - L1 1/0 1.08 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 4/0 4.33 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131313748#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_encryption_key] ** - -** Compaction Stats [all_jobs_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.31 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.31 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_jobs_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131314658#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_jobs_time_keyed] ** - -** Compaction Stats [resources] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.52 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [resources] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131315568#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [resources] ** - -** Compaction Stats [agents] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.94 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.94 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [agents] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131316468#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [agents] ** - -** Compaction Stats [toolkits] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [toolkits] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131317368#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [toolkits] ** - -** Compaction Stats [mesages_to_retry] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [mesages_to_retry] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131318268#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [mesages_to_retry] ** - -** Compaction Stats [message_box_symmetric_keys] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.45 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.45 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x131319168#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.1e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys] ** - -** Compaction Stats [message_box_symmetric_keys_times] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.46 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.46 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys_times] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13131a078#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys_times] ** - -** Compaction Stats [temp_files_inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.57 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [temp_files_inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13131af88#80291 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [temp_files_inbox] ** - -** Compaction Stats [job_queues] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.27 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.27 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [job_queues] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-co -2023/12/15-18:14:51.957612 6105083904 [db/db_impl/db_impl.cc:490] Shutdown: canceling all background work -2023/12/15-18:14:51.960362 6105083904 [db/db_impl/db_impl.cc:692] Shutdown complete diff --git a/tests/it/db_for_testing/test/LOG.old.1702631461468547 b/tests/it/db_for_testing/test/LOG.old.1702631461468547 deleted file mode 100644 index 2a5bf53f5..000000000 --- a/tests/it/db_for_testing/test/LOG.old.1702631461468547 +++ /dev/null @@ -1,2930 +0,0 @@ -2023/12/15-17:38:09.653287 8092540608 RocksDB version: 8.1.1 -2023/12/15-17:38:09.653899 8092540608 Compile date 2023-04-06 16:38:52 -2023/12/15-17:38:09.653902 8092540608 DB SUMMARY -2023/12/15-17:38:09.653903 8092540608 DB Session ID: 2FBTLJUVIZI5YP4TB2EO -2023/12/15-17:38:09.653952 8092540608 SST files in db/786a522d354d3ef8ca65613520f28730fc1f31130216a98d5155508a496efaa1 dir, Total Num: 0, files: -2023/12/15-17:38:09.653954 8092540608 Write Ahead Log file in db/786a522d354d3ef8ca65613520f28730fc1f31130216a98d5155508a496efaa1: -2023/12/15-17:38:09.653956 8092540608 Options.error_if_exists: 0 -2023/12/15-17:38:09.653957 8092540608 Options.create_if_missing: 1 -2023/12/15-17:38:09.653958 8092540608 Options.paranoid_checks: 1 -2023/12/15-17:38:09.653959 8092540608 Options.flush_verify_memtable_count: 1 -2023/12/15-17:38:09.653960 8092540608 Options.track_and_verify_wals_in_manifest: 0 -2023/12/15-17:38:09.653961 8092540608 Options.verify_sst_unique_id_in_manifest: 1 -2023/12/15-17:38:09.653962 8092540608 Options.env: 0x106b87458 -2023/12/15-17:38:09.653963 8092540608 Options.fs: PosixFileSystem -2023/12/15-17:38:09.653964 8092540608 Options.info_log: 0x12bf06898 -2023/12/15-17:38:09.653965 8092540608 Options.max_file_opening_threads: 16 -2023/12/15-17:38:09.653966 8092540608 Options.statistics: 0x0 -2023/12/15-17:38:09.653967 8092540608 Options.use_fsync: 0 -2023/12/15-17:38:09.653968 8092540608 Options.max_log_file_size: 0 -2023/12/15-17:38:09.653969 8092540608 Options.max_manifest_file_size: 1073741824 -2023/12/15-17:38:09.653970 8092540608 Options.log_file_time_to_roll: 0 -2023/12/15-17:38:09.653971 8092540608 Options.keep_log_file_num: 1000 -2023/12/15-17:38:09.653972 8092540608 Options.recycle_log_file_num: 0 -2023/12/15-17:38:09.653973 8092540608 Options.allow_fallocate: 1 -2023/12/15-17:38:09.653974 8092540608 Options.allow_mmap_reads: 0 -2023/12/15-17:38:09.653975 8092540608 Options.allow_mmap_writes: 0 -2023/12/15-17:38:09.653976 8092540608 Options.use_direct_reads: 0 -2023/12/15-17:38:09.653977 8092540608 Options.use_direct_io_for_flush_and_compaction: 0 -2023/12/15-17:38:09.653978 8092540608 Options.create_missing_column_families: 1 -2023/12/15-17:38:09.653979 8092540608 Options.db_log_dir: -2023/12/15-17:38:09.653980 8092540608 Options.wal_dir: -2023/12/15-17:38:09.653981 8092540608 Options.table_cache_numshardbits: 6 -2023/12/15-17:38:09.653982 8092540608 Options.WAL_ttl_seconds: 0 -2023/12/15-17:38:09.653983 8092540608 Options.WAL_size_limit_MB: 0 -2023/12/15-17:38:09.653984 8092540608 Options.max_write_batch_group_size_bytes: 1048576 -2023/12/15-17:38:09.653985 8092540608 Options.manifest_preallocation_size: 4194304 -2023/12/15-17:38:09.653986 8092540608 Options.is_fd_close_on_exec: 1 -2023/12/15-17:38:09.653987 8092540608 Options.advise_random_on_open: 1 -2023/12/15-17:38:09.653988 8092540608 Options.db_write_buffer_size: 0 -2023/12/15-17:38:09.653989 8092540608 Options.write_buffer_manager: 0x12bf06ab0 -2023/12/15-17:38:09.653990 8092540608 Options.access_hint_on_compaction_start: 1 -2023/12/15-17:38:09.653991 8092540608 Options.random_access_max_buffer_size: 1048576 -2023/12/15-17:38:09.653992 8092540608 Options.use_adaptive_mutex: 0 -2023/12/15-17:38:09.653993 8092540608 Options.rate_limiter: 0x0 -2023/12/15-17:38:09.653994 8092540608 Options.sst_file_manager.rate_bytes_per_sec: 0 -2023/12/15-17:38:09.653995 8092540608 Options.wal_recovery_mode: 2 -2023/12/15-17:38:09.653996 8092540608 Options.enable_thread_tracking: 0 -2023/12/15-17:38:09.653997 8092540608 Options.enable_pipelined_write: 0 -2023/12/15-17:38:09.653998 8092540608 Options.unordered_write: 0 -2023/12/15-17:38:09.653999 8092540608 Options.allow_concurrent_memtable_write: 1 -2023/12/15-17:38:09.654000 8092540608 Options.enable_write_thread_adaptive_yield: 1 -2023/12/15-17:38:09.654001 8092540608 Options.write_thread_max_yield_usec: 100 -2023/12/15-17:38:09.654002 8092540608 Options.write_thread_slow_yield_usec: 3 -2023/12/15-17:38:09.654003 8092540608 Options.row_cache: None -2023/12/15-17:38:09.654004 8092540608 Options.wal_filter: None -2023/12/15-17:38:09.654005 8092540608 Options.avoid_flush_during_recovery: 0 -2023/12/15-17:38:09.654006 8092540608 Options.allow_ingest_behind: 0 -2023/12/15-17:38:09.654007 8092540608 Options.two_write_queues: 0 -2023/12/15-17:38:09.654008 8092540608 Options.manual_wal_flush: 0 -2023/12/15-17:38:09.654009 8092540608 Options.wal_compression: 0 -2023/12/15-17:38:09.654010 8092540608 Options.atomic_flush: 0 -2023/12/15-17:38:09.654011 8092540608 Options.avoid_unnecessary_blocking_io: 0 -2023/12/15-17:38:09.654012 8092540608 Options.persist_stats_to_disk: 0 -2023/12/15-17:38:09.654013 8092540608 Options.write_dbid_to_manifest: 0 -2023/12/15-17:38:09.654014 8092540608 Options.log_readahead_size: 0 -2023/12/15-17:38:09.654015 8092540608 Options.file_checksum_gen_factory: Unknown -2023/12/15-17:38:09.654028 8092540608 Options.best_efforts_recovery: 0 -2023/12/15-17:38:09.654029 8092540608 Options.max_bgerror_resume_count: 2147483647 -2023/12/15-17:38:09.654030 8092540608 Options.bgerror_resume_retry_interval: 1000000 -2023/12/15-17:38:09.654031 8092540608 Options.allow_data_in_errors: 0 -2023/12/15-17:38:09.654032 8092540608 Options.db_host_id: __hostname__ -2023/12/15-17:38:09.654033 8092540608 Options.enforce_single_del_contracts: true -2023/12/15-17:38:09.654034 8092540608 Options.max_background_jobs: 2 -2023/12/15-17:38:09.654035 8092540608 Options.max_background_compactions: -1 -2023/12/15-17:38:09.654036 8092540608 Options.max_subcompactions: 1 -2023/12/15-17:38:09.654037 8092540608 Options.avoid_flush_during_shutdown: 0 -2023/12/15-17:38:09.654038 8092540608 Options.writable_file_max_buffer_size: 1048576 -2023/12/15-17:38:09.654039 8092540608 Options.delayed_write_rate : 16777216 -2023/12/15-17:38:09.654040 8092540608 Options.max_total_wal_size: 0 -2023/12/15-17:38:09.654041 8092540608 Options.delete_obsolete_files_period_micros: 21600000000 -2023/12/15-17:38:09.654042 8092540608 Options.stats_dump_period_sec: 600 -2023/12/15-17:38:09.654043 8092540608 Options.stats_persist_period_sec: 600 -2023/12/15-17:38:09.654044 8092540608 Options.stats_history_buffer_size: 1048576 -2023/12/15-17:38:09.654045 8092540608 Options.max_open_files: -1 -2023/12/15-17:38:09.654046 8092540608 Options.bytes_per_sync: 0 -2023/12/15-17:38:09.654047 8092540608 Options.wal_bytes_per_sync: 0 -2023/12/15-17:38:09.654048 8092540608 Options.strict_bytes_per_sync: 0 -2023/12/15-17:38:09.654049 8092540608 Options.compaction_readahead_size: 0 -2023/12/15-17:38:09.654049 8092540608 Options.max_background_flushes: -1 -2023/12/15-17:38:09.654050 8092540608 Compression algorithms supported: -2023/12/15-17:38:09.654052 8092540608 kZSTD supported: 0 -2023/12/15-17:38:09.654053 8092540608 kZlibCompression supported: 0 -2023/12/15-17:38:09.654055 8092540608 kXpressCompression supported: 0 -2023/12/15-17:38:09.654056 8092540608 kSnappyCompression supported: 0 -2023/12/15-17:38:09.654057 8092540608 kZSTDNotFinalCompression supported: 0 -2023/12/15-17:38:09.654058 8092540608 kLZ4HCCompression supported: 1 -2023/12/15-17:38:09.654059 8092540608 kLZ4Compression supported: 1 -2023/12/15-17:38:09.654060 8092540608 kBZip2Compression supported: 0 -2023/12/15-17:38:09.654068 8092540608 Fast CRC32 supported: Supported on Arm64 -2023/12/15-17:38:09.654069 8092540608 DMutex implementation: pthread_mutex_t -2023/12/15-17:38:09.654793 8092540608 [db/db_impl/db_impl_open.cc:315] Creating manifest 1 -2023/12/15-17:38:09.655399 8092540608 [db/version_set.cc:5662] Recovering from manifest file: db/786a522d354d3ef8ca65613520f28730fc1f31130216a98d5155508a496efaa1/MANIFEST-000001 -2023/12/15-17:38:09.655713 8092540608 [db/column_family.cc:621] --------------- Options for column family [default]: -2023/12/15-17:38:09.655717 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.655719 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.655720 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.655721 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.655722 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.655723 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.655724 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.655769 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12bf04ef0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12bf04f48 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.655772 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.655773 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.655775 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.655776 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.655777 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.655778 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.655779 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.655780 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.655781 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.655782 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.655783 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.655784 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.655785 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.655786 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.655787 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.655788 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.655789 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.655791 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.655792 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.655793 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.655794 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.655795 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.655796 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.655797 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.655798 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.655799 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.655800 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.655801 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.655802 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.655803 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.655803 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.655804 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.655805 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.655806 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.655807 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.655808 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.655810 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.655811 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.655812 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.655813 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.655814 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.655815 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.655816 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.655817 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.655818 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.655819 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.655820 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.655821 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.655822 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.655823 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.655825 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.655826 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.655827 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.655828 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.655829 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.655830 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.655831 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.655833 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.655837 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.655838 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.655840 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.655841 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.655842 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.655843 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.655844 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.655845 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.655846 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.655847 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.655848 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.655849 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.655850 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.655851 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.655852 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.655853 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.655854 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.655855 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.655856 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.655857 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.655858 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.655859 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.655860 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.655861 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.655862 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.655863 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.655864 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.655865 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.656603 8092540608 [db/version_set.cc:5713] Recovered from manifest file:db/786a522d354d3ef8ca65613520f28730fc1f31130216a98d5155508a496efaa1/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 -2023/12/15-17:38:09.656606 8092540608 [db/version_set.cc:5722] Column family [default] (ID 0), log number is 0 -2023/12/15-17:38:09.656659 8092540608 [db/db_impl/db_impl_open.cc:537] DB ID: cd8c8a56-182b-440f-8ebb-d520dc6f6053 -2023/12/15-17:38:09.657026 8092540608 [db/version_set.cc:5180] Creating manifest 5 -2023/12/15-17:38:09.657726 8092540608 [db/column_family.cc:621] --------------- Options for column family [inbox]: -2023/12/15-17:38:09.657730 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.657732 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.657733 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.657734 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.657735 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.657736 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.657737 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.657780 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d506c60) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d506cb8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.657783 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.657784 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.657785 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.657786 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.657787 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.657788 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.657789 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.657790 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.657791 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.657792 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.657793 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.657794 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.657795 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.657796 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.657797 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.657798 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.657799 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.657800 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.657801 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.657802 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.657803 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.657804 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.657805 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.657806 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.657807 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.657808 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.657809 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.657810 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.657811 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.657812 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.657813 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.657814 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.657815 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.657816 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.657817 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.657818 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.657819 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.657820 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.657821 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.657822 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.657823 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.657824 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.657825 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.657826 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.657827 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.657828 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.657829 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.657830 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.657831 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.657832 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.657834 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.657835 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.657836 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.657837 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.657838 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.657839 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.657840 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.657842 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.657843 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.657844 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.657846 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.657847 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.657848 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.657849 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.657850 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.657851 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.657852 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.657852 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.657853 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.657854 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.657855 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.657856 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.657857 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.657858 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.657859 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.657860 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.657861 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.657862 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.657863 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.657864 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.657865 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.657866 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.657867 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.657868 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.657869 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.657870 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.657954 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [inbox] (ID 1) -2023/12/15-17:38:09.662148 8092540608 [db/column_family.cc:621] --------------- Options for column family [peers]: -2023/12/15-17:38:09.662155 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.662156 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.662157 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.662158 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.662159 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.662161 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.662162 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.662175 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d507c60) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d507cb8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.662176 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.662177 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.662179 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.662180 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.662181 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.662182 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.662183 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.662184 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.662185 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.662186 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.662187 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.662188 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.662189 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.662190 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.662191 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.662192 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.662193 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.662194 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.662195 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.662196 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.662197 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.662198 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.662199 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.662200 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.662201 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.662202 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.662203 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.662204 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.662205 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.662206 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.662207 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.662208 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.662209 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.662210 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.662211 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.662212 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.662213 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.662214 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.662215 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.662216 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.662217 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.662218 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.662219 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.662220 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.662221 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.662222 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.662223 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.662224 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.662225 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.662226 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.662228 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.662229 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.662230 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.662231 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.662232 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.662233 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.662234 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.662236 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.662237 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.662238 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.662240 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.662241 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.662242 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.662243 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.662244 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.662245 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.662246 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.662247 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.662248 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.662249 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.662250 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.662251 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.662252 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.662253 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.662254 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.662255 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.662256 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.662257 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.662258 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.662259 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.662260 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.662260 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.662261 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.662263 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.662263 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.662264 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.662361 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [peers] (ID 2) -2023/12/15-17:38:09.666783 8092540608 [db/column_family.cc:621] --------------- Options for column family [profiles_encryption_key]: -2023/12/15-17:38:09.666788 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.666789 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.666791 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.666792 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.666793 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.666794 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.666795 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.666806 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d508b60) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d508bb8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.666808 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.666809 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.666810 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.666811 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.666812 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.666813 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.666814 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.666815 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.666816 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.666816 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.666817 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.666818 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.666819 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.666820 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.666821 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.666822 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.666823 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.666824 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.666825 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.666826 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.666827 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.666828 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.666829 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.666829 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.666830 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.666831 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.666832 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.666833 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.666834 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.666835 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.666836 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.666837 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.666838 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.666839 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.666840 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.666841 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.666842 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.666843 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.666844 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.666845 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.666846 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.666846 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.666847 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.666848 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.666849 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.666850 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.666851 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.666852 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.666853 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.666854 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.666855 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.666857 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.666858 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.666859 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.666860 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.666861 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.666862 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.666863 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.666864 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.666865 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.666867 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.666868 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.666869 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.666869 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.666870 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.666871 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.666872 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.666873 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.666874 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.666875 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.666876 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.666877 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.666878 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.666878 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.666879 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.666880 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.666881 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.666882 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.666883 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.666884 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.666885 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.666886 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.666887 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.666888 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.666889 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.666890 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.666963 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [profiles_encryption_key] (ID 3) -2023/12/15-17:38:09.672967 8092540608 [db/column_family.cc:621] --------------- Options for column family [profiles_identity_key]: -2023/12/15-17:38:09.672975 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.672976 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.672978 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.672979 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.672980 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.672981 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.672982 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.672994 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d509a70) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d509ac8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.672998 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.672999 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.673001 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.673002 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.673003 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.673004 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.673005 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.673006 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.673007 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.673008 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.673009 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.673010 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.673011 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.673012 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.673012 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.673013 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.673014 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.673015 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.673016 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.673017 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.673018 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.673019 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.673020 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.673021 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.673022 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.673022 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.673023 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.673024 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.673025 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.673026 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.673027 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.673028 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.673029 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.673030 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.673031 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.673032 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.673033 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.673034 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.673035 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.673036 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.673037 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.673038 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.673039 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.673039 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.673040 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.673041 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.673042 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.673043 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.673044 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.673045 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.673047 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.673049 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.673050 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.673051 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.673051 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.673052 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.673054 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.673055 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.673056 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.673057 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.673060 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.673061 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.673062 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.673063 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.673064 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.673065 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.673065 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.673066 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.673067 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.673068 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.673069 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.673070 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.673071 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.673071 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.673072 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.673073 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.673074 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.673075 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.673076 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.673077 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.673077 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.673078 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.673079 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.673080 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.673081 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.673082 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.673197 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [profiles_identity_key] (ID 4) -2023/12/15-17:38:09.679540 8092540608 [db/column_family.cc:621] --------------- Options for column family [devices_encryption_key]: -2023/12/15-17:38:09.679546 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.679547 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.679548 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.679549 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.679551 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.679552 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.679552 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.679564 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d50a980) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d50a9d8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.679566 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.679567 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.679568 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.679569 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.679570 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.679571 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.679572 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.679572 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.679573 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.679574 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.679575 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.679576 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.679577 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.679578 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.679578 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.679579 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.679580 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.679581 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.679582 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.679583 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.679584 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.679584 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.679585 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.679586 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.679587 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.679588 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.679589 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.679589 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.679590 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.679591 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.679592 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.679593 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.679594 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.679595 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.679596 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.679596 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.679597 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.679598 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.679599 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.679600 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.679601 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.679602 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.679603 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.679603 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.679604 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.679605 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.679606 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.679607 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.679608 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.679609 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.679610 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.679612 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.679613 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.679613 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.679614 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.679615 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.679616 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.679618 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.679618 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.679619 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.679621 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.679622 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.679623 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.679624 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.679625 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.679626 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.679627 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.679627 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.679628 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.679629 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.679630 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.679631 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.679632 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.679633 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.679633 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.679634 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.679635 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.679636 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.679637 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.679638 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.679638 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.679639 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.679640 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.679641 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.679642 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.679643 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.679721 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [devices_encryption_key] (ID 5) -2023/12/15-17:38:09.686837 8092540608 [db/column_family.cc:621] --------------- Options for column family [devices_identity_key]: -2023/12/15-17:38:09.686843 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.686845 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.686846 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.686847 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.686848 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.686849 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.686850 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.686862 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d507900) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d50ba08 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.686864 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.686865 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.686866 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.686867 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.686868 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.686869 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.686870 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.686871 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.686872 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.686873 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.686874 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.686875 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.686876 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.686877 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.686878 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.686878 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.686879 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.686880 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.686881 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.686882 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.686883 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.686884 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.686885 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.686885 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.686886 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.686887 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.686888 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.686889 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.686890 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.686891 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.686891 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.686892 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.686893 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.686894 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.686895 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.686896 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.686897 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.686898 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.686899 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.686900 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.686901 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.686901 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.686902 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.686903 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.686904 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.686905 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.686906 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.686907 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.686908 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.686909 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.686910 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.686912 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.686913 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.686913 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.686914 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.686915 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.686916 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.686917 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.686918 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.686919 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.686922 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.686922 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.686923 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.686924 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.686925 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.686926 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.686927 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.686928 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.686929 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.686929 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.686930 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.686931 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.686932 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.686933 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.686934 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.686935 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.686936 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.686936 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.686937 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.686938 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.686939 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.686940 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.686941 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.686942 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.686943 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.686943 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.687032 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [devices_identity_key] (ID 6) -2023/12/15-17:38:09.694707 8092540608 [db/column_family.cc:621] --------------- Options for column family [devices_permissions]: -2023/12/15-17:38:09.694714 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.694715 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.694716 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.694717 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.694718 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.694719 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.694720 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.694737 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d50c8a0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d50c8f8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.694739 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.694740 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.694741 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.694742 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.694743 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.694744 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.694745 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.694745 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.694746 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.694747 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.694748 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.694749 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.694750 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.694750 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.694751 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.694752 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.694753 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.694754 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.694755 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.694755 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.694756 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.694757 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.694758 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.694759 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.694760 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.694760 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.694761 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.694762 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.694763 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.694764 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.694765 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.694765 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.694766 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.694767 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.694768 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.694769 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.694770 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.694771 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.694772 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.694773 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.694773 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.694774 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.694775 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.694776 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.694777 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.694778 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.694779 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.694779 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.694780 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.694781 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.694783 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.694784 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.694785 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.694786 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.694787 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.694788 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.694788 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.694790 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.694791 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.694792 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.694793 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.694794 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.694795 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.694796 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.694797 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.694798 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.694799 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.694799 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.694800 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.694801 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.694802 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.694803 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.694803 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.694804 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.694805 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.694806 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.694807 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.694808 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.694808 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.694809 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.694810 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.694811 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.694812 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.694813 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.694813 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.694814 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.694904 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [devices_permissions] (ID 7) -2023/12/15-17:38:09.703508 8092540608 [db/column_family.cc:621] --------------- Options for column family [scheduled_message]: -2023/12/15-17:38:09.703516 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.703518 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.703519 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.703520 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.703521 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.703522 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.703523 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.703537 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d50d7b0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d50d808 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.703541 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.703542 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.703544 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.703544 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.703546 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.703547 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.703547 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.703548 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.703549 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.703550 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.703551 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.703552 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.703553 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.703554 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.703555 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.703555 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.703556 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.703557 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.703558 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.703559 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.703560 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.703561 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.703562 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.703563 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.703563 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.703564 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.703565 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.703566 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.703567 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.703568 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.703569 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.703570 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.703570 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.703571 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.703572 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.703573 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.703574 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.703575 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.703576 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.703577 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.703578 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.703579 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.703579 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.703580 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.703581 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.703582 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.703583 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.703584 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.703585 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.703586 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.703587 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.703589 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.703590 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.703591 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.703592 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.703592 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.703593 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.703595 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.703596 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.703597 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.703599 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.703600 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.703601 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.703602 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.703603 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.703604 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.703604 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.703605 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.703606 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.703607 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.703608 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.703609 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.703610 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.703610 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.703611 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.703612 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.703613 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.703614 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.703615 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.703616 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.703617 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.703617 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.703618 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.703619 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.703620 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.703621 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.703731 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [scheduled_message] (ID 8) -2023/12/15-17:38:09.713793 8092540608 [db/column_family.cc:621] --------------- Options for column family [all_messages]: -2023/12/15-17:38:09.713800 8092540608 Options.comparator: leveldb.BytewiseComparator -2023/12/15-17:38:09.713802 8092540608 Options.merge_operator: None -2023/12/15-17:38:09.713803 8092540608 Options.compaction_filter: None -2023/12/15-17:38:09.713804 8092540608 Options.compaction_filter_factory: None -2023/12/15-17:38:09.713805 8092540608 Options.sst_partitioner_factory: None -2023/12/15-17:38:09.713806 8092540608 Options.memtable_factory: SkipListFactory -2023/12/15-17:38:09.713807 8092540608 Options.table_factory: BlockBasedTable -2023/12/15-17:38:09.713818 8092540608 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12d50e6c0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12d50e718 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-17:38:09.713820 8092540608 Options.write_buffer_size: 67108864 -2023/12/15-17:38:09.713821 8092540608 Options.max_write_buffer_number: 2 -2023/12/15-17:38:09.713822 8092540608 Options.compression: NoCompression -2023/12/15-17:38:09.713823 8092540608 Options.bottommost_compression: Disabled -2023/12/15-17:38:09.713824 8092540608 Options.prefix_extractor: nullptr -2023/12/15-17:38:09.713825 8092540608 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-17:38:09.713826 8092540608 Options.num_levels: 7 -2023/12/15-17:38:09.713826 8092540608 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-17:38:09.713827 8092540608 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-17:38:09.713828 8092540608 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-17:38:09.713829 8092540608 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-17:38:09.713830 8092540608 Options.bottommost_compression_opts.level: 32767 -2023/12/15-17:38:09.713831 8092540608 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-17:38:09.713832 8092540608 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.713833 8092540608 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.713833 8092540608 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.713834 8092540608 Options.bottommost_compression_opts.enabled: false -2023/12/15-17:38:09.713835 8092540608 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.713836 8092540608 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.713837 8092540608 Options.compression_opts.window_bits: -14 -2023/12/15-17:38:09.713838 8092540608 Options.compression_opts.level: 32767 -2023/12/15-17:38:09.713839 8092540608 Options.compression_opts.strategy: 0 -2023/12/15-17:38:09.713840 8092540608 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-17:38:09.713840 8092540608 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-17:38:09.713841 8092540608 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-17:38:09.713842 8092540608 Options.compression_opts.parallel_threads: 1 -2023/12/15-17:38:09.713843 8092540608 Options.compression_opts.enabled: false -2023/12/15-17:38:09.713844 8092540608 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-17:38:09.713845 8092540608 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-17:38:09.713846 8092540608 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-17:38:09.713846 8092540608 Options.level0_stop_writes_trigger: 36 -2023/12/15-17:38:09.713847 8092540608 Options.target_file_size_base: 67108864 -2023/12/15-17:38:09.713848 8092540608 Options.target_file_size_multiplier: 1 -2023/12/15-17:38:09.713849 8092540608 Options.max_bytes_for_level_base: 268435456 -2023/12/15-17:38:09.713850 8092540608 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-17:38:09.713851 8092540608 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-17:38:09.713852 8092540608 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-17:38:09.713853 8092540608 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-17:38:09.713853 8092540608 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-17:38:09.713854 8092540608 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-17:38:09.713855 8092540608 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-17:38:09.713856 8092540608 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-17:38:09.713857 8092540608 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-17:38:09.713858 8092540608 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-17:38:09.713859 8092540608 Options.max_compaction_bytes: 1677721600 -2023/12/15-17:38:09.713860 8092540608 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-17:38:09.713860 8092540608 Options.arena_block_size: 1048576 -2023/12/15-17:38:09.713861 8092540608 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-17:38:09.713862 8092540608 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-17:38:09.713863 8092540608 Options.disable_auto_compactions: 0 -2023/12/15-17:38:09.713864 8092540608 Options.compaction_style: kCompactionStyleLevel -2023/12/15-17:38:09.713866 8092540608 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-17:38:09.713867 8092540608 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-17:38:09.713867 8092540608 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-17:38:09.713868 8092540608 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-17:38:09.713869 8092540608 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-17:38:09.713870 8092540608 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-17:38:09.713872 8092540608 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-17:38:09.713872 8092540608 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-17:38:09.713873 8092540608 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-17:38:09.713876 8092540608 Options.table_properties_collectors: -2023/12/15-17:38:09.713877 8092540608 Options.inplace_update_support: 0 -2023/12/15-17:38:09.713877 8092540608 Options.inplace_update_num_locks: 10000 -2023/12/15-17:38:09.713878 8092540608 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-17:38:09.713879 8092540608 Options.memtable_whole_key_filtering: 0 -2023/12/15-17:38:09.713880 8092540608 Options.memtable_huge_page_size: 0 -2023/12/15-17:38:09.713881 8092540608 Options.bloom_locality: 0 -2023/12/15-17:38:09.713882 8092540608 Options.max_successive_merges: 0 -2023/12/15-17:38:09.713883 8092540608 Options.optimize_filters_for_hits: 0 -2023/12/15-17:38:09.713884 8092540608 Options.paranoid_file_checks: 0 -2023/12/15-17:38:09.713884 8092540608 Options.force_consistency_checks: 1 -2023/12/15-17:38:09.713885 8092540608 Options.report_bg_io_stats: 0 -2023/12/15-17:38:09.713886 8092540608 Options.ttl: 2592000 -2023/12/15-17:38:09.713887 8092540608 Options.periodic_compaction_seconds: 0 -2023/12/15-17:38:09.713888 8092540608 Options.preclude_last_level_data_seconds: 0 -2023/12/15-17:38:09.713889 8092540608 Options.preserve_internal_time_seconds: 0 -2023/12/15-17:38:09.713890 8092540608 Options.enable_blob_files: false -2023/12/15-17:38:09.713890 8092540608 Options.min_blob_size: 0 -2023/12/15-17:38:09.713891 8092540608 Options.blob_file_size: 268435456 -2023/12/15-17:38:09.713892 8092540608 Options.blob_compression_type: NoCompression -2023/12/15-17:38:09.713893 8092540608 Options.enable_blob_garbage_collection: false -2023/12/15-17:38:09.713894 8092540608 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-17:38:09.713895 8092540608 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-17:38:09.713896 8092540608 Options.blob_compaction_readahead_size: 0 -2023/12/15-17:38:09.713897 8092540608 Options.blob_file_starting_level: 0 -2023/12/15-17:38:09.713897 8092540608 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-17:38:09.713977 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [all_messages] (ID 9) -2023/12/15-17:38:09.725069 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.725167 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [all_messages_time_keyed] (ID 10) -2023/12/15-17:38:09.737056 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.737176 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [one_time_registration_codes] (ID 11) -2023/12/15-17:38:09.750756 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.750841 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [profiles_identity_type] (ID 12) -2023/12/15-17:38:09.764827 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.764941 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [profiles_permission] (ID 13) -2023/12/15-17:38:09.779879 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.779976 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [external_node_identity_key] (ID 14) -2023/12/15-17:38:09.795895 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.795985 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [external_node_encryption_key] (ID 15) -2023/12/15-17:38:09.812813 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.812899 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [all_jobs_time_keyed] (ID 16) -2023/12/15-17:38:09.830565 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.830651 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [resources] (ID 17) -2023/12/15-17:38:09.849538 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.849623 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [agents] (ID 18) -2023/12/15-17:38:09.875945 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.876069 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [toolkits] (ID 19) -2023/12/15-17:38:09.903468 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.903566 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [mesages_to_retry] (ID 20) -2023/12/15-17:38:09.926374 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.926494 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [message_box_symmetric_keys] (ID 21) -2023/12/15-17:38:09.955930 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.956047 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [message_box_symmetric_keys_times] (ID 22) -2023/12/15-17:38:09.981113 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:09.981205 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [temp_files_inbox] (ID 23) -2023/12/15-17:38:10.012175 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:10.012286 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [job_queues] (ID 24) -2023/12/15-17:38:10.038648 8092540608 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:10.038787 8092540608 [db/db_impl/db_impl.cc:3200] Created column family [cron_queues] (ID 25) -2023/12/15-17:38:10.103934 8092540608 [db/db_impl/db_impl_open.cc:1977] SstFileManager instance 0x12bf06d80 -2023/12/15-17:38:10.104078 8092540608 DB pointer 0x12c808200 -2023/12/15-17:38:10.106355 6147895296 [db/db_impl/db_impl.cc:1085] ------- DUMPING STATS ------- -2023/12/15-17:38:10.106361 6147895296 [db/db_impl/db_impl.cc:1086] -** DB Stats ** -Uptime(secs): 0.4 total, 0.4 interval -Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s -Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent -Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s -Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Interval stall: 00:00:0.000 H:M:S, 0.0 percent -Write Stall (count): write-buffer-manager-limit-stops: 0, -** Compaction Stats [default] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [default] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12bf04f48#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 7.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [default] ** - -** Compaction Stats [inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d506cb8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [inbox] ** - -** Compaction Stats [peers] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [peers] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d507cb8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [peers] ** - -** Compaction Stats [profiles_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d508bb8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_encryption_key] ** - -** Compaction Stats [profiles_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d509ac8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_key] ** - -** Compaction Stats [devices_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50a9d8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_encryption_key] ** - -** Compaction Stats [devices_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50ba08#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_identity_key] ** - -** Compaction Stats [devices_permissions] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_permissions] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50c8f8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_permissions] ** - -** Compaction Stats [scheduled_message] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [scheduled_message] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50d808#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [scheduled_message] ** - -** Compaction Stats [all_messages] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50e718#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages] ** - -** Compaction Stats [all_messages_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50b688#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages_time_keyed] ** - -** Compaction Stats [one_time_registration_codes] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [one_time_registration_codes] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d510328#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [one_time_registration_codes] ** - -** Compaction Stats [profiles_identity_type] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_type] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.4 total, 0.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d511238#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_type] ** - -** Compaction Stats [profiles_permission] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_permission] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d512148#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_permission] ** - -** Compaction Stats [external_node_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d513058#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_identity_key] ** - -** Compaction Stats [external_node_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d513f68#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_encryption_key] ** - -** Compaction Stats [all_jobs_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_jobs_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d514e78#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_jobs_time_keyed] ** - -** Compaction Stats [resources] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [resources] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d515d88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [resources] ** - -** Compaction Stats [agents] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [agents] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d516c88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [agents] ** - -** Compaction Stats [toolkits] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [toolkits] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.2 total, 0.2 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d517b88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [toolkits] ** - -** Compaction Stats [mesages_to_retry] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [mesages_to_retry] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.2 total, 0.2 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d518a88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [mesages_to_retry] ** - -** Compaction Stats [message_box_symmetric_keys] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.2 total, 0.2 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d519988#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys] ** - -** Compaction Stats [message_box_symmetric_keys_times] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys_times] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.2 total, 0.2 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51a898#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys_times] ** - -** Compaction Stats [temp_files_inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [temp_files_inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51b7a8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [temp_files_inbox] ** - -** Compaction Stats [job_queues] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [job_queues] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51c6a8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [job_queues] ** - -** Compaction Stats [cron_queues] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [cron_queues] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51d5a8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [cron_queues] ** -2023/12/15-17:38:10.682010 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:10.682144 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [agent_my_gpt_profiles_with_access] (ID 26) -2023/12/15-17:38:10.710734 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:10.710862 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [agent_my_gpt_toolkits_accessible] (ID 27) -2023/12/15-17:38:10.740410 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:10.740498 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [agent_my_gpt_vision_profiles_with_access] (ID 28) -2023/12/15-17:38:10.770948 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:10.771066 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [agent_my_gpt_vision_toolkits_accessible] (ID 29) -2023/12/15-17:38:43.709318 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.709638 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [agentid_my_gpt] (ID 30) -2023/12/15-17:38:43.754438 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.754566 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae] (ID 31) -2023/12/15-17:38:43.792236 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.792330 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope] (ID 32) -2023/12/15-17:38:43.825618 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.825703 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history] (ID 33) -2023/12/15-17:38:43.860359 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.860488 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false] (ID 34) -2023/12/15-17:38:43.895316 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.895412 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_perms] (ID 35) -2023/12/15-17:38:43.931046 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.931162 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_unread_list] (ID 36) -2023/12/15-17:38:43.967994 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:43.968088 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages] (ID 37) -2023/12/15-17:38:44.006670 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:44.006799 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context] (ID 38) -2023/12/15-17:38:44.047110 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:38:44.047227 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_smart_inbox_name] (ID 39) -2023/12/15-17:39:24.484619 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.485092 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [agentid_my_gpt_vision] (ID 40) -2023/12/15-17:39:24.551073 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.551191 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c] (ID 41) -2023/12/15-17:39:24.594620 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.594719 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope] (ID 42) -2023/12/15-17:39:24.637495 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.637647 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history] (ID 43) -2023/12/15-17:39:24.681282 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.681383 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false] (ID 44) -2023/12/15-17:39:24.725724 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.725826 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_perms] (ID 45) -2023/12/15-17:39:24.770523 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.770629 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_unread_list] (ID 46) -2023/12/15-17:39:24.816843 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.817000 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages] (ID 47) -2023/12/15-17:39:24.863971 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.864057 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context] (ID 48) -2023/12/15-17:39:24.912991 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.913122 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_smart_inbox_name] (ID 49) -2023/12/15-17:39:24.969738 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:39:24.969866 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201] (ID 50) -2023/12/15-17:40:18.834274 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:18.834743 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d] (ID 51) -2023/12/15-17:40:18.912045 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:18.912156 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope] (ID 52) -2023/12/15-17:40:18.964490 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:18.964581 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history] (ID 53) -2023/12/15-17:40:19.018270 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:19.018374 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false] (ID 54) -2023/12/15-17:40:19.071877 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:19.071970 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_perms] (ID 55) -2023/12/15-17:40:19.126439 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:19.126549 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_unread_list] (ID 56) -2023/12/15-17:40:19.181606 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:19.181693 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages] (ID 57) -2023/12/15-17:40:19.238322 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:19.238417 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context] (ID 58) -2023/12/15-17:40:19.295064 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:19.295158 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_smart_inbox_name] (ID 59) -2023/12/15-17:40:19.360367 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:19.360476 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9] (ID 60) -2023/12/15-17:40:39.112106 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.112244 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580] (ID 61) -2023/12/15-17:40:39.174760 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.174882 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope] (ID 62) -2023/12/15-17:40:39.240706 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.240825 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history] (ID 63) -2023/12/15-17:40:39.322307 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.322452 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false] (ID 64) -2023/12/15-17:40:39.386449 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.386567 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_perms] (ID 65) -2023/12/15-17:40:39.451735 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.451826 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_unread_list] (ID 66) -2023/12/15-17:40:39.516664 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.516754 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages] (ID 67) -2023/12/15-17:40:39.582192 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.582308 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context] (ID 68) -2023/12/15-17:40:39.648527 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.648615 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_smart_inbox_name] (ID 69) -2023/12/15-17:40:39.723204 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:40:39.723330 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368] (ID 70) -2023/12/15-17:46:25.880527 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:25.880886 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1] (ID 71) -2023/12/15-17:46:25.987189 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:25.987300 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope] (ID 72) -2023/12/15-17:46:26.059886 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.060087 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history] (ID 73) -2023/12/15-17:46:26.131626 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.131717 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false] (ID 74) -2023/12/15-17:46:26.205813 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.205909 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_perms] (ID 75) -2023/12/15-17:46:26.279594 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.279725 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_unread_list] (ID 76) -2023/12/15-17:46:26.352877 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.352975 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages] (ID 77) -2023/12/15-17:46:26.427369 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.427488 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context] (ID 78) -2023/12/15-17:46:26.501900 6129004544 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.502019 6129004544 [db/db_impl/db_impl.cc:3200] Created column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_smart_inbox_name] (ID 79) -2023/12/15-17:46:26.587618 6126858240 [db/column_family.cc:624] (skipping printing options) -2023/12/15-17:46:26.587746 6126858240 [db/db_impl/db_impl.cc:3200] Created column family [48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a] (ID 80) -2023/12/15-17:48:10.125735 6147895296 [db/db_impl/db_impl.cc:1085] ------- DUMPING STATS ------- -2023/12/15-17:48:10.125838 6147895296 [db/db_impl/db_impl.cc:1086] -** DB Stats ** -Uptime(secs): 600.5 total, 600.0 interval -Cumulative writes: 84 writes, 165 keys, 84 commit groups, 1.0 writes per commit group, ingest: 0.01 GB, 0.02 MB/s -Cumulative WAL: 84 writes, 0 syncs, 84.00 writes per sync, written: 0.01 GB, 0.02 MB/s -Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent -Interval writes: 84 writes, 165 keys, 84 commit groups, 1.0 writes per commit group, ingest: 10.79 MB, 0.02 MB/s -Interval WAL: 84 writes, 0 syncs, 84.00 writes per sync, written: 0.01 GB, 0.02 MB/s -Interval stall: 00:00:0.000 H:M:S, 0.0 percent -Write Stall (count): write-buffer-manager-limit-stops: 0, -** Compaction Stats [default] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [default] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.5 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12bf04f48#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 0.000237 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [default] ** - -** Compaction Stats [inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.5 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d506cb8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 0.000145 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [inbox] ** - -** Compaction Stats [peers] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [peers] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.5 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d507cb8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 0.000705 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [peers] ** - -** Compaction Stats [profiles_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d508bb8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 0.0001 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_encryption_key] ** - -** Compaction Stats [profiles_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d509ac8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 8.1e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_key] ** - -** Compaction Stats [devices_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50a9d8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_encryption_key] ** - -** Compaction Stats [devices_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50ba08#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_identity_key] ** - -** Compaction Stats [devices_permissions] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_permissions] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50c8f8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_permissions] ** - -** Compaction Stats [scheduled_message] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [scheduled_message] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50d808#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [scheduled_message] ** - -** Compaction Stats [all_messages] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50e718#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages] ** - -** Compaction Stats [all_messages_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d50b688#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages_time_keyed] ** - -** Compaction Stats [one_time_registration_codes] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [one_time_registration_codes] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d510328#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [one_time_registration_codes] ** - -** Compaction Stats [profiles_identity_type] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_type] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d511238#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_type] ** - -** Compaction Stats [profiles_permission] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_permission] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.4 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d512148#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_permission] ** - -** Compaction Stats [external_node_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.3 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d513058#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_identity_key] ** - -** Compaction Stats [external_node_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.3 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d513f68#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_encryption_key] ** - -** Compaction Stats [all_jobs_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_jobs_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.3 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d514e78#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 8.2e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_jobs_time_keyed] ** - -** Compaction Stats [resources] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [resources] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.3 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d515d88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [resources] ** - -** Compaction Stats [agents] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [agents] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.3 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d516c88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [agents] ** - -** Compaction Stats [toolkits] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [toolkits] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.2 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d517b88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 8.1e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [toolkits] ** - -** Compaction Stats [mesages_to_retry] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [mesages_to_retry] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.2 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d518a88#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [mesages_to_retry] ** - -** Compaction Stats [message_box_symmetric_keys] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.2 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d519988#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys] ** - -** Compaction Stats [message_box_symmetric_keys_times] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys_times] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.2 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51a898#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 7.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys_times] ** - -** Compaction Stats [temp_files_inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [temp_files_inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.1 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51b7a8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 8.2e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [temp_files_inbox] ** - -** Compaction Stats [job_queues] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [job_queues] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.1 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51c6a8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 8.2e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [job_queues] ** - -** Compaction Stats [cron_queues] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [cron_queues] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 600.1 total, 600.0 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12d51d5a8#74896 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 2 last_copies: 0 last_secs: 8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [cron_queues] ** - -** Compaction Stats [agent_my_gpt_profiles_with_access] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [agent_my_gpt_profiles_with_access] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 599.4 total, 599.4 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compacti diff --git a/tests/it/db_for_testing/test/LOG.old.1702631560724016 b/tests/it/db_for_testing/test/LOG.old.1702631560724016 deleted file mode 100644 index 3bf717399..000000000 --- a/tests/it/db_for_testing/test/LOG.old.1702631560724016 +++ /dev/null @@ -1,2308 +0,0 @@ -2023/12/15-18:11:01.469136 6123778048 RocksDB version: 8.1.1 -2023/12/15-18:11:01.470923 6123778048 Compile date 2023-04-06 16:38:52 -2023/12/15-18:11:01.470925 6123778048 DB SUMMARY -2023/12/15-18:11:01.470926 6123778048 DB Session ID: 07Y21L7WAIVNK1EN99Q3 -2023/12/15-18:11:01.470972 6123778048 CURRENT file: CURRENT -2023/12/15-18:11:01.470974 6123778048 IDENTITY file: IDENTITY -2023/12/15-18:11:01.470980 6123778048 MANIFEST file: MANIFEST-000005 size: 7483 Bytes -2023/12/15-18:11:01.470982 6123778048 SST files in tests/db_for_testing/test dir, Total Num: 0, files: -2023/12/15-18:11:01.470984 6123778048 Write Ahead Log file in tests/db_for_testing/test: 000004.log size: 19735761 ; -2023/12/15-18:11:01.470985 6123778048 Options.error_if_exists: 0 -2023/12/15-18:11:01.470986 6123778048 Options.create_if_missing: 1 -2023/12/15-18:11:01.470987 6123778048 Options.paranoid_checks: 1 -2023/12/15-18:11:01.470988 6123778048 Options.flush_verify_memtable_count: 1 -2023/12/15-18:11:01.470989 6123778048 Options.track_and_verify_wals_in_manifest: 0 -2023/12/15-18:11:01.470990 6123778048 Options.verify_sst_unique_id_in_manifest: 1 -2023/12/15-18:11:01.470991 6123778048 Options.env: 0x106918050 -2023/12/15-18:11:01.470992 6123778048 Options.fs: PosixFileSystem -2023/12/15-18:11:01.470993 6123778048 Options.info_log: 0x135e809c8 -2023/12/15-18:11:01.470994 6123778048 Options.max_file_opening_threads: 16 -2023/12/15-18:11:01.470995 6123778048 Options.statistics: 0x0 -2023/12/15-18:11:01.470996 6123778048 Options.use_fsync: 0 -2023/12/15-18:11:01.470997 6123778048 Options.max_log_file_size: 0 -2023/12/15-18:11:01.470998 6123778048 Options.max_manifest_file_size: 1073741824 -2023/12/15-18:11:01.470999 6123778048 Options.log_file_time_to_roll: 0 -2023/12/15-18:11:01.470999 6123778048 Options.keep_log_file_num: 1000 -2023/12/15-18:11:01.471000 6123778048 Options.recycle_log_file_num: 0 -2023/12/15-18:11:01.471001 6123778048 Options.allow_fallocate: 1 -2023/12/15-18:11:01.471002 6123778048 Options.allow_mmap_reads: 0 -2023/12/15-18:11:01.471003 6123778048 Options.allow_mmap_writes: 0 -2023/12/15-18:11:01.471004 6123778048 Options.use_direct_reads: 0 -2023/12/15-18:11:01.471005 6123778048 Options.use_direct_io_for_flush_and_compaction: 0 -2023/12/15-18:11:01.471006 6123778048 Options.create_missing_column_families: 1 -2023/12/15-18:11:01.471007 6123778048 Options.db_log_dir: -2023/12/15-18:11:01.471007 6123778048 Options.wal_dir: -2023/12/15-18:11:01.471008 6123778048 Options.table_cache_numshardbits: 6 -2023/12/15-18:11:01.471009 6123778048 Options.WAL_ttl_seconds: 0 -2023/12/15-18:11:01.471010 6123778048 Options.WAL_size_limit_MB: 0 -2023/12/15-18:11:01.471011 6123778048 Options.max_write_batch_group_size_bytes: 1048576 -2023/12/15-18:11:01.471012 6123778048 Options.manifest_preallocation_size: 4194304 -2023/12/15-18:11:01.471013 6123778048 Options.is_fd_close_on_exec: 1 -2023/12/15-18:11:01.471014 6123778048 Options.advise_random_on_open: 1 -2023/12/15-18:11:01.471015 6123778048 Options.db_write_buffer_size: 0 -2023/12/15-18:11:01.471015 6123778048 Options.write_buffer_manager: 0x135e80b90 -2023/12/15-18:11:01.471016 6123778048 Options.access_hint_on_compaction_start: 1 -2023/12/15-18:11:01.471017 6123778048 Options.random_access_max_buffer_size: 1048576 -2023/12/15-18:11:01.471018 6123778048 Options.use_adaptive_mutex: 0 -2023/12/15-18:11:01.471019 6123778048 Options.rate_limiter: 0x0 -2023/12/15-18:11:01.471020 6123778048 Options.sst_file_manager.rate_bytes_per_sec: 0 -2023/12/15-18:11:01.471021 6123778048 Options.wal_recovery_mode: 2 -2023/12/15-18:11:01.471022 6123778048 Options.enable_thread_tracking: 0 -2023/12/15-18:11:01.471023 6123778048 Options.enable_pipelined_write: 0 -2023/12/15-18:11:01.471024 6123778048 Options.unordered_write: 0 -2023/12/15-18:11:01.471025 6123778048 Options.allow_concurrent_memtable_write: 1 -2023/12/15-18:11:01.471026 6123778048 Options.enable_write_thread_adaptive_yield: 1 -2023/12/15-18:11:01.471027 6123778048 Options.write_thread_max_yield_usec: 100 -2023/12/15-18:11:01.471027 6123778048 Options.write_thread_slow_yield_usec: 3 -2023/12/15-18:11:01.471028 6123778048 Options.row_cache: None -2023/12/15-18:11:01.471029 6123778048 Options.wal_filter: None -2023/12/15-18:11:01.471030 6123778048 Options.avoid_flush_during_recovery: 0 -2023/12/15-18:11:01.471031 6123778048 Options.allow_ingest_behind: 0 -2023/12/15-18:11:01.471032 6123778048 Options.two_write_queues: 0 -2023/12/15-18:11:01.471033 6123778048 Options.manual_wal_flush: 0 -2023/12/15-18:11:01.471034 6123778048 Options.wal_compression: 0 -2023/12/15-18:11:01.471035 6123778048 Options.atomic_flush: 0 -2023/12/15-18:11:01.471035 6123778048 Options.avoid_unnecessary_blocking_io: 0 -2023/12/15-18:11:01.471036 6123778048 Options.persist_stats_to_disk: 0 -2023/12/15-18:11:01.471037 6123778048 Options.write_dbid_to_manifest: 0 -2023/12/15-18:11:01.471038 6123778048 Options.log_readahead_size: 0 -2023/12/15-18:11:01.471039 6123778048 Options.file_checksum_gen_factory: Unknown -2023/12/15-18:11:01.471052 6123778048 Options.best_efforts_recovery: 0 -2023/12/15-18:11:01.471053 6123778048 Options.max_bgerror_resume_count: 2147483647 -2023/12/15-18:11:01.471053 6123778048 Options.bgerror_resume_retry_interval: 1000000 -2023/12/15-18:11:01.471054 6123778048 Options.allow_data_in_errors: 0 -2023/12/15-18:11:01.471055 6123778048 Options.db_host_id: __hostname__ -2023/12/15-18:11:01.471056 6123778048 Options.enforce_single_del_contracts: true -2023/12/15-18:11:01.471057 6123778048 Options.max_background_jobs: 2 -2023/12/15-18:11:01.471058 6123778048 Options.max_background_compactions: -1 -2023/12/15-18:11:01.471059 6123778048 Options.max_subcompactions: 1 -2023/12/15-18:11:01.471060 6123778048 Options.avoid_flush_during_shutdown: 0 -2023/12/15-18:11:01.471061 6123778048 Options.writable_file_max_buffer_size: 1048576 -2023/12/15-18:11:01.471061 6123778048 Options.delayed_write_rate : 16777216 -2023/12/15-18:11:01.471062 6123778048 Options.max_total_wal_size: 0 -2023/12/15-18:11:01.471063 6123778048 Options.delete_obsolete_files_period_micros: 21600000000 -2023/12/15-18:11:01.471064 6123778048 Options.stats_dump_period_sec: 600 -2023/12/15-18:11:01.471065 6123778048 Options.stats_persist_period_sec: 600 -2023/12/15-18:11:01.471066 6123778048 Options.stats_history_buffer_size: 1048576 -2023/12/15-18:11:01.471067 6123778048 Options.max_open_files: -1 -2023/12/15-18:11:01.471068 6123778048 Options.bytes_per_sync: 0 -2023/12/15-18:11:01.471069 6123778048 Options.wal_bytes_per_sync: 0 -2023/12/15-18:11:01.471070 6123778048 Options.strict_bytes_per_sync: 0 -2023/12/15-18:11:01.471070 6123778048 Options.compaction_readahead_size: 0 -2023/12/15-18:11:01.471071 6123778048 Options.max_background_flushes: -1 -2023/12/15-18:11:01.471072 6123778048 Compression algorithms supported: -2023/12/15-18:11:01.471074 6123778048 kZSTD supported: 0 -2023/12/15-18:11:01.471075 6123778048 kZlibCompression supported: 0 -2023/12/15-18:11:01.471076 6123778048 kXpressCompression supported: 0 -2023/12/15-18:11:01.471077 6123778048 kSnappyCompression supported: 0 -2023/12/15-18:11:01.471078 6123778048 kZSTDNotFinalCompression supported: 0 -2023/12/15-18:11:01.471079 6123778048 kLZ4HCCompression supported: 1 -2023/12/15-18:11:01.471080 6123778048 kLZ4Compression supported: 1 -2023/12/15-18:11:01.471081 6123778048 kBZip2Compression supported: 0 -2023/12/15-18:11:01.471087 6123778048 Fast CRC32 supported: Supported on Arm64 -2023/12/15-18:11:01.471088 6123778048 DMutex implementation: pthread_mutex_t -2023/12/15-18:11:01.471210 6123778048 [db/version_set.cc:5662] Recovering from manifest file: tests/db_for_testing/test/MANIFEST-000005 -2023/12/15-18:11:01.471504 6123778048 [db/column_family.cc:621] --------------- Options for column family [default]: -2023/12/15-18:11:01.471506 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.471507 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.471508 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.471509 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.471510 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.471511 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.471512 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.471547 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e34350) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e2fd48 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.471551 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.471552 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.471554 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.471554 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.471556 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.471557 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.471558 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.471558 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.471559 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.471560 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.471561 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.471562 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.471563 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.471564 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.471565 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.471566 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.471567 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.471568 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.471569 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.471570 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.471570 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.471571 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.471572 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.471573 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.471574 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.471575 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.471576 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.471577 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.471578 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.471579 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.471579 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.471580 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.471581 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.471582 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.471583 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.471584 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.471585 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.471586 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.471587 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.471588 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.471589 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.471590 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.471591 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.471591 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.471592 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.471593 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.471594 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.471595 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.471596 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.471597 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.471598 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.471600 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.471601 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.471602 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.471603 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.471604 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.471605 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.471606 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.471609 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.471610 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.471612 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.471613 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.471614 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.471615 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.471616 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.471617 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.471618 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.471618 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.471619 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.471620 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.471621 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.471622 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.471623 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.471624 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.471625 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.471625 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.471626 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.471627 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.471628 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.471629 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.471630 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.471631 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.471632 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.471633 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.471634 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.471635 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.471959 6123778048 [db/column_family.cc:621] --------------- Options for column family [inbox]: -2023/12/15-18:11:01.471963 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.471964 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.471965 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.471966 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.471967 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.471968 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.471969 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.471979 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e30c60) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e30e98 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.471981 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.471982 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.471983 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.471984 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.471985 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.471986 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.471987 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.471988 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.471989 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.471989 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.471990 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.471991 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.471992 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.471993 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.471994 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.471995 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.471996 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.471997 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.471998 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.471999 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.472000 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.472000 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.472001 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472002 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472003 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472004 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472005 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.472006 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472007 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.472008 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.472008 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.472009 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.472010 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.472011 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.472012 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.472013 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.472014 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.472015 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.472016 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.472017 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.472018 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.472019 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.472020 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.472020 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.472021 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.472022 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.472023 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.472024 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.472025 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.472026 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.472027 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.472029 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.472030 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.472030 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.472031 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.472032 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.472033 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.472035 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.472036 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.472036 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.472038 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.472039 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.472039 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.472040 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.472041 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.472042 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.472043 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.472044 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.472045 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.472046 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.472047 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.472048 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.472048 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.472049 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.472050 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.472051 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.472052 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.472053 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.472054 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.472055 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.472056 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.472056 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.472057 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.472058 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.472059 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.472060 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.472119 6123778048 [db/column_family.cc:621] --------------- Options for column family [peers]: -2023/12/15-18:11:01.472121 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.472122 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.472123 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.472124 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.472125 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.472126 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.472126 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.472134 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e31d00) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e31d58 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.472135 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.472136 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.472136 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.472137 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.472138 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.472139 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.472140 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.472141 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.472142 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.472143 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.472144 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.472145 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.472145 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.472146 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472147 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472148 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472149 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.472150 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472151 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472152 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.472153 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.472155 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.472156 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472157 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472158 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472159 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472159 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.472160 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472161 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.472162 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.472163 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.472164 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.472165 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.472165 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.472166 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.472167 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.472168 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.472169 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.472170 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.472171 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.472172 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.472173 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.472174 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.472174 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.472175 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.472176 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.472177 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.472178 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.472179 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.472180 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.472181 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.472182 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.472183 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.472184 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.472185 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.472186 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.472186 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.472188 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.472189 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.472189 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.472191 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.472191 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.472192 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.472193 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.472194 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.472195 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.472196 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.472197 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.472198 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.472198 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.472199 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.472200 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.472201 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.472202 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.472203 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.472204 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.472205 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.472205 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.472206 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.472207 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.472208 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.472209 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.472210 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.472211 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.472212 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.472213 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.472270 6123778048 [db/column_family.cc:621] --------------- Options for column family [profiles_encryption_key]: -2023/12/15-18:11:01.472272 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.472273 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.472274 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.472274 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.472275 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.472276 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.472277 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.472283 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e32bf0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e32c48 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.472284 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.472285 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.472286 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.472287 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.472288 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.472289 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.472290 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.472291 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.472292 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.472293 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.472294 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.472295 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.472295 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.472296 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472297 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472298 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472299 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.472300 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472301 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472302 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.472303 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.472303 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.472304 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472305 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472306 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472307 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472308 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.472309 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472310 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.472310 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.472311 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.472312 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.472313 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.472314 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.472315 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.472316 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.472317 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.472317 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.472318 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.472319 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.472320 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.472321 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.472322 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.472323 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.472324 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.472324 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.472325 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.472326 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.472327 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.472328 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.472329 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.472330 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.472331 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.472332 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.472333 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.472334 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.472335 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.472336 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.472337 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.472337 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.472339 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.472339 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.472340 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.472341 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.472342 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.472343 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.472344 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.472345 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.472345 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.472346 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.472347 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.472348 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.472349 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.472350 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.472351 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.472352 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.472352 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.472353 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.472354 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.472355 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.472356 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.472357 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.472358 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.472359 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.472360 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.472361 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.472412 6123778048 [db/column_family.cc:621] --------------- Options for column family [profiles_identity_key]: -2023/12/15-18:11:01.472414 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.472415 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.472416 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.472418 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.472419 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.472420 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.472421 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.472427 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e33b00) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e33b58 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.472428 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.472429 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.472430 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.472430 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.472431 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.472432 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.472433 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.472434 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.472435 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.472436 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.472437 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.472438 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.472438 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.472439 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472440 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472441 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472442 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.472443 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472444 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472445 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.472446 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.472446 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.472447 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472448 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472449 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472450 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472451 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.472452 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472453 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.472454 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.472454 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.472455 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.472456 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.472457 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.472458 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.472459 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.472460 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.472461 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.472462 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.472463 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.472463 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.472464 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.472465 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.472466 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.472467 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.472468 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.472469 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.472470 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.472470 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.472471 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.472472 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.472474 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.472474 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.472475 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.472476 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.472477 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.472478 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.472479 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.472480 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.472481 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.472482 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.472483 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.472484 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.472485 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.472486 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.472486 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.472487 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.472488 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.472489 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.472490 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.472491 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.472491 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.472492 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.472493 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.472494 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.472495 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.472496 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.472497 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.472497 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.472498 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.472499 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.472500 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.472501 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.472502 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.472503 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.472504 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.472595 6123778048 [db/column_family.cc:621] --------------- Options for column family [devices_encryption_key]: -2023/12/15-18:11:01.472596 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.472597 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.472598 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.472599 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.472600 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.472601 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.472602 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.472608 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e30900) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e35b78 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.472609 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.472610 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.472611 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.472611 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.472612 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.472613 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.472614 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.472615 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.472616 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.472617 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.472618 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.472618 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.472619 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.472620 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472621 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472622 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472623 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.472624 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472625 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472625 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.472626 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.472627 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.472628 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472629 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472630 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472631 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472632 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.472632 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472633 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.472634 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.472635 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.472636 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.472637 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.472638 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.472639 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.472639 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.472640 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.472641 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.472642 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.472643 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.472644 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.472645 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.472646 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.472646 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.472647 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.472648 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.472649 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.472650 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.472651 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.472652 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.472653 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.472654 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.472665 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.472666 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.472667 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.472668 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.472669 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.472670 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.472671 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.472672 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.472673 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.472674 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.472675 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.472675 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.472676 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.472677 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.472678 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.472679 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.472680 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.472681 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.472682 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.472682 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.472683 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.472684 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.472685 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.472686 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.472687 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.472688 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.472689 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.472690 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.472690 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.472691 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.472692 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.472693 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.472694 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.472695 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.472746 6123778048 [db/column_family.cc:621] --------------- Options for column family [devices_identity_key]: -2023/12/15-18:11:01.472748 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.472749 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.472750 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.472751 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.472752 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.472753 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.472754 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.472759 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e36a10) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e36a68 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.472760 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.472761 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.472762 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.472763 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.472764 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.472765 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.472766 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.472767 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.472768 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.472769 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.472769 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.472770 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.472771 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.472772 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472773 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472774 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472775 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.472776 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472777 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472777 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.472778 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.472779 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.472780 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472781 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472782 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472783 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472784 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.472784 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472785 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.472786 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.472787 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.472788 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.472789 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.472790 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.472790 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.472791 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.472792 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.472793 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.472794 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.472795 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.472796 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.472797 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.472798 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.472799 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.472799 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.472800 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.472801 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.472802 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.472803 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.472804 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.472805 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.472806 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.472807 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.472808 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.472809 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.472810 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.472810 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.472812 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.472812 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.472813 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.472814 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.472815 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.472816 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.472817 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.472818 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.472819 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.472820 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.472820 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.472821 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.472822 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.472823 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.472824 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.472825 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.472826 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.472827 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.472827 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.472828 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.472829 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.472830 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.472831 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.472832 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.472833 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.472834 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.472835 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.472835 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.472836 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.472883 6123778048 [db/column_family.cc:621] --------------- Options for column family [devices_permissions]: -2023/12/15-18:11:01.472885 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.472885 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.472886 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.472887 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.472888 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.472889 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.472890 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.472896 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e37920) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e37978 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.472897 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.472897 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.472898 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.472899 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.472900 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.472901 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.472902 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.472903 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.472904 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.472905 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.472906 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.472906 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.472907 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.472908 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472909 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472911 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472912 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.472913 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472914 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472915 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.472916 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.472917 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.472918 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.472919 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.472919 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.472920 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.472921 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.472922 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.472923 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.472924 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.472925 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.472925 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.472926 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.472927 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.472928 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.472929 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.472930 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.472931 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.472932 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.472933 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.472933 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.472934 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.472935 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.472936 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.472937 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.472938 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.472939 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.472940 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.472941 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.472941 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.472943 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.472944 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.472945 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.472946 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.472946 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.472947 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.472948 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.472949 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.472950 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.472951 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.472952 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.472953 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.472954 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.472955 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.472956 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.472957 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.472958 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.472958 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.472959 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.472960 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.472961 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.472962 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.472963 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.472964 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.472964 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.472965 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.472966 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.472967 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.472968 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.472969 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.472970 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.472971 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.472972 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.472972 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.472973 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.472974 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.473022 6123778048 [db/column_family.cc:621] --------------- Options for column family [scheduled_message]: -2023/12/15-18:11:01.473023 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.473024 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.473025 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.473026 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.473027 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.473028 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.473029 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.473034 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e38830) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e38888 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.473035 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.473036 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.473037 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.473038 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.473039 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.473040 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.473041 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.473042 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.473042 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.473043 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.473044 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.473045 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.473046 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.473047 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.473048 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.473048 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.473049 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.473050 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.473051 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.473052 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.473053 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.473054 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.473055 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.473056 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.473056 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.473057 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.473058 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.473059 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.473060 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.473061 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.473062 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.473063 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.473063 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.473064 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.473065 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.473066 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.473067 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.473068 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.473069 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.473070 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.473071 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.473071 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.473072 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.473073 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.473074 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.473075 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.473076 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.473077 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.473078 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.473079 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.473080 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.473081 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.473082 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.473083 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.473083 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.473084 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.473085 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.473086 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.473087 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.473088 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.473089 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.473090 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.473091 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.473092 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.473093 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.473094 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.473094 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.473095 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.473096 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.473097 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.473098 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.473099 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.473100 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.473100 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.473101 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.473102 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.473103 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.473104 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.473105 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.473106 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.473107 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.473107 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.473108 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.473109 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.473112 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.473112 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.473161 6123778048 [db/column_family.cc:621] --------------- Options for column family [all_messages]: -2023/12/15-18:11:01.473163 6123778048 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:11:01.473164 6123778048 Options.merge_operator: None -2023/12/15-18:11:01.473165 6123778048 Options.compaction_filter: None -2023/12/15-18:11:01.473166 6123778048 Options.compaction_filter_factory: None -2023/12/15-18:11:01.473167 6123778048 Options.sst_partitioner_factory: None -2023/12/15-18:11:01.473167 6123778048 Options.memtable_factory: SkipListFactory -2023/12/15-18:11:01.473168 6123778048 Options.table_factory: BlockBasedTable -2023/12/15-18:11:01.473174 6123778048 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x135e357a0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x135e357f8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:11:01.473175 6123778048 Options.write_buffer_size: 67108864 -2023/12/15-18:11:01.473176 6123778048 Options.max_write_buffer_number: 2 -2023/12/15-18:11:01.473177 6123778048 Options.compression: NoCompression -2023/12/15-18:11:01.473178 6123778048 Options.bottommost_compression: Disabled -2023/12/15-18:11:01.473179 6123778048 Options.prefix_extractor: nullptr -2023/12/15-18:11:01.473179 6123778048 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:11:01.473180 6123778048 Options.num_levels: 7 -2023/12/15-18:11:01.473181 6123778048 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:11:01.473182 6123778048 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:11:01.473183 6123778048 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:11:01.473184 6123778048 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:11:01.473185 6123778048 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:11:01.473186 6123778048 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:11:01.473187 6123778048 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.473187 6123778048 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.473188 6123778048 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.473189 6123778048 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:11:01.473190 6123778048 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.473191 6123778048 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.473192 6123778048 Options.compression_opts.window_bits: -14 -2023/12/15-18:11:01.473193 6123778048 Options.compression_opts.level: 32767 -2023/12/15-18:11:01.473194 6123778048 Options.compression_opts.strategy: 0 -2023/12/15-18:11:01.473195 6123778048 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:11:01.473195 6123778048 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:11:01.473196 6123778048 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:11:01.473197 6123778048 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:11:01.473198 6123778048 Options.compression_opts.enabled: false -2023/12/15-18:11:01.473199 6123778048 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:11:01.473200 6123778048 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:11:01.473201 6123778048 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:11:01.473202 6123778048 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:11:01.473203 6123778048 Options.target_file_size_base: 67108864 -2023/12/15-18:11:01.473203 6123778048 Options.target_file_size_multiplier: 1 -2023/12/15-18:11:01.473204 6123778048 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:11:01.473205 6123778048 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:11:01.473206 6123778048 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:11:01.473207 6123778048 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:11:01.473208 6123778048 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:11:01.473209 6123778048 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:11:01.473210 6123778048 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:11:01.473211 6123778048 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:11:01.473212 6123778048 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:11:01.473212 6123778048 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:11:01.473213 6123778048 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:11:01.473214 6123778048 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:11:01.473215 6123778048 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:11:01.473216 6123778048 Options.arena_block_size: 1048576 -2023/12/15-18:11:01.473217 6123778048 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:11:01.473218 6123778048 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:11:01.473219 6123778048 Options.disable_auto_compactions: 0 -2023/12/15-18:11:01.473220 6123778048 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:11:01.473221 6123778048 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:11:01.473222 6123778048 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:11:01.473222 6123778048 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:11:01.473223 6123778048 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:11:01.473224 6123778048 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:11:01.473225 6123778048 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:11:01.473226 6123778048 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:11:01.473227 6123778048 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:11:01.473228 6123778048 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:11:01.473229 6123778048 Options.table_properties_collectors: -2023/12/15-18:11:01.473230 6123778048 Options.inplace_update_support: 0 -2023/12/15-18:11:01.473231 6123778048 Options.inplace_update_num_locks: 10000 -2023/12/15-18:11:01.473232 6123778048 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:11:01.473233 6123778048 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:11:01.473233 6123778048 Options.memtable_huge_page_size: 0 -2023/12/15-18:11:01.473234 6123778048 Options.bloom_locality: 0 -2023/12/15-18:11:01.473235 6123778048 Options.max_successive_merges: 0 -2023/12/15-18:11:01.473236 6123778048 Options.optimize_filters_for_hits: 0 -2023/12/15-18:11:01.473237 6123778048 Options.paranoid_file_checks: 0 -2023/12/15-18:11:01.473238 6123778048 Options.force_consistency_checks: 1 -2023/12/15-18:11:01.473238 6123778048 Options.report_bg_io_stats: 0 -2023/12/15-18:11:01.473239 6123778048 Options.ttl: 2592000 -2023/12/15-18:11:01.473240 6123778048 Options.periodic_compaction_seconds: 0 -2023/12/15-18:11:01.473241 6123778048 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:11:01.473242 6123778048 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:11:01.473243 6123778048 Options.enable_blob_files: false -2023/12/15-18:11:01.473244 6123778048 Options.min_blob_size: 0 -2023/12/15-18:11:01.473244 6123778048 Options.blob_file_size: 268435456 -2023/12/15-18:11:01.473245 6123778048 Options.blob_compression_type: NoCompression -2023/12/15-18:11:01.473246 6123778048 Options.enable_blob_garbage_collection: false -2023/12/15-18:11:01.473247 6123778048 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:11:01.473248 6123778048 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:11:01.473249 6123778048 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:11:01.473250 6123778048 Options.blob_file_starting_level: 0 -2023/12/15-18:11:01.473251 6123778048 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:11:01.473299 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473347 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473395 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473442 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473488 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473534 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473581 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473629 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473674 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473723 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473773 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473819 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473864 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473911 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.473960 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474006 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474054 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474099 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474147 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474192 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474242 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474288 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474333 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474379 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474427 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474474 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474519 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474567 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474613 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474657 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474705 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474750 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474797 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474841 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474886 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474934 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.474980 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475026 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475077 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475123 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475168 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475215 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475260 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475307 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475351 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475398 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475446 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475491 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475537 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475585 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475631 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475675 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475722 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475767 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475812 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475862 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475911 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.475959 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476004 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476048 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476095 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476139 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476185 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476233 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476278 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476323 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476370 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476417 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476462 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476507 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.476553 6123778048 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:11:01.493101 6123778048 [db/version_set.cc:5713] Recovered from manifest file:tests/db_for_testing/test/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 167, last_sequence is 0, log_number is 4,prev_log_number is 0,max_column_family is 80,min_log_number_to_keep is 0 -2023/12/15-18:11:01.493110 6123778048 [db/version_set.cc:5722] Column family [default] (ID 0), log number is 0 -2023/12/15-18:11:01.493112 6123778048 [db/version_set.cc:5722] Column family [inbox] (ID 1), log number is 4 -2023/12/15-18:11:01.493113 6123778048 [db/version_set.cc:5722] Column family [peers] (ID 2), log number is 4 -2023/12/15-18:11:01.493114 6123778048 [db/version_set.cc:5722] Column family [profiles_encryption_key] (ID 3), log number is 4 -2023/12/15-18:11:01.493115 6123778048 [db/version_set.cc:5722] Column family [profiles_identity_key] (ID 4), log number is 4 -2023/12/15-18:11:01.493116 6123778048 [db/version_set.cc:5722] Column family [devices_encryption_key] (ID 5), log number is 4 -2023/12/15-18:11:01.493117 6123778048 [db/version_set.cc:5722] Column family [devices_identity_key] (ID 6), log number is 4 -2023/12/15-18:11:01.493118 6123778048 [db/version_set.cc:5722] Column family [devices_permissions] (ID 7), log number is 4 -2023/12/15-18:11:01.493118 6123778048 [db/version_set.cc:5722] Column family [scheduled_message] (ID 8), log number is 4 -2023/12/15-18:11:01.493119 6123778048 [db/version_set.cc:5722] Column family [all_messages] (ID 9), log number is 4 -2023/12/15-18:11:01.493120 6123778048 [db/version_set.cc:5722] Column family [all_messages_time_keyed] (ID 10), log number is 4 -2023/12/15-18:11:01.493121 6123778048 [db/version_set.cc:5722] Column family [one_time_registration_codes] (ID 11), log number is 4 -2023/12/15-18:11:01.493122 6123778048 [db/version_set.cc:5722] Column family [profiles_identity_type] (ID 12), log number is 4 -2023/12/15-18:11:01.493123 6123778048 [db/version_set.cc:5722] Column family [profiles_permission] (ID 13), log number is 4 -2023/12/15-18:11:01.493124 6123778048 [db/version_set.cc:5722] Column family [external_node_identity_key] (ID 14), log number is 4 -2023/12/15-18:11:01.493125 6123778048 [db/version_set.cc:5722] Column family [external_node_encryption_key] (ID 15), log number is 4 -2023/12/15-18:11:01.493126 6123778048 [db/version_set.cc:5722] Column family [all_jobs_time_keyed] (ID 16), log number is 4 -2023/12/15-18:11:01.493127 6123778048 [db/version_set.cc:5722] Column family [resources] (ID 17), log number is 4 -2023/12/15-18:11:01.493128 6123778048 [db/version_set.cc:5722] Column family [agents] (ID 18), log number is 4 -2023/12/15-18:11:01.493129 6123778048 [db/version_set.cc:5722] Column family [toolkits] (ID 19), log number is 4 -2023/12/15-18:11:01.493130 6123778048 [db/version_set.cc:5722] Column family [mesages_to_retry] (ID 20), log number is 4 -2023/12/15-18:11:01.493131 6123778048 [db/version_set.cc:5722] Column family [message_box_symmetric_keys] (ID 21), log number is 4 -2023/12/15-18:11:01.493132 6123778048 [db/version_set.cc:5722] Column family [message_box_symmetric_keys_times] (ID 22), log number is 4 -2023/12/15-18:11:01.493133 6123778048 [db/version_set.cc:5722] Column family [temp_files_inbox] (ID 23), log number is 4 -2023/12/15-18:11:01.493134 6123778048 [db/version_set.cc:5722] Column family [job_queues] (ID 24), log number is 4 -2023/12/15-18:11:01.493135 6123778048 [db/version_set.cc:5722] Column family [cron_queues] (ID 25), log number is 4 -2023/12/15-18:11:01.493135 6123778048 [db/version_set.cc:5722] Column family [agent_my_gpt_profiles_with_access] (ID 26), log number is 4 -2023/12/15-18:11:01.493136 6123778048 [db/version_set.cc:5722] Column family [agent_my_gpt_toolkits_accessible] (ID 27), log number is 4 -2023/12/15-18:11:01.493137 6123778048 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_profiles_with_access] (ID 28), log number is 4 -2023/12/15-18:11:01.493138 6123778048 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_toolkits_accessible] (ID 29), log number is 4 -2023/12/15-18:11:01.493139 6123778048 [db/version_set.cc:5722] Column family [agentid_my_gpt] (ID 30), log number is 4 -2023/12/15-18:11:01.493140 6123778048 [db/version_set.cc:5722] Column family [jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae] (ID 31), log number is 4 -2023/12/15-18:11:01.493141 6123778048 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope] (ID 32), log number is 4 -2023/12/15-18:11:01.493142 6123778048 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history] (ID 33), log number is 4 -2023/12/15-18:11:01.493143 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false] (ID 34), log number is 4 -2023/12/15-18:11:01.493144 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_perms] (ID 35), log number is 4 -2023/12/15-18:11:01.493145 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_unread_list] (ID 36), log number is 4 -2023/12/15-18:11:01.493146 6123778048 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages] (ID 37), log number is 4 -2023/12/15-18:11:01.493147 6123778048 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context] (ID 38), log number is 4 -2023/12/15-18:11:01.493147 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_smart_inbox_name] (ID 39), log number is 4 -2023/12/15-18:11:01.493148 6123778048 [db/version_set.cc:5722] Column family [agentid_my_gpt_vision] (ID 40), log number is 4 -2023/12/15-18:11:01.493149 6123778048 [db/version_set.cc:5722] Column family [jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c] (ID 41), log number is 4 -2023/12/15-18:11:01.493150 6123778048 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope] (ID 42), log number is 4 -2023/12/15-18:11:01.493151 6123778048 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history] (ID 43), log number is 4 -2023/12/15-18:11:01.493152 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false] (ID 44), log number is 4 -2023/12/15-18:11:01.493153 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_perms] (ID 45), log number is 4 -2023/12/15-18:11:01.493154 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_unread_list] (ID 46), log number is 4 -2023/12/15-18:11:01.493155 6123778048 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages] (ID 47), log number is 4 -2023/12/15-18:11:01.493156 6123778048 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context] (ID 48), log number is 4 -2023/12/15-18:11:01.493156 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_smart_inbox_name] (ID 49), log number is 4 -2023/12/15-18:11:01.493157 6123778048 [db/version_set.cc:5722] Column family [3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201] (ID 50), log number is 4 -2023/12/15-18:11:01.493158 6123778048 [db/version_set.cc:5722] Column family [jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d] (ID 51), log number is 4 -2023/12/15-18:11:01.493159 6123778048 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope] (ID 52), log number is 4 -2023/12/15-18:11:01.493160 6123778048 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history] (ID 53), log number is 4 -2023/12/15-18:11:01.493161 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false] (ID 54), log number is 4 -2023/12/15-18:11:01.493162 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_perms] (ID 55), log number is 4 -2023/12/15-18:11:01.493163 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_unread_list] (ID 56), log number is 4 -2023/12/15-18:11:01.493164 6123778048 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages] (ID 57), log number is 4 -2023/12/15-18:11:01.493165 6123778048 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context] (ID 58), log number is 4 -2023/12/15-18:11:01.493165 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_smart_inbox_name] (ID 59), log number is 4 -2023/12/15-18:11:01.493166 6123778048 [db/version_set.cc:5722] Column family [655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9] (ID 60), log number is 4 -2023/12/15-18:11:01.493167 6123778048 [db/version_set.cc:5722] Column family [jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580] (ID 61), log number is 4 -2023/12/15-18:11:01.493168 6123778048 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope] (ID 62), log number is 4 -2023/12/15-18:11:01.493169 6123778048 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history] (ID 63), log number is 4 -2023/12/15-18:11:01.493170 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false] (ID 64), log number is 4 -2023/12/15-18:11:01.493171 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_perms] (ID 65), log number is 4 -2023/12/15-18:11:01.493172 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_unread_list] (ID 66), log number is 4 -2023/12/15-18:11:01.493173 6123778048 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages] (ID 67), log number is 4 -2023/12/15-18:11:01.493174 6123778048 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context] (ID 68), log number is 4 -2023/12/15-18:11:01.493174 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_smart_inbox_name] (ID 69), log number is 4 -2023/12/15-18:11:01.493175 6123778048 [db/version_set.cc:5722] Column family [d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368] (ID 70), log number is 4 -2023/12/15-18:11:01.493176 6123778048 [db/version_set.cc:5722] Column family [jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1] (ID 71), log number is 4 -2023/12/15-18:11:01.493177 6123778048 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope] (ID 72), log number is 4 -2023/12/15-18:11:01.493178 6123778048 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history] (ID 73), log number is 4 -2023/12/15-18:11:01.493179 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false] (ID 74), log number is 4 -2023/12/15-18:11:01.493180 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_perms] (ID 75), log number is 4 -2023/12/15-18:11:01.493181 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_unread_list] (ID 76), log number is 4 -2023/12/15-18:11:01.493182 6123778048 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages] (ID 77), log number is 4 -2023/12/15-18:11:01.493183 6123778048 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context] (ID 78), log number is 4 -2023/12/15-18:11:01.493183 6123778048 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_smart_inbox_name] (ID 79), log number is 4 -2023/12/15-18:11:01.493184 6123778048 [db/version_set.cc:5722] Column family [48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a] (ID 80), log number is 4 -2023/12/15-18:11:01.493332 6123778048 [db/db_impl/db_impl_open.cc:537] DB ID: cd8c8a56-182b-440f-8ebb-d520dc6f6053 -2023/12/15-18:11:01.493785 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461493768, "job": 1, "event": "recovery_started", "wal_files": [4]} -2023/12/15-18:11:01.493790 6123778048 [db/db_impl/db_impl_open.cc:1031] Recovering log #4 mode 2 -2023/12/15-18:11:01.642771 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461642744, "cf_name": "inbox", "job": 1, "event": "table_file_creation", "file_number": 168, "file_size": 1621, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 21, "largest_seqno": 152, "table_properties": {"data_size": 599, "index_size": 78, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 340, "raw_average_key_size": 68, "raw_value_size": 300, "raw_average_value_size": 60, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "inbox", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 168, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.643214 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461643194, "cf_name": "profiles_encryption_key", "job": 1, "event": "table_file_creation", "file_number": 169, "file_size": 1071, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 6, "largest_seqno": 6, "table_properties": {"data_size": 92, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "profiles_encryption_key", "column_family_id": 3, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 169, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.643574 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461643552, "cf_name": "profiles_identity_key", "job": 1, "event": "table_file_creation", "file_number": 170, "file_size": 1069, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 5, "largest_seqno": 5, "table_properties": {"data_size": 92, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "profiles_identity_key", "column_family_id": 4, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 170, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.644084 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461644064, "cf_name": "devices_encryption_key", "job": 1, "event": "table_file_creation", "file_number": 171, "file_size": 1150, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 10, "largest_seqno": 10, "table_properties": {"data_size": 131, "index_size": 60, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 51, "raw_average_key_size": 51, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "devices_encryption_key", "column_family_id": 5, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 171, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.644410 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461644391, "cf_name": "devices_identity_key", "job": 1, "event": "table_file_creation", "file_number": 172, "file_size": 1148, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 9, "largest_seqno": 9, "table_properties": {"data_size": 131, "index_size": 60, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 51, "raw_average_key_size": 51, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "devices_identity_key", "column_family_id": 6, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 172, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.644736 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461644717, "cf_name": "devices_permissions", "job": 1, "event": "table_file_creation", "file_number": 173, "file_size": 1087, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 11, "largest_seqno": 11, "table_properties": {"data_size": 72, "index_size": 60, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 51, "raw_average_key_size": 51, "raw_value_size": 5, "raw_average_value_size": 5, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "devices_permissions", "column_family_id": 7, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 173, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.645229 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461645210, "cf_name": "all_messages", "job": 1, "event": "table_file_creation", "file_number": 174, "file_size": 17783, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 26, "largest_seqno": 168, "table_properties": {"data_size": 16714, "index_size": 116, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 1008, "raw_average_key_size": 72, "raw_value_size": 15600, "raw_average_value_size": 1114, "num_data_blocks": 4, "num_entries": 14, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "all_messages", "column_family_id": 9, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 174, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.645577 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461645559, "cf_name": "all_messages_time_keyed", "job": 1, "event": "table_file_creation", "file_number": 175, "file_size": 3202, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 27, "largest_seqno": 169, "table_properties": {"data_size": 2131, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 1386, "raw_average_key_size": 99, "raw_value_size": 896, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 14, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "all_messages_time_keyed", "column_family_id": 10, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 175, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.645926 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461645907, "cf_name": "one_time_registration_codes", "job": 1, "event": "table_file_creation", "file_number": 176, "file_size": 1454, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 3, "largest_seqno": 4, "table_properties": {"data_size": 341, "index_size": 147, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 272, "raw_average_key_size": 136, "raw_value_size": 48, "raw_average_value_size": 24, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "one_time_registration_codes", "column_family_id": 11, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 176, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.646198 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461646180, "cf_name": "profiles_identity_type", "job": 1, "event": "table_file_creation", "file_number": 177, "file_size": 1013, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 7, "largest_seqno": 7, "table_properties": {"data_size": 35, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 7, "raw_average_value_size": 7, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "profiles_identity_type", "column_family_id": 12, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 177, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.646547 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461646529, "cf_name": "profiles_permission", "job": 1, "event": "table_file_creation", "file_number": 178, "file_size": 1008, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 8, "table_properties": {"data_size": 33, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 5, "raw_average_value_size": 5, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "profiles_permission", "column_family_id": 13, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 178, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.646892 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461646874, "cf_name": "external_node_identity_key", "job": 1, "event": "table_file_creation", "file_number": 179, "file_size": 1105, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 2, "largest_seqno": 2, "table_properties": {"data_size": 107, "index_size": 36, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 27, "raw_average_key_size": 27, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_identity_key", "column_family_id": 14, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 179, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.647187 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461647169, "cf_name": "external_node_encryption_key", "job": 1, "event": "table_file_creation", "file_number": 180, "file_size": 1107, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 1, "table_properties": {"data_size": 107, "index_size": 36, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 27, "raw_average_key_size": 27, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_encryption_key", "column_family_id": 15, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 180, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.647505 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461647487, "cf_name": "all_jobs_time_keyed", "job": 1, "event": "table_file_creation", "file_number": 181, "file_size": 1337, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 20, "largest_seqno": 151, "table_properties": {"data_size": 337, "index_size": 42, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 160, "raw_average_key_size": 32, "raw_value_size": 210, "raw_average_value_size": 42, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "all_jobs_time_keyed", "column_family_id": 16, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 181, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.647825 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461647802, "cf_name": "resources", "job": 1, "event": "table_file_creation", "file_number": 182, "file_size": 1561, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 31, "largest_seqno": 31, "table_properties": {"data_size": 569, "index_size": 45, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 35, "raw_average_key_size": 35, "raw_value_size": 517, "raw_average_value_size": 517, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "resources", "column_family_id": 17, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 182, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.648185 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461648166, "cf_name": "agents", "job": 1, "event": "table_file_creation", "file_number": 183, "file_size": 1988, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 12, "largest_seqno": 13, "table_properties": {"data_size": 1013, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 35, "raw_average_key_size": 17, "raw_value_size": 963, "raw_average_value_size": 481, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "agents", "column_family_id": 18, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 183, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.648499 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461648481, "cf_name": "message_box_symmetric_keys", "job": 1, "event": "table_file_creation", "file_number": 184, "file_size": 1488, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 50, "largest_seqno": 156, "table_properties": {"data_size": 441, "index_size": 82, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 288, "raw_average_key_size": 72, "raw_value_size": 128, "raw_average_value_size": 32, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "message_box_symmetric_keys", "column_family_id": 21, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 184, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.648776 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461648758, "cf_name": "message_box_symmetric_keys_times", "job": 1, "event": "table_file_creation", "file_number": 185, "file_size": 1494, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 52, "largest_seqno": 158, "table_properties": {"data_size": 441, "index_size": 82, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 288, "raw_average_key_size": 72, "raw_value_size": 128, "raw_average_value_size": 32, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "message_box_symmetric_keys_times", "column_family_id": 22, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 185, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.649060 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461649042, "cf_name": "temp_files_inbox", "job": 1, "event": "table_file_creation", "file_number": 186, "file_size": 1606, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 51, "largest_seqno": 157, "table_properties": {"data_size": 569, "index_size": 82, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 288, "raw_average_key_size": 72, "raw_value_size": 256, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "temp_files_inbox", "column_family_id": 23, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 186, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.649331 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461649314, "cf_name": "job_queues", "job": 1, "event": "table_file_creation", "file_number": 187, "file_size": 1301, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 38, "largest_seqno": 173, "table_properties": {"data_size": 293, "index_size": 60, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 250, "raw_average_key_size": 50, "raw_value_size": 40, "raw_average_value_size": 8, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_queues", "column_family_id": 24, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 187, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.649596 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461649579, "cf_name": "agentid_my_gpt", "job": 1, "event": "table_file_creation", "file_number": 188, "file_size": 1270, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 14, "largest_seqno": 145, "table_properties": {"data_size": 275, "index_size": 42, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 128, "raw_average_key_size": 32, "raw_value_size": 168, "raw_average_value_size": 42, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "agentid_my_gpt", "column_family_id": 30, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 188, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.649866 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461649848, "cf_name": "jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae", "job": 1, "event": "table_file_creation", "file_number": 189, "file_size": 1238, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 16, "largest_seqno": 19, "table_properties": {"data_size": 217, "index_size": 33, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 97, "raw_average_key_size": 24, "raw_value_size": 95, "raw_average_value_size": 23, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae", "column_family_id": 31, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 189, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.650137 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461650119, "cf_name": "jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope", "job": 1, "event": "table_file_creation", "file_number": 190, "file_size": 1135, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 15, "largest_seqno": 15, "table_properties": {"data_size": 92, "index_size": 59, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 50, "raw_average_key_size": 50, "raw_value_size": 26, "raw_average_value_size": 26, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope", "column_family_id": 32, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 190, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.650396 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461650379, "cf_name": "jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history", "job": 1, "event": "table_file_creation", "file_number": 191, "file_size": 1632, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 32, "largest_seqno": 32, "table_properties": {"data_size": 597, "index_size": 42, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 32, "raw_average_key_size": 32, "raw_value_size": 548, "raw_average_value_size": 548, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history", "column_family_id": 33, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 191, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.650673 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461650655, "cf_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false", "job": 1, "event": "table_file_creation", "file_number": 192, "file_size": 1436, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 28, "largest_seqno": 35, "table_properties": {"data_size": 328, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false", "column_family_id": 34, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 192, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.650936 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461650918, "cf_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_perms", "job": 1, "event": "table_file_creation", "file_number": 193, "file_size": 1051, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 24, "largest_seqno": 24, "table_properties": {"data_size": 29, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 1, "raw_average_value_size": 1, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_perms", "column_family_id": 35, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 193, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.651228 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461651207, "cf_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_unread_list", "job": 1, "event": "table_file_creation", "file_number": 194, "file_size": 1448, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 29, "largest_seqno": 36, "table_properties": {"data_size": 328, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_unread_list", "column_family_id": 36, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 194, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.651594 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461651573, "cf_name": "jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context", "job": 1, "event": "table_file_creation", "file_number": 195, "file_size": 1539, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 37, "largest_seqno": 37, "table_properties": {"data_size": 463, "index_size": 78, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 378, "raw_average_value_size": 378, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context", "column_family_id": 38, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 195, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.652029 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461652010, "cf_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_smart_inbox_name", "job": 1, "event": "table_file_creation", "file_number": 196, "file_size": 1207, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 25, "largest_seqno": 25, "table_properties": {"data_size": 117, "index_size": 77, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 33, "raw_average_value_size": 33, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_smart_inbox_name", "column_family_id": 39, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 196, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.652328 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461652311, "cf_name": "agentid_my_gpt_vision", "job": 1, "event": "table_file_creation", "file_number": 197, "file_size": 1088, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 39, "largest_seqno": 39, "table_properties": {"data_size": 90, "index_size": 41, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 32, "raw_average_key_size": 32, "raw_value_size": 42, "raw_average_value_size": 42, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "agentid_my_gpt_vision", "column_family_id": 40, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 197, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.652602 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461652585, "cf_name": "jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c", "job": 1, "event": "table_file_creation", "file_number": 198, "file_size": 1245, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 41, "largest_seqno": 44, "table_properties": {"data_size": 224, "index_size": 33, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 97, "raw_average_key_size": 24, "raw_value_size": 102, "raw_average_value_size": 25, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c", "column_family_id": 41, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 198, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.652873 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461652855, "cf_name": "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope", "job": 1, "event": "table_file_creation", "file_number": 199, "file_size": 1135, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 40, "largest_seqno": 40, "table_properties": {"data_size": 92, "index_size": 59, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 50, "raw_average_key_size": 50, "raw_value_size": 26, "raw_average_value_size": 26, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope", "column_family_id": 42, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 199, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.653162 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461653143, "cf_name": "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history", "job": 1, "event": "table_file_creation", "file_number": 200, "file_size": 1501, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 60, "largest_seqno": 60, "table_properties": {"data_size": 466, "index_size": 42, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 32, "raw_average_key_size": 32, "raw_value_size": 417, "raw_average_value_size": 417, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history", "column_family_id": 43, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 200, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.653468 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461653448, "cf_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false", "job": 1, "event": "table_file_creation", "file_number": 201, "file_size": 1436, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 57, "largest_seqno": 63, "table_properties": {"data_size": 328, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false", "column_family_id": 44, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 201, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.653783 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461653763, "cf_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_perms", "job": 1, "event": "table_file_creation", "file_number": 202, "file_size": 1051, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 49, "largest_seqno": 49, "table_properties": {"data_size": 29, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 1, "raw_average_value_size": 1, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_perms", "column_family_id": 45, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 202, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.654062 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461654043, "cf_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_unread_list", "job": 1, "event": "table_file_creation", "file_number": 203, "file_size": 1448, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 58, "largest_seqno": 64, "table_properties": {"data_size": 328, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_unread_list", "column_family_id": 46, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 203, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.654527 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461654509, "cf_name": "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context", "job": 1, "event": "table_file_creation", "file_number": 204, "file_size": 1165, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 65, "largest_seqno": 65, "table_properties": {"data_size": 92, "index_size": 77, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 8, "raw_average_value_size": 8, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context", "column_family_id": 48, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 204, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.654792 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461654774, "cf_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_smart_inbox_name", "job": 1, "event": "table_file_creation", "file_number": 205, "file_size": 1193, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 54, "largest_seqno": 54, "table_properties": {"data_size": 103, "index_size": 77, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 19, "raw_average_value_size": 19, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_smart_inbox_name", "column_family_id": 49, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 205, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.655465 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461655447, "cf_name": "3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201", "job": 1, "event": "table_file_creation", "file_number": 206, "file_size": 139704, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 53, "largest_seqno": 53, "table_properties": {"data_size": 138641, "index_size": 58, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 47, "raw_average_key_size": 47, "raw_value_size": 138576, "raw_average_value_size": 138576, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201", "column_family_id": 50, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 206, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.655737 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461655719, "cf_name": "jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d", "job": 1, "event": "table_file_creation", "file_number": 207, "file_size": 1238, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 69, "largest_seqno": 72, "table_properties": {"data_size": 217, "index_size": 33, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 97, "raw_average_key_size": 24, "raw_value_size": 95, "raw_average_value_size": 23, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d", "column_family_id": 51, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 207, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.656652 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461656632, "cf_name": "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope", "job": 1, "event": "table_file_creation", "file_number": 208, "file_size": 232032, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 88, "largest_seqno": 88, "table_properties": {"data_size": 230982, "index_size": 61, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 50, "raw_average_key_size": 50, "raw_value_size": 230914, "raw_average_value_size": 230914, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope", "column_family_id": 52, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 208, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.656957 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461656939, "cf_name": "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history", "job": 1, "event": "table_file_creation", "file_number": 209, "file_size": 1927, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 110, "largest_seqno": 110, "table_properties": {"data_size": 892, "index_size": 42, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 32, "raw_average_key_size": 32, "raw_value_size": 843, "raw_average_value_size": 843, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history", "column_family_id": 53, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 209, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.657252 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461657232, "cf_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false", "job": 1, "event": "table_file_creation", "file_number": 210, "file_size": 1436, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 85, "largest_seqno": 113, "table_properties": {"data_size": 328, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false", "column_family_id": 54, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 210, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.657654 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461657634, "cf_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_perms", "job": 1, "event": "table_file_creation", "file_number": 211, "file_size": 1051, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 77, "largest_seqno": 77, "table_properties": {"data_size": 29, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 1, "raw_average_value_size": 1, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_perms", "column_family_id": 55, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 211, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.657950 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461657932, "cf_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_unread_list", "job": 1, "event": "table_file_creation", "file_number": 212, "file_size": 1448, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 86, "largest_seqno": 114, "table_properties": {"data_size": 328, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_unread_list", "column_family_id": 56, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 212, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.658227 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461658209, "cf_name": "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context", "job": 1, "event": "table_file_creation", "file_number": 213, "file_size": 1855, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 115, "largest_seqno": 115, "table_properties": {"data_size": 779, "index_size": 78, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 694, "raw_average_value_size": 694, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context", "column_family_id": 58, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 213, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.658492 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461658474, "cf_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_smart_inbox_name", "job": 1, "event": "table_file_creation", "file_number": 214, "file_size": 1197, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 82, "largest_seqno": 82, "table_properties": {"data_size": 107, "index_size": 77, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 23, "raw_average_value_size": 23, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_smart_inbox_name", "column_family_id": 59, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 214, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.658927 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461658909, "cf_name": "655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9", "job": 1, "event": "table_file_creation", "file_number": 215, "file_size": 38674, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 81, "largest_seqno": 81, "table_properties": {"data_size": 37608, "index_size": 61, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 50, "raw_average_key_size": 50, "raw_value_size": 37540, "raw_average_value_size": 37540, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9", "column_family_id": 60, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 215, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.659198 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461659180, "cf_name": "jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580", "job": 1, "event": "table_file_creation", "file_number": 216, "file_size": 1238, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 91, "largest_seqno": 94, "table_properties": {"data_size": 217, "index_size": 33, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 97, "raw_average_key_size": 24, "raw_value_size": 95, "raw_average_value_size": 23, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580", "column_family_id": 61, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 216, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.677628 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461677605, "cf_name": "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope", "job": 1, "event": "table_file_creation", "file_number": 217, "file_size": 8413595, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 117, "largest_seqno": 117, "table_properties": {"data_size": 8412541, "index_size": 62, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 50, "raw_average_key_size": 50, "raw_value_size": 8412472, "raw_average_value_size": 8412472, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope", "column_family_id": 62, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 217, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.678057 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461678034, "cf_name": "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history", "job": 1, "event": "table_file_creation", "file_number": 218, "file_size": 1784, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 118, "largest_seqno": 118, "table_properties": {"data_size": 749, "index_size": 42, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 32, "raw_average_key_size": 32, "raw_value_size": 700, "raw_average_value_size": 700, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history", "column_family_id": 63, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 218, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.678406 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461678385, "cf_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false", "job": 1, "event": "table_file_creation", "file_number": 219, "file_size": 2038, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 107, "largest_seqno": 142, "table_properties": {"data_size": 930, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 594, "raw_average_key_size": 99, "raw_value_size": 384, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 6, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false", "column_family_id": 64, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 219, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.678716 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461678696, "cf_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_perms", "job": 1, "event": "table_file_creation", "file_number": 220, "file_size": 1051, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 99, "largest_seqno": 99, "table_properties": {"data_size": 29, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 1, "raw_average_value_size": 1, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_perms", "column_family_id": 65, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 220, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.679014 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461678995, "cf_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_unread_list", "job": 1, "event": "table_file_creation", "file_number": 221, "file_size": 2050, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 108, "largest_seqno": 143, "table_properties": {"data_size": 930, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 594, "raw_average_key_size": 99, "raw_value_size": 384, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 6, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_unread_list", "column_family_id": 66, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 221, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.679385 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461679363, "cf_name": "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context", "job": 1, "event": "table_file_creation", "file_number": 222, "file_size": 1715, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 123, "largest_seqno": 123, "table_properties": {"data_size": 639, "index_size": 78, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 554, "raw_average_value_size": 554, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context", "column_family_id": 68, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 222, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.679802 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461679782, "cf_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_smart_inbox_name", "job": 1, "event": "table_file_creation", "file_number": 223, "file_size": 1194, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 104, "largest_seqno": 104, "table_properties": {"data_size": 104, "index_size": 77, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 20, "raw_average_value_size": 20, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_smart_inbox_name", "column_family_id": 69, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 223, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.683288 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461683265, "cf_name": "d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368", "job": 1, "event": "table_file_creation", "file_number": 224, "file_size": 1229946, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 103, "largest_seqno": 103, "table_properties": {"data_size": 1228908, "index_size": 33, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 22, "raw_average_key_size": 22, "raw_value_size": 1228868, "raw_average_value_size": 1228868, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368", "column_family_id": 70, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 224, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.683824 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461683800, "cf_name": "jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1", "job": 1, "event": "table_file_creation", "file_number": 225, "file_size": 1238, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 147, "largest_seqno": 150, "table_properties": {"data_size": 217, "index_size": 33, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 97, "raw_average_key_size": 24, "raw_value_size": 95, "raw_average_value_size": 23, "num_data_blocks": 1, "num_entries": 4, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1", "column_family_id": 71, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 225, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.702393 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461702371, "cf_name": "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope", "job": 1, "event": "table_file_creation", "file_number": 226, "file_size": 8413610, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 166, "largest_seqno": 166, "table_properties": {"data_size": 8412556, "index_size": 62, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 50, "raw_average_key_size": 50, "raw_value_size": 8412487, "raw_average_value_size": 8412487, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope", "column_family_id": 72, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 226, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.702967 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461702950, "cf_name": "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history", "job": 1, "event": "table_file_creation", "file_number": 227, "file_size": 2009, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 167, "largest_seqno": 167, "table_properties": {"data_size": 974, "index_size": 42, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 32, "raw_average_key_size": 32, "raw_value_size": 925, "raw_average_value_size": 925, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history", "column_family_id": 73, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 227, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.703307 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461703290, "cf_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false", "job": 1, "event": "table_file_creation", "file_number": 228, "file_size": 1438, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 163, "largest_seqno": 170, "table_properties": {"data_size": 330, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false", "column_family_id": 74, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 228, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.703676 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461703658, "cf_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_perms", "job": 1, "event": "table_file_creation", "file_number": 229, "file_size": 1051, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 155, "largest_seqno": 155, "table_properties": {"data_size": 29, "index_size": 21, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 12, "raw_average_key_size": 12, "raw_value_size": 1, "raw_average_value_size": 1, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_perms", "column_family_id": 75, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 229, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.703959 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461703942, "cf_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_unread_list", "job": 1, "event": "table_file_creation", "file_number": 230, "file_size": 1450, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 164, "largest_seqno": 171, "table_properties": {"data_size": 330, "index_size": 109, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 198, "raw_average_key_size": 99, "raw_value_size": 128, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 2, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_unread_list", "column_family_id": 76, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 230, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.704370 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461704348, "cf_name": "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context", "job": 1, "event": "table_file_creation", "file_number": 231, "file_size": 1946, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 172, "largest_seqno": 172, "table_properties": {"data_size": 870, "index_size": 78, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 785, "raw_average_value_size": 785, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context", "column_family_id": 78, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 231, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.704751 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461704730, "cf_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_smart_inbox_name", "job": 1, "event": "table_file_creation", "file_number": 232, "file_size": 1188, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 160, "largest_seqno": 160, "table_properties": {"data_size": 98, "index_size": 77, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 68, "raw_average_key_size": 68, "raw_value_size": 14, "raw_average_value_size": 14, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_smart_inbox_name", "column_family_id": 79, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 232, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.708036 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461708016, "cf_name": "48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a", "job": 1, "event": "table_file_creation", "file_number": 233, "file_size": 1229946, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 159, "largest_seqno": 159, "table_properties": {"data_size": 1228908, "index_size": 33, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 22, "raw_average_key_size": 22, "raw_value_size": 1228868, "raw_average_value_size": 1228868, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a", "column_family_id": 80, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631461, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "07Y21L7WAIVNK1EN99Q3", "orig_file_number": 233, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:11:01.708269 6123778048 EVENT_LOG_v1 {"time_micros": 1702631461708267, "job": 1, "event": "recovery_finished"} -2023/12/15-18:11:01.709653 6123778048 [db/version_set.cc:5180] Creating manifest 235 -2023/12/15-18:11:01.789495 6123778048 [file/delete_scheduler.cc:77] Deleted file tests/db_for_testing/test/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 -2023/12/15-18:11:01.789551 6123778048 [db/db_impl/db_impl_open.cc:1977] SstFileManager instance 0x135e80e10 -2023/12/15-18:11:01.790399 6123778048 DB pointer 0x1360c2800 -2023/12/15-18:11:01.799069 6125498368 [db/db_impl/db_impl.cc:1085] ------- DUMPING STATS ------- -2023/12/15-18:11:01.799083 6125498368 [db/db_impl/db_impl.cc:1086] -** DB Stats ** -Uptime(secs): 0.3 total, 0.3 interval -Cumulative writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s -Cumulative WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent -Interval writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s -Interval WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Interval stall: 00:00:0.000 H:M:S, 0.0 percent -Write Stall (count): write-buffer-manager-limit-stops: 0, -** Compaction Stats [default] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [default] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e2fd48#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 4.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [default] ** - -** Compaction Stats [inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.6 0.00 0.00 1 0.001 0 0 0.0 0.0 - Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.6 0.00 0.00 1 0.001 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.6 0.00 0.00 1 0.001 0 0 0.0 0.0 - -** Compaction Stats [inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6 0.00 0.00 1 0.001 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e30e98#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [inbox] ** - -** Compaction Stats [peers] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [peers] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e31d58#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [peers] ** - -** Compaction Stats [profiles_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.05 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.05 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e32c48#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_encryption_key] ** - -** Compaction Stats [profiles_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.04 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - Sum 1/0 1.04 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e33b58#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_key] ** - -** Compaction Stats [devices_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.12 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.12 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e35b78#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_encryption_key] ** - -** Compaction Stats [devices_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.12 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.12 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e36a68#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_identity_key] ** - -** Compaction Stats [devices_permissions] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.06 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.06 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_permissions] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e37978#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_permissions] ** - -** Compaction Stats [scheduled_message] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [scheduled_message] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e38888#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [scheduled_message] ** - -** Compaction Stats [all_messages] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 17.37 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 35.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 17.37 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 35.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 35.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 35.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.05 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.05 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e357f8#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages] ** - -** Compaction Stats [all_messages_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 3.13 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 8.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 3.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 8.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 8.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 8.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e3a498#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages_time_keyed] ** - -** Compaction Stats [one_time_registration_codes] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.42 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.42 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [one_time_registration_codes] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e3b3a8#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [one_time_registration_codes] ** - -** Compaction Stats [profiles_identity_type] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.99 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 0.99 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_type] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e3c2b8#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_type] ** - -** Compaction Stats [profiles_permission] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.98 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 0.98 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_permission] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e3d1c8#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_permission] ** - -** Compaction Stats [external_node_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.08 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.08 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e3e0d8#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_identity_key] ** - -** Compaction Stats [external_node_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.08 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.08 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e3efe8#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_encryption_key] ** - -** Compaction Stats [all_jobs_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.31 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.31 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_jobs_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e3fef8#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_jobs_time_keyed] ** - -** Compaction Stats [resources] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.52 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [resources] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e40e08#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [resources] ** - -** Compaction Stats [agents] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.94 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.94 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [agents] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e41d08#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [agents] ** - -** Compaction Stats [toolkits] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [toolkits] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e42c08#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [toolkits] ** - -** Compaction Stats [mesages_to_retry] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [mesages_to_retry] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e43b08#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [mesages_to_retry] ** - -** Compaction Stats [message_box_symmetric_keys] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.45 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.45 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.9 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e44a08#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys] ** - -** Compaction Stats [message_box_symmetric_keys_times] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.46 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.46 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys_times] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x135e45918#79477 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys_times] ** - -** Compaction Stats [temp_files_inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.57 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 1/0 1.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [temp_files_inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.3 total, 0.3 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stal -2023/12/15-18:11:03.229228 6108753920 [db/db_impl/db_impl.cc:490] Shutdown: canceling all background work -2023/12/15-18:11:03.232422 6108753920 [db/db_impl/db_impl.cc:692] Shutdown complete diff --git a/tests/it/db_for_testing/test/LOG.old.1702631626333871 b/tests/it/db_for_testing/test/LOG.old.1702631626333871 deleted file mode 100644 index 92639258c..000000000 --- a/tests/it/db_for_testing/test/LOG.old.1702631626333871 +++ /dev/null @@ -1,2260 +0,0 @@ -2023/12/15-18:12:40.724830 6145355776 RocksDB version: 8.1.1 -2023/12/15-18:12:40.725423 6145355776 Compile date 2023-04-06 16:38:52 -2023/12/15-18:12:40.725426 6145355776 DB SUMMARY -2023/12/15-18:12:40.725427 6145355776 DB Session ID: 7UFI9IWK38YY61XS5RGJ -2023/12/15-18:12:40.725574 6145355776 CURRENT file: CURRENT -2023/12/15-18:12:40.725575 6145355776 IDENTITY file: IDENTITY -2023/12/15-18:12:40.725582 6145355776 MANIFEST file: MANIFEST-000235 size: 20199 Bytes -2023/12/15-18:12:40.725584 6145355776 SST files in tests/db_for_testing/test dir, Total Num: 66, files: 000168.sst 000169.sst 000170.sst 000171.sst 000172.sst 000173.sst 000174.sst 000175.sst 000176.sst -2023/12/15-18:12:40.725586 6145355776 Write Ahead Log file in tests/db_for_testing/test: 000234.log size: 670 ; -2023/12/15-18:12:40.725588 6145355776 Options.error_if_exists: 0 -2023/12/15-18:12:40.725589 6145355776 Options.create_if_missing: 1 -2023/12/15-18:12:40.725590 6145355776 Options.paranoid_checks: 1 -2023/12/15-18:12:40.725591 6145355776 Options.flush_verify_memtable_count: 1 -2023/12/15-18:12:40.725592 6145355776 Options.track_and_verify_wals_in_manifest: 0 -2023/12/15-18:12:40.725593 6145355776 Options.verify_sst_unique_id_in_manifest: 1 -2023/12/15-18:12:40.725594 6145355776 Options.env: 0x105478050 -2023/12/15-18:12:40.725595 6145355776 Options.fs: PosixFileSystem -2023/12/15-18:12:40.725596 6145355776 Options.info_log: 0x139805b98 -2023/12/15-18:12:40.725597 6145355776 Options.max_file_opening_threads: 16 -2023/12/15-18:12:40.725598 6145355776 Options.statistics: 0x0 -2023/12/15-18:12:40.725599 6145355776 Options.use_fsync: 0 -2023/12/15-18:12:40.725600 6145355776 Options.max_log_file_size: 0 -2023/12/15-18:12:40.725600 6145355776 Options.max_manifest_file_size: 1073741824 -2023/12/15-18:12:40.725601 6145355776 Options.log_file_time_to_roll: 0 -2023/12/15-18:12:40.725602 6145355776 Options.keep_log_file_num: 1000 -2023/12/15-18:12:40.725603 6145355776 Options.recycle_log_file_num: 0 -2023/12/15-18:12:40.725604 6145355776 Options.allow_fallocate: 1 -2023/12/15-18:12:40.725605 6145355776 Options.allow_mmap_reads: 0 -2023/12/15-18:12:40.725606 6145355776 Options.allow_mmap_writes: 0 -2023/12/15-18:12:40.725607 6145355776 Options.use_direct_reads: 0 -2023/12/15-18:12:40.725608 6145355776 Options.use_direct_io_for_flush_and_compaction: 0 -2023/12/15-18:12:40.725609 6145355776 Options.create_missing_column_families: 1 -2023/12/15-18:12:40.725610 6145355776 Options.db_log_dir: -2023/12/15-18:12:40.725611 6145355776 Options.wal_dir: -2023/12/15-18:12:40.725611 6145355776 Options.table_cache_numshardbits: 6 -2023/12/15-18:12:40.725612 6145355776 Options.WAL_ttl_seconds: 0 -2023/12/15-18:12:40.725613 6145355776 Options.WAL_size_limit_MB: 0 -2023/12/15-18:12:40.725614 6145355776 Options.max_write_batch_group_size_bytes: 1048576 -2023/12/15-18:12:40.725615 6145355776 Options.manifest_preallocation_size: 4194304 -2023/12/15-18:12:40.725616 6145355776 Options.is_fd_close_on_exec: 1 -2023/12/15-18:12:40.725617 6145355776 Options.advise_random_on_open: 1 -2023/12/15-18:12:40.725618 6145355776 Options.db_write_buffer_size: 0 -2023/12/15-18:12:40.725618 6145355776 Options.write_buffer_manager: 0x139805d60 -2023/12/15-18:12:40.725619 6145355776 Options.access_hint_on_compaction_start: 1 -2023/12/15-18:12:40.725620 6145355776 Options.random_access_max_buffer_size: 1048576 -2023/12/15-18:12:40.725621 6145355776 Options.use_adaptive_mutex: 0 -2023/12/15-18:12:40.725622 6145355776 Options.rate_limiter: 0x0 -2023/12/15-18:12:40.725623 6145355776 Options.sst_file_manager.rate_bytes_per_sec: 0 -2023/12/15-18:12:40.725624 6145355776 Options.wal_recovery_mode: 2 -2023/12/15-18:12:40.725625 6145355776 Options.enable_thread_tracking: 0 -2023/12/15-18:12:40.725626 6145355776 Options.enable_pipelined_write: 0 -2023/12/15-18:12:40.725627 6145355776 Options.unordered_write: 0 -2023/12/15-18:12:40.725628 6145355776 Options.allow_concurrent_memtable_write: 1 -2023/12/15-18:12:40.725629 6145355776 Options.enable_write_thread_adaptive_yield: 1 -2023/12/15-18:12:40.725630 6145355776 Options.write_thread_max_yield_usec: 100 -2023/12/15-18:12:40.725630 6145355776 Options.write_thread_slow_yield_usec: 3 -2023/12/15-18:12:40.725631 6145355776 Options.row_cache: None -2023/12/15-18:12:40.725632 6145355776 Options.wal_filter: None -2023/12/15-18:12:40.725633 6145355776 Options.avoid_flush_during_recovery: 0 -2023/12/15-18:12:40.725634 6145355776 Options.allow_ingest_behind: 0 -2023/12/15-18:12:40.725635 6145355776 Options.two_write_queues: 0 -2023/12/15-18:12:40.725636 6145355776 Options.manual_wal_flush: 0 -2023/12/15-18:12:40.725637 6145355776 Options.wal_compression: 0 -2023/12/15-18:12:40.725638 6145355776 Options.atomic_flush: 0 -2023/12/15-18:12:40.725638 6145355776 Options.avoid_unnecessary_blocking_io: 0 -2023/12/15-18:12:40.725639 6145355776 Options.persist_stats_to_disk: 0 -2023/12/15-18:12:40.725640 6145355776 Options.write_dbid_to_manifest: 0 -2023/12/15-18:12:40.725641 6145355776 Options.log_readahead_size: 0 -2023/12/15-18:12:40.725642 6145355776 Options.file_checksum_gen_factory: Unknown -2023/12/15-18:12:40.725643 6145355776 Options.best_efforts_recovery: 0 -2023/12/15-18:12:40.725644 6145355776 Options.max_bgerror_resume_count: 2147483647 -2023/12/15-18:12:40.725645 6145355776 Options.bgerror_resume_retry_interval: 1000000 -2023/12/15-18:12:40.725646 6145355776 Options.allow_data_in_errors: 0 -2023/12/15-18:12:40.725647 6145355776 Options.db_host_id: __hostname__ -2023/12/15-18:12:40.725648 6145355776 Options.enforce_single_del_contracts: true -2023/12/15-18:12:40.725649 6145355776 Options.max_background_jobs: 2 -2023/12/15-18:12:40.725650 6145355776 Options.max_background_compactions: -1 -2023/12/15-18:12:40.725651 6145355776 Options.max_subcompactions: 1 -2023/12/15-18:12:40.725652 6145355776 Options.avoid_flush_during_shutdown: 0 -2023/12/15-18:12:40.725653 6145355776 Options.writable_file_max_buffer_size: 1048576 -2023/12/15-18:12:40.725654 6145355776 Options.delayed_write_rate : 16777216 -2023/12/15-18:12:40.725655 6145355776 Options.max_total_wal_size: 0 -2023/12/15-18:12:40.725656 6145355776 Options.delete_obsolete_files_period_micros: 21600000000 -2023/12/15-18:12:40.725656 6145355776 Options.stats_dump_period_sec: 600 -2023/12/15-18:12:40.725657 6145355776 Options.stats_persist_period_sec: 600 -2023/12/15-18:12:40.725658 6145355776 Options.stats_history_buffer_size: 1048576 -2023/12/15-18:12:40.725659 6145355776 Options.max_open_files: -1 -2023/12/15-18:12:40.725660 6145355776 Options.bytes_per_sync: 0 -2023/12/15-18:12:40.725661 6145355776 Options.wal_bytes_per_sync: 0 -2023/12/15-18:12:40.725662 6145355776 Options.strict_bytes_per_sync: 0 -2023/12/15-18:12:40.725663 6145355776 Options.compaction_readahead_size: 0 -2023/12/15-18:12:40.725664 6145355776 Options.max_background_flushes: -1 -2023/12/15-18:12:40.725664 6145355776 Compression algorithms supported: -2023/12/15-18:12:40.725666 6145355776 kZSTD supported: 0 -2023/12/15-18:12:40.725667 6145355776 kZlibCompression supported: 0 -2023/12/15-18:12:40.725668 6145355776 kXpressCompression supported: 0 -2023/12/15-18:12:40.725669 6145355776 kSnappyCompression supported: 0 -2023/12/15-18:12:40.725670 6145355776 kZSTDNotFinalCompression supported: 0 -2023/12/15-18:12:40.725671 6145355776 kLZ4HCCompression supported: 1 -2023/12/15-18:12:40.725672 6145355776 kLZ4Compression supported: 1 -2023/12/15-18:12:40.725673 6145355776 kBZip2Compression supported: 0 -2023/12/15-18:12:40.725680 6145355776 Fast CRC32 supported: Supported on Arm64 -2023/12/15-18:12:40.725681 6145355776 DMutex implementation: pthread_mutex_t -2023/12/15-18:12:40.725807 6145355776 [db/version_set.cc:5662] Recovering from manifest file: tests/db_for_testing/test/MANIFEST-000235 -2023/12/15-18:12:40.726143 6145355776 [db/column_family.cc:621] --------------- Options for column family [default]: -2023/12/15-18:12:40.726145 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.726147 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.726147 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.726148 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.726150 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.726151 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.726151 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.726178 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x137636650) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x1376334e8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.726181 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.726182 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.726183 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.726184 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.726185 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.726186 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.726187 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.726188 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.726189 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.726190 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.726191 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.726192 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.726193 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.726194 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726194 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726195 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726196 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.726197 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726198 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726199 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.726200 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.726201 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.726202 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726203 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726204 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726205 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726206 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.726207 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726207 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.726208 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.726209 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.726210 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.726211 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.726212 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.726213 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.726214 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.726215 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.726216 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.726217 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.726218 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.726219 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.726220 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.726221 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.726222 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.726223 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.726223 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.726224 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.726225 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.726226 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.726227 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.726229 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.726230 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.726231 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.726232 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.726233 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.726234 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.726235 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.726238 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.726238 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.726239 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.726241 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.726242 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.726243 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.726244 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.726245 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.726246 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.726247 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.726247 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.726248 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.726249 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.726250 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.726251 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.726252 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.726253 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.726254 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.726254 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.726255 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.726256 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.726257 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.726258 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.726259 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.726260 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.726261 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.726262 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.726263 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.726264 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.726581 6145355776 [db/column_family.cc:621] --------------- Options for column family [inbox]: -2023/12/15-18:12:40.726582 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.726583 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.726584 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.726585 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.726586 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.726587 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.726588 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.726595 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x137634420) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x137634678 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.726596 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.726597 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.726598 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.726599 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.726600 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.726601 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.726602 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.726602 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.726603 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.726604 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.726605 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.726606 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.726607 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.726608 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726609 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726610 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726611 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.726612 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726612 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726613 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.726614 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.726615 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.726616 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726617 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726618 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726619 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726620 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.726621 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726621 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.726622 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.726623 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.726624 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.726625 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.726626 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.726627 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.726628 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.726629 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.726630 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.726630 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.726631 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.726632 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.726633 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.726634 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.726635 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.726636 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.726637 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.726638 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.726639 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.726639 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.726640 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.726641 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.726643 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.726644 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.726644 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.726645 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.726646 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.726647 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.726648 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.726649 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.726650 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.726651 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.726652 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.726653 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.726654 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.726655 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.726656 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.726657 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.726658 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.726658 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.726659 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.726660 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.726661 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.726662 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.726663 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.726664 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.726665 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.726665 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.726666 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.726667 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.726668 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.726669 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.726670 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.726671 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.726672 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.726673 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.726673 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.726735 6145355776 [db/column_family.cc:621] --------------- Options for column family [peers]: -2023/12/15-18:12:40.726737 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.726738 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.726739 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.726740 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.726740 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.726741 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.726742 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.726749 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x1376354d0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x137635528 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.726750 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.726751 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.726752 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.726752 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.726753 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.726754 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.726755 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.726756 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.726757 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.726758 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.726759 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.726760 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.726761 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.726761 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726762 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726763 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726764 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.726765 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726766 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726767 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.726769 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.726770 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.726771 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726772 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726773 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726773 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726774 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.726775 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726776 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.726777 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.726778 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.726779 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.726779 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.726780 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.726781 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.726782 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.726783 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.726784 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.726785 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.726786 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.726787 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.726788 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.726789 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.726789 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.726790 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.726791 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.726792 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.726793 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.726794 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.726795 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.726796 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.726797 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.726798 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.726799 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.726800 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.726801 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.726801 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.726803 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.726804 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.726804 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.726806 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.726806 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.726807 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.726808 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.726809 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.726810 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.726811 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.726812 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.726812 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.726813 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.726814 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.726815 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.726816 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.726817 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.726818 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.726818 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.726819 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.726820 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.726821 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.726822 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.726823 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.726824 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.726824 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.726826 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.726826 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.726827 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.726885 6145355776 [db/column_family.cc:621] --------------- Options for column family [profiles_encryption_key]: -2023/12/15-18:12:40.726887 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.726888 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.726889 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.726890 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.726891 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.726891 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.726892 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.726898 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x1376363d0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x137636428 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.726899 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.726900 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.726901 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.726902 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.726903 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.726904 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.726905 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.726906 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.726907 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.726908 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.726908 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.726909 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.726910 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.726911 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726912 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726913 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726914 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.726915 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726916 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726916 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.726917 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.726918 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.726919 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.726920 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.726921 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.726922 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.726923 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.726924 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.726924 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.726925 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.726926 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.726927 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.726928 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.726929 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.726930 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.726931 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.726932 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.726932 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.726933 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.726934 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.726935 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.726936 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.726937 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.726938 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.726939 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.726940 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.726941 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.726942 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.726943 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.726944 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.726945 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.726946 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.726947 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.726948 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.726949 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.726950 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.726951 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.726953 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.726954 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.726955 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.726956 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.726957 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.726958 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.726959 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.726960 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.726961 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.726962 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.726963 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.726964 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.726965 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.726966 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.726967 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.726968 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.726970 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.726971 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.726972 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.726973 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.726974 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.726975 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.726976 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.726977 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.726978 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.726979 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.726980 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.726981 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.726982 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.727042 6145355776 [db/column_family.cc:621] --------------- Options for column family [profiles_identity_key]: -2023/12/15-18:12:40.727043 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.727044 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.727047 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.727047 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.727048 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.727049 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.727050 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.727056 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x1376382d0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x137638328 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.727057 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.727058 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.727059 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.727060 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.727060 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.727061 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.727062 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.727063 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.727064 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.727065 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.727066 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.727067 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.727068 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.727068 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727069 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727070 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727071 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.727072 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727073 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727074 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.727075 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.727075 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.727076 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727077 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727078 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727079 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727080 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.727081 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727082 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.727082 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.727083 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.727084 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.727085 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.727086 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.727087 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.727088 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.727089 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.727089 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.727090 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.727091 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.727092 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.727093 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.727094 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.727095 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.727096 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.727097 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.727097 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.727098 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.727099 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.727100 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.727101 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.727102 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.727103 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.727104 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.727105 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.727106 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.727106 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.727108 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.727108 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.727109 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.727110 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.727111 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.727112 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.727113 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.727114 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.727115 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.727116 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.727116 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.727117 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.727118 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.727119 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.727120 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.727121 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.727122 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.727122 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.727123 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.727124 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.727125 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.727126 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.727127 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.727128 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.727129 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.727129 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.727130 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.727131 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.727132 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.727188 6145355776 [db/column_family.cc:621] --------------- Options for column family [devices_encryption_key]: -2023/12/15-18:12:40.727190 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.727191 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.727192 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.727193 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.727194 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.727194 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.727195 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.727201 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x1376340c0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x137639358 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.727202 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.727203 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.727204 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.727205 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.727206 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.727207 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.727208 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.727208 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.727209 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.727210 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.727211 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.727212 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.727213 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.727214 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727215 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727216 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727216 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.727217 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727218 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727219 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.727220 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.727221 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.727222 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727223 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727223 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727224 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727225 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.727226 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727227 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.727228 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.727229 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.727229 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.727230 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.727231 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.727232 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.727233 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.727234 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.727235 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.727236 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.727237 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.727237 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.727238 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.727239 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.727240 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.727241 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.727242 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.727243 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.727243 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.727244 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.727245 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.727246 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.727255 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.727256 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.727257 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.727258 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.727259 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.727260 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.727261 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.727262 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.727263 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.727264 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.727265 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.727265 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.727266 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.727267 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.727268 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.727269 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.727270 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.727271 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.727272 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.727272 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.727273 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.727274 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.727275 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.727276 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.727277 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.727278 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.727279 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.727279 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.727280 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.727281 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.727282 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.727283 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.727284 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.727285 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.727286 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.727341 6145355776 [db/column_family.cc:621] --------------- Options for column family [devices_identity_key]: -2023/12/15-18:12:40.727343 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.727344 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.727345 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.727345 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.727346 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.727347 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.727348 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.727354 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x13763a1f0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x13763a248 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.727355 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.727356 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.727357 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.727357 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.727358 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.727359 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.727360 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.727361 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.727362 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.727363 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.727364 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.727365 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.727366 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.727366 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727367 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727368 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727369 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.727370 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727371 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727372 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.727373 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.727374 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.727374 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727375 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727376 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727377 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727378 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.727379 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727380 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.727381 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.727381 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.727382 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.727383 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.727384 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.727385 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.727386 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.727387 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.727388 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.727389 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.727390 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.727390 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.727391 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.727392 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.727393 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.727394 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.727395 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.727396 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.727397 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.727397 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.727398 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.727399 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.727401 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.727401 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.727402 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.727403 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.727404 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.727405 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.727406 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.727407 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.727408 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.727409 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.727410 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.727411 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.727411 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.727412 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.727413 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.727414 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.727415 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.727416 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.727417 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.727418 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.727418 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.727419 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.727420 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.727421 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.727422 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.727423 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.727424 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.727424 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.727425 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.727426 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.727427 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.727428 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.727429 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.727430 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.727431 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.727483 6145355776 [db/column_family.cc:621] --------------- Options for column family [devices_permissions]: -2023/12/15-18:12:40.727484 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.727485 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.727486 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.727487 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.727488 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.727489 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.727490 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.727495 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x13763b100) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x13763b158 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.727496 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.727497 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.727498 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.727499 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.727500 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.727501 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.727502 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.727503 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.727504 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.727504 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.727505 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.727506 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.727507 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.727508 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727510 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727511 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727512 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.727513 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727514 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727515 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.727516 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.727517 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.727518 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727519 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727519 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727520 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727521 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.727522 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727523 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.727524 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.727525 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.727525 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.727526 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.727527 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.727528 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.727529 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.727530 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.727531 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.727532 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.727533 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.727534 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.727534 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.727535 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.727536 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.727537 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.727538 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.727539 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.727540 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.727541 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.727542 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.727543 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.727544 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.727544 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.727545 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.727546 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.727547 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.727548 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.727549 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.727550 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.727551 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.727552 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.727553 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.727554 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.727554 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.727555 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.727556 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.727557 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.727558 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.727559 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.727560 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.727560 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.727561 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.727562 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.727563 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.727564 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.727565 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.727566 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.727567 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.727567 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.727568 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.727569 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.727570 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.727571 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.727572 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.727573 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.727574 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.727629 6145355776 [db/column_family.cc:621] --------------- Options for column family [scheduled_message]: -2023/12/15-18:12:40.727630 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.727631 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.727632 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.727633 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.727634 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.727635 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.727636 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.727641 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x13763c010) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x13763c068 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.727642 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.727643 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.727644 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.727645 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.727646 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.727647 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.727647 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.727648 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.727649 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.727650 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.727651 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.727652 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.727653 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.727654 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727654 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727655 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727656 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.727657 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727658 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727659 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.727660 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.727661 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.727661 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727662 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727663 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727664 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727665 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.727666 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727667 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.727668 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.727668 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.727669 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.727670 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.727671 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.727672 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.727673 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.727674 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.727675 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.727675 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.727676 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.727677 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.727678 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.727679 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.727680 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.727681 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.727682 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.727683 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.727684 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.727684 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.727685 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.727686 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.727687 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.727688 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.727689 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.727690 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.727691 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.727692 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.727693 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.727694 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.727695 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.727696 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.727696 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.727697 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.727698 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.727699 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.727700 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.727701 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.727702 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.727702 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.727703 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.727704 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.727705 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.727706 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.727707 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.727708 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.727708 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.727709 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.727710 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.727711 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.727712 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.727713 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.727714 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.727715 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.727717 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.727718 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.727719 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.727771 6145355776 [db/column_family.cc:621] --------------- Options for column family [all_messages]: -2023/12/15-18:12:40.727773 6145355776 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:12:40.727774 6145355776 Options.merge_operator: None -2023/12/15-18:12:40.727775 6145355776 Options.compaction_filter: None -2023/12/15-18:12:40.727776 6145355776 Options.compaction_filter_factory: None -2023/12/15-18:12:40.727777 6145355776 Options.sst_partitioner_factory: None -2023/12/15-18:12:40.727778 6145355776 Options.memtable_factory: SkipListFactory -2023/12/15-18:12:40.727779 6145355776 Options.table_factory: BlockBasedTable -2023/12/15-18:12:40.727784 6145355776 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x137638f80) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x137638fd8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:12:40.727785 6145355776 Options.write_buffer_size: 67108864 -2023/12/15-18:12:40.727786 6145355776 Options.max_write_buffer_number: 2 -2023/12/15-18:12:40.727787 6145355776 Options.compression: NoCompression -2023/12/15-18:12:40.727788 6145355776 Options.bottommost_compression: Disabled -2023/12/15-18:12:40.727789 6145355776 Options.prefix_extractor: nullptr -2023/12/15-18:12:40.727790 6145355776 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:12:40.727790 6145355776 Options.num_levels: 7 -2023/12/15-18:12:40.727791 6145355776 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:12:40.727792 6145355776 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:12:40.727793 6145355776 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:12:40.727794 6145355776 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:12:40.727795 6145355776 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:12:40.727796 6145355776 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:12:40.727797 6145355776 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727798 6145355776 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727798 6145355776 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727799 6145355776 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:12:40.727800 6145355776 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727801 6145355776 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727802 6145355776 Options.compression_opts.window_bits: -14 -2023/12/15-18:12:40.727803 6145355776 Options.compression_opts.level: 32767 -2023/12/15-18:12:40.727804 6145355776 Options.compression_opts.strategy: 0 -2023/12/15-18:12:40.727805 6145355776 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:12:40.727806 6145355776 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:12:40.727807 6145355776 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:12:40.727807 6145355776 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:12:40.727808 6145355776 Options.compression_opts.enabled: false -2023/12/15-18:12:40.727809 6145355776 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:12:40.727810 6145355776 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:12:40.727811 6145355776 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:12:40.727812 6145355776 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:12:40.727813 6145355776 Options.target_file_size_base: 67108864 -2023/12/15-18:12:40.727814 6145355776 Options.target_file_size_multiplier: 1 -2023/12/15-18:12:40.727814 6145355776 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:12:40.727815 6145355776 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:12:40.727816 6145355776 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:12:40.727817 6145355776 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:12:40.727818 6145355776 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:12:40.727819 6145355776 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:12:40.727820 6145355776 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:12:40.727821 6145355776 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:12:40.727822 6145355776 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:12:40.727822 6145355776 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:12:40.727823 6145355776 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:12:40.727824 6145355776 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:12:40.727825 6145355776 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:12:40.727826 6145355776 Options.arena_block_size: 1048576 -2023/12/15-18:12:40.727827 6145355776 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:12:40.727828 6145355776 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:12:40.727829 6145355776 Options.disable_auto_compactions: 0 -2023/12/15-18:12:40.727830 6145355776 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:12:40.727831 6145355776 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:12:40.727832 6145355776 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:12:40.727832 6145355776 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:12:40.727833 6145355776 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:12:40.727834 6145355776 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:12:40.727835 6145355776 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:12:40.727836 6145355776 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:12:40.727837 6145355776 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:12:40.727838 6145355776 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:12:40.727839 6145355776 Options.table_properties_collectors: -2023/12/15-18:12:40.727840 6145355776 Options.inplace_update_support: 0 -2023/12/15-18:12:40.727841 6145355776 Options.inplace_update_num_locks: 10000 -2023/12/15-18:12:40.727842 6145355776 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:12:40.727843 6145355776 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:12:40.727843 6145355776 Options.memtable_huge_page_size: 0 -2023/12/15-18:12:40.727844 6145355776 Options.bloom_locality: 0 -2023/12/15-18:12:40.727845 6145355776 Options.max_successive_merges: 0 -2023/12/15-18:12:40.727846 6145355776 Options.optimize_filters_for_hits: 0 -2023/12/15-18:12:40.727847 6145355776 Options.paranoid_file_checks: 0 -2023/12/15-18:12:40.727848 6145355776 Options.force_consistency_checks: 1 -2023/12/15-18:12:40.727849 6145355776 Options.report_bg_io_stats: 0 -2023/12/15-18:12:40.727849 6145355776 Options.ttl: 2592000 -2023/12/15-18:12:40.727850 6145355776 Options.periodic_compaction_seconds: 0 -2023/12/15-18:12:40.727851 6145355776 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:12:40.727852 6145355776 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:12:40.727853 6145355776 Options.enable_blob_files: false -2023/12/15-18:12:40.727854 6145355776 Options.min_blob_size: 0 -2023/12/15-18:12:40.727855 6145355776 Options.blob_file_size: 268435456 -2023/12/15-18:12:40.727856 6145355776 Options.blob_compression_type: NoCompression -2023/12/15-18:12:40.727857 6145355776 Options.enable_blob_garbage_collection: false -2023/12/15-18:12:40.727857 6145355776 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:12:40.727858 6145355776 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:12:40.727859 6145355776 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:12:40.727860 6145355776 Options.blob_file_starting_level: 0 -2023/12/15-18:12:40.727861 6145355776 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:12:40.727915 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.727968 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728024 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728077 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728130 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728182 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728235 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728287 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728337 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728389 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728440 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728490 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728543 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728594 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728648 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728698 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728749 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728799 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728852 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.728924 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729078 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729149 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729208 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729264 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729320 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729376 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729428 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729482 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729540 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729594 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729649 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729702 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729752 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729801 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729855 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729907 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.729963 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730015 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730072 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730125 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730174 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730227 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730278 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730330 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730382 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730433 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730485 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730537 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730591 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730641 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730694 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730752 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730802 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730858 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730908 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.730961 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731012 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731066 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731119 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731176 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731225 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731276 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731327 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731377 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731429 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731479 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731536 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731589 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731638 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731691 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.731742 6145355776 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:12:40.752847 6145355776 [db/version_set.cc:5713] Recovered from manifest file:tests/db_for_testing/test/MANIFEST-000235 succeeded,manifest_file_number is 235, next_file_number is 237, last_sequence is 173, log_number is 5,prev_log_number is 0,max_column_family is 80,min_log_number_to_keep is 5 -2023/12/15-18:12:40.752857 6145355776 [db/version_set.cc:5722] Column family [default] (ID 0), log number is 5 -2023/12/15-18:12:40.752858 6145355776 [db/version_set.cc:5722] Column family [inbox] (ID 1), log number is 5 -2023/12/15-18:12:40.752860 6145355776 [db/version_set.cc:5722] Column family [peers] (ID 2), log number is 5 -2023/12/15-18:12:40.752861 6145355776 [db/version_set.cc:5722] Column family [profiles_encryption_key] (ID 3), log number is 5 -2023/12/15-18:12:40.752862 6145355776 [db/version_set.cc:5722] Column family [profiles_identity_key] (ID 4), log number is 5 -2023/12/15-18:12:40.752863 6145355776 [db/version_set.cc:5722] Column family [devices_encryption_key] (ID 5), log number is 5 -2023/12/15-18:12:40.752864 6145355776 [db/version_set.cc:5722] Column family [devices_identity_key] (ID 6), log number is 5 -2023/12/15-18:12:40.752865 6145355776 [db/version_set.cc:5722] Column family [devices_permissions] (ID 7), log number is 5 -2023/12/15-18:12:40.752866 6145355776 [db/version_set.cc:5722] Column family [scheduled_message] (ID 8), log number is 5 -2023/12/15-18:12:40.752867 6145355776 [db/version_set.cc:5722] Column family [all_messages] (ID 9), log number is 5 -2023/12/15-18:12:40.752868 6145355776 [db/version_set.cc:5722] Column family [all_messages_time_keyed] (ID 10), log number is 5 -2023/12/15-18:12:40.752869 6145355776 [db/version_set.cc:5722] Column family [one_time_registration_codes] (ID 11), log number is 5 -2023/12/15-18:12:40.752870 6145355776 [db/version_set.cc:5722] Column family [profiles_identity_type] (ID 12), log number is 5 -2023/12/15-18:12:40.752871 6145355776 [db/version_set.cc:5722] Column family [profiles_permission] (ID 13), log number is 5 -2023/12/15-18:12:40.752872 6145355776 [db/version_set.cc:5722] Column family [external_node_identity_key] (ID 14), log number is 5 -2023/12/15-18:12:40.752873 6145355776 [db/version_set.cc:5722] Column family [external_node_encryption_key] (ID 15), log number is 5 -2023/12/15-18:12:40.752873 6145355776 [db/version_set.cc:5722] Column family [all_jobs_time_keyed] (ID 16), log number is 5 -2023/12/15-18:12:40.752874 6145355776 [db/version_set.cc:5722] Column family [resources] (ID 17), log number is 5 -2023/12/15-18:12:40.752875 6145355776 [db/version_set.cc:5722] Column family [agents] (ID 18), log number is 5 -2023/12/15-18:12:40.752876 6145355776 [db/version_set.cc:5722] Column family [toolkits] (ID 19), log number is 5 -2023/12/15-18:12:40.752877 6145355776 [db/version_set.cc:5722] Column family [mesages_to_retry] (ID 20), log number is 5 -2023/12/15-18:12:40.752878 6145355776 [db/version_set.cc:5722] Column family [message_box_symmetric_keys] (ID 21), log number is 5 -2023/12/15-18:12:40.752879 6145355776 [db/version_set.cc:5722] Column family [message_box_symmetric_keys_times] (ID 22), log number is 5 -2023/12/15-18:12:40.752880 6145355776 [db/version_set.cc:5722] Column family [temp_files_inbox] (ID 23), log number is 5 -2023/12/15-18:12:40.752881 6145355776 [db/version_set.cc:5722] Column family [job_queues] (ID 24), log number is 5 -2023/12/15-18:12:40.752882 6145355776 [db/version_set.cc:5722] Column family [cron_queues] (ID 25), log number is 5 -2023/12/15-18:12:40.752883 6145355776 [db/version_set.cc:5722] Column family [agent_my_gpt_profiles_with_access] (ID 26), log number is 5 -2023/12/15-18:12:40.752884 6145355776 [db/version_set.cc:5722] Column family [agent_my_gpt_toolkits_accessible] (ID 27), log number is 5 -2023/12/15-18:12:40.752885 6145355776 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_profiles_with_access] (ID 28), log number is 5 -2023/12/15-18:12:40.752886 6145355776 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_toolkits_accessible] (ID 29), log number is 5 -2023/12/15-18:12:40.752887 6145355776 [db/version_set.cc:5722] Column family [agentid_my_gpt] (ID 30), log number is 5 -2023/12/15-18:12:40.752888 6145355776 [db/version_set.cc:5722] Column family [jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae] (ID 31), log number is 5 -2023/12/15-18:12:40.752889 6145355776 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope] (ID 32), log number is 5 -2023/12/15-18:12:40.752890 6145355776 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history] (ID 33), log number is 5 -2023/12/15-18:12:40.752891 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false] (ID 34), log number is 5 -2023/12/15-18:12:40.752892 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_perms] (ID 35), log number is 5 -2023/12/15-18:12:40.752893 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_unread_list] (ID 36), log number is 5 -2023/12/15-18:12:40.752894 6145355776 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages] (ID 37), log number is 5 -2023/12/15-18:12:40.752895 6145355776 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context] (ID 38), log number is 5 -2023/12/15-18:12:40.752896 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_smart_inbox_name] (ID 39), log number is 5 -2023/12/15-18:12:40.752897 6145355776 [db/version_set.cc:5722] Column family [agentid_my_gpt_vision] (ID 40), log number is 5 -2023/12/15-18:12:40.752898 6145355776 [db/version_set.cc:5722] Column family [jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c] (ID 41), log number is 5 -2023/12/15-18:12:40.752899 6145355776 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope] (ID 42), log number is 5 -2023/12/15-18:12:40.752900 6145355776 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history] (ID 43), log number is 5 -2023/12/15-18:12:40.752901 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false] (ID 44), log number is 5 -2023/12/15-18:12:40.752902 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_perms] (ID 45), log number is 5 -2023/12/15-18:12:40.752903 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_unread_list] (ID 46), log number is 5 -2023/12/15-18:12:40.752904 6145355776 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages] (ID 47), log number is 5 -2023/12/15-18:12:40.752905 6145355776 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context] (ID 48), log number is 5 -2023/12/15-18:12:40.752906 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_smart_inbox_name] (ID 49), log number is 5 -2023/12/15-18:12:40.752906 6145355776 [db/version_set.cc:5722] Column family [3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201] (ID 50), log number is 5 -2023/12/15-18:12:40.752907 6145355776 [db/version_set.cc:5722] Column family [jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d] (ID 51), log number is 5 -2023/12/15-18:12:40.752908 6145355776 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope] (ID 52), log number is 5 -2023/12/15-18:12:40.752909 6145355776 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history] (ID 53), log number is 5 -2023/12/15-18:12:40.752910 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false] (ID 54), log number is 5 -2023/12/15-18:12:40.752911 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_perms] (ID 55), log number is 5 -2023/12/15-18:12:40.752912 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_unread_list] (ID 56), log number is 5 -2023/12/15-18:12:40.752913 6145355776 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages] (ID 57), log number is 5 -2023/12/15-18:12:40.752914 6145355776 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context] (ID 58), log number is 5 -2023/12/15-18:12:40.752915 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_smart_inbox_name] (ID 59), log number is 5 -2023/12/15-18:12:40.752916 6145355776 [db/version_set.cc:5722] Column family [655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9] (ID 60), log number is 5 -2023/12/15-18:12:40.752917 6145355776 [db/version_set.cc:5722] Column family [jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580] (ID 61), log number is 5 -2023/12/15-18:12:40.752918 6145355776 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope] (ID 62), log number is 5 -2023/12/15-18:12:40.752919 6145355776 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history] (ID 63), log number is 5 -2023/12/15-18:12:40.752920 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false] (ID 64), log number is 5 -2023/12/15-18:12:40.752921 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_perms] (ID 65), log number is 5 -2023/12/15-18:12:40.752921 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_unread_list] (ID 66), log number is 5 -2023/12/15-18:12:40.752922 6145355776 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages] (ID 67), log number is 5 -2023/12/15-18:12:40.752923 6145355776 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context] (ID 68), log number is 5 -2023/12/15-18:12:40.752924 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_smart_inbox_name] (ID 69), log number is 5 -2023/12/15-18:12:40.752925 6145355776 [db/version_set.cc:5722] Column family [d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368] (ID 70), log number is 5 -2023/12/15-18:12:40.752926 6145355776 [db/version_set.cc:5722] Column family [jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1] (ID 71), log number is 5 -2023/12/15-18:12:40.752927 6145355776 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope] (ID 72), log number is 5 -2023/12/15-18:12:40.752928 6145355776 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history] (ID 73), log number is 5 -2023/12/15-18:12:40.752929 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false] (ID 74), log number is 5 -2023/12/15-18:12:40.752930 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_perms] (ID 75), log number is 5 -2023/12/15-18:12:40.752931 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_unread_list] (ID 76), log number is 5 -2023/12/15-18:12:40.752932 6145355776 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages] (ID 77), log number is 5 -2023/12/15-18:12:40.752933 6145355776 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context] (ID 78), log number is 5 -2023/12/15-18:12:40.752934 6145355776 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_smart_inbox_name] (ID 79), log number is 5 -2023/12/15-18:12:40.752935 6145355776 [db/version_set.cc:5722] Column family [48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a] (ID 80), log number is 5 -2023/12/15-18:12:40.752988 6145355776 [db/db_impl/db_impl_open.cc:537] DB ID: cd8c8a56-182b-440f-8ebb-d520dc6f6053 -2023/12/15-18:12:40.753892 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560753875, "job": 1, "event": "recovery_started", "wal_files": [234]} -2023/12/15-18:12:40.753898 6145355776 [db/db_impl/db_impl_open.cc:1031] Recovering log #234 mode 2 -2023/12/15-18:12:40.755035 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560755007, "cf_name": "devices_encryption_key", "job": 1, "event": "table_file_creation", "file_number": 238, "file_size": 1155, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 178, "largest_seqno": 178, "table_properties": {"data_size": 133, "index_size": 63, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 53, "raw_average_key_size": 53, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "devices_encryption_key", "column_family_id": 5, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631560, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "7UFI9IWK38YY61XS5RGJ", "orig_file_number": 238, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:12:40.755633 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560755609, "cf_name": "devices_identity_key", "job": 1, "event": "table_file_creation", "file_number": 239, "file_size": 1153, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 177, "largest_seqno": 177, "table_properties": {"data_size": 133, "index_size": 63, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 53, "raw_average_key_size": 53, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "devices_identity_key", "column_family_id": 6, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631560, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "7UFI9IWK38YY61XS5RGJ", "orig_file_number": 239, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:12:40.756092 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560756069, "cf_name": "devices_permissions", "job": 1, "event": "table_file_creation", "file_number": 240, "file_size": 1091, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 179, "largest_seqno": 179, "table_properties": {"data_size": 74, "index_size": 62, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 53, "raw_average_key_size": 53, "raw_value_size": 5, "raw_average_value_size": 5, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "devices_permissions", "column_family_id": 7, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631560, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "7UFI9IWK38YY61XS5RGJ", "orig_file_number": 240, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:12:40.756478 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560756457, "cf_name": "one_time_registration_codes", "job": 1, "event": "table_file_creation", "file_number": 241, "file_size": 1290, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 176, "largest_seqno": 176, "table_properties": {"data_size": 177, "index_size": 147, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 136, "raw_average_key_size": 136, "raw_value_size": 24, "raw_average_value_size": 24, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "one_time_registration_codes", "column_family_id": 11, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631560, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "7UFI9IWK38YY61XS5RGJ", "orig_file_number": 241, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:12:40.756811 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560756791, "cf_name": "external_node_identity_key", "job": 1, "event": "table_file_creation", "file_number": 242, "file_size": 1107, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 175, "largest_seqno": 175, "table_properties": {"data_size": 108, "index_size": 37, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 28, "raw_average_key_size": 28, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_identity_key", "column_family_id": 14, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631560, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "7UFI9IWK38YY61XS5RGJ", "orig_file_number": 242, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:12:40.757126 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560757105, "cf_name": "external_node_encryption_key", "job": 1, "event": "table_file_creation", "file_number": 243, "file_size": 1109, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 174, "largest_seqno": 174, "table_properties": {"data_size": 108, "index_size": 37, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 28, "raw_average_key_size": 28, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_encryption_key", "column_family_id": 15, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631560, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "7UFI9IWK38YY61XS5RGJ", "orig_file_number": 243, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:12:40.757328 6145355776 EVENT_LOG_v1 {"time_micros": 1702631560757326, "job": 1, "event": "recovery_finished"} -2023/12/15-18:12:40.758679 6145355776 [db/version_set.cc:5180] Creating manifest 245 -2023/12/15-18:12:40.841078 6145355776 [file/delete_scheduler.cc:77] Deleted file tests/db_for_testing/test/000234.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 -2023/12/15-18:12:40.841149 6145355776 [db/db_impl/db_impl_open.cc:1977] SstFileManager instance 0x139805ff0 -2023/12/15-18:12:40.841986 6145355776 DB pointer 0x13880c600 -2023/12/15-18:12:40.849334 6147076096 [db/db_impl/db_impl.cc:1085] ------- DUMPING STATS ------- -2023/12/15-18:12:40.849348 6147076096 [db/db_impl/db_impl.cc:1086] -** DB Stats ** -Uptime(secs): 0.1 total, 0.1 interval -Cumulative writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s -Cumulative WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent -Interval writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s -Interval WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Interval stall: 00:00:0.000 H:M:S, 0.0 percent -Write Stall (count): write-buffer-manager-limit-stops: 0, -** Compaction Stats [default] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [default] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376334e8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [default] ** - -** Compaction Stats [inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x137634678#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [inbox] ** - -** Compaction Stats [peers] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [peers] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x137635528#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [peers] ** - -** Compaction Stats [profiles_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.05 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.05 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x137636428#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_encryption_key] ** - -** Compaction Stats [profiles_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.04 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.04 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x137638328#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_key] ** - -** Compaction Stats [devices_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - Sum 2/0 2.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - -** Compaction Stats [devices_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.00 0.00 1 0.001 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x137639358#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_encryption_key] ** - -** Compaction Stats [devices_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - Sum 2/0 2.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - -** Compaction Stats [devices_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13763a248#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_identity_key] ** - -** Compaction Stats [devices_permissions] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.13 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 2/0 2.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_permissions] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13763b158#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_permissions] ** - -** Compaction Stats [scheduled_message] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [scheduled_message] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13763c068#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.1e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [scheduled_message] ** - -** Compaction Stats [all_messages] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 17.37 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 17.37 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x137638fd8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.8e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages] ** - -** Compaction Stats [all_messages_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 3.13 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 3.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13763dc78#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages_time_keyed] ** - -** Compaction Stats [one_time_registration_codes] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.68 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 2/0 2.68 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [one_time_registration_codes] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13763eb88#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [one_time_registration_codes] ** - -** Compaction Stats [profiles_identity_type] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.99 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 0.99 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_type] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13763fa98#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_type] ** - -** Compaction Stats [profiles_permission] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.98 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 0.98 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_permission] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376409a8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_permission] ** - -** Compaction Stats [external_node_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.16 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 2/0 2.16 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376418b8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_identity_key] ** - -** Compaction Stats [external_node_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.16 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 2/0 2.16 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.5 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376427c8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_encryption_key] ** - -** Compaction Stats [all_jobs_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.31 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.31 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_jobs_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376436d8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_jobs_time_keyed] ** - -** Compaction Stats [resources] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.52 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [resources] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376445e8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [resources] ** - -** Compaction Stats [agents] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.94 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.94 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [agents] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376454e8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [agents] ** - -** Compaction Stats [toolkits] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [toolkits] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376463e8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [toolkits] ** - -** Compaction Stats [mesages_to_retry] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [mesages_to_retry] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376472e8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [mesages_to_retry] ** - -** Compaction Stats [message_box_symmetric_keys] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.45 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.45 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376481e8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys] ** - -** Compaction Stats [message_box_symmetric_keys_times] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.46 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.46 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys_times] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x1376490f8#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys_times] ** - -** Compaction Stats [temp_files_inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.57 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [temp_files_inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x13764a008#79839 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [temp_files_inbox] ** - -** Compaction Stats [job_queues] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.27 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.27 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [job_queues] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -I -2023/12/15-18:12:41.256097 6126039040 [db/db_impl/db_impl.cc:490] Shutdown: canceling all background work -2023/12/15-18:12:41.258788 6126039040 [db/db_impl/db_impl.cc:692] Shutdown complete diff --git a/tests/it/db_for_testing/test/LOG.old.1702631691429444 b/tests/it/db_for_testing/test/LOG.old.1702631691429444 deleted file mode 100644 index bf1b3b070..000000000 --- a/tests/it/db_for_testing/test/LOG.old.1702631691429444 +++ /dev/null @@ -1,2258 +0,0 @@ -2023/12/15-18:13:46.334675 6180564992 RocksDB version: 8.1.1 -2023/12/15-18:13:46.335262 6180564992 Compile date 2023-04-06 16:38:52 -2023/12/15-18:13:46.335264 6180564992 DB SUMMARY -2023/12/15-18:13:46.335265 6180564992 DB Session ID: KMML5ADZJ18K43PQR4BT -2023/12/15-18:13:46.335415 6180564992 CURRENT file: CURRENT -2023/12/15-18:13:46.335417 6180564992 IDENTITY file: IDENTITY -2023/12/15-18:13:46.335426 6180564992 MANIFEST file: MANIFEST-000245 size: 21405 Bytes -2023/12/15-18:13:46.335428 6180564992 SST files in tests/db_for_testing/test dir, Total Num: 72, files: 000168.sst 000169.sst 000170.sst 000171.sst 000172.sst 000173.sst 000174.sst 000175.sst 000176.sst -2023/12/15-18:13:46.335430 6180564992 Write Ahead Log file in tests/db_for_testing/test: 000244.log size: 195 ; -2023/12/15-18:13:46.335432 6180564992 Options.error_if_exists: 0 -2023/12/15-18:13:46.335433 6180564992 Options.create_if_missing: 1 -2023/12/15-18:13:46.335434 6180564992 Options.paranoid_checks: 1 -2023/12/15-18:13:46.335435 6180564992 Options.flush_verify_memtable_count: 1 -2023/12/15-18:13:46.335436 6180564992 Options.track_and_verify_wals_in_manifest: 0 -2023/12/15-18:13:46.335437 6180564992 Options.verify_sst_unique_id_in_manifest: 1 -2023/12/15-18:13:46.335438 6180564992 Options.env: 0x10269c050 -2023/12/15-18:13:46.335442 6180564992 Options.fs: PosixFileSystem -2023/12/15-18:13:46.335443 6180564992 Options.info_log: 0x12b685348 -2023/12/15-18:13:46.335444 6180564992 Options.max_file_opening_threads: 16 -2023/12/15-18:13:46.335445 6180564992 Options.statistics: 0x0 -2023/12/15-18:13:46.335446 6180564992 Options.use_fsync: 0 -2023/12/15-18:13:46.335447 6180564992 Options.max_log_file_size: 0 -2023/12/15-18:13:46.335448 6180564992 Options.max_manifest_file_size: 1073741824 -2023/12/15-18:13:46.335449 6180564992 Options.log_file_time_to_roll: 0 -2023/12/15-18:13:46.335449 6180564992 Options.keep_log_file_num: 1000 -2023/12/15-18:13:46.335450 6180564992 Options.recycle_log_file_num: 0 -2023/12/15-18:13:46.335451 6180564992 Options.allow_fallocate: 1 -2023/12/15-18:13:46.335452 6180564992 Options.allow_mmap_reads: 0 -2023/12/15-18:13:46.335453 6180564992 Options.allow_mmap_writes: 0 -2023/12/15-18:13:46.335454 6180564992 Options.use_direct_reads: 0 -2023/12/15-18:13:46.335455 6180564992 Options.use_direct_io_for_flush_and_compaction: 0 -2023/12/15-18:13:46.335456 6180564992 Options.create_missing_column_families: 1 -2023/12/15-18:13:46.335457 6180564992 Options.db_log_dir: -2023/12/15-18:13:46.335457 6180564992 Options.wal_dir: -2023/12/15-18:13:46.335458 6180564992 Options.table_cache_numshardbits: 6 -2023/12/15-18:13:46.335459 6180564992 Options.WAL_ttl_seconds: 0 -2023/12/15-18:13:46.335460 6180564992 Options.WAL_size_limit_MB: 0 -2023/12/15-18:13:46.335461 6180564992 Options.max_write_batch_group_size_bytes: 1048576 -2023/12/15-18:13:46.335462 6180564992 Options.manifest_preallocation_size: 4194304 -2023/12/15-18:13:46.335463 6180564992 Options.is_fd_close_on_exec: 1 -2023/12/15-18:13:46.335464 6180564992 Options.advise_random_on_open: 1 -2023/12/15-18:13:46.335465 6180564992 Options.db_write_buffer_size: 0 -2023/12/15-18:13:46.335466 6180564992 Options.write_buffer_manager: 0x12b685510 -2023/12/15-18:13:46.335466 6180564992 Options.access_hint_on_compaction_start: 1 -2023/12/15-18:13:46.335467 6180564992 Options.random_access_max_buffer_size: 1048576 -2023/12/15-18:13:46.335468 6180564992 Options.use_adaptive_mutex: 0 -2023/12/15-18:13:46.335469 6180564992 Options.rate_limiter: 0x0 -2023/12/15-18:13:46.335470 6180564992 Options.sst_file_manager.rate_bytes_per_sec: 0 -2023/12/15-18:13:46.335471 6180564992 Options.wal_recovery_mode: 2 -2023/12/15-18:13:46.335472 6180564992 Options.enable_thread_tracking: 0 -2023/12/15-18:13:46.335473 6180564992 Options.enable_pipelined_write: 0 -2023/12/15-18:13:46.335474 6180564992 Options.unordered_write: 0 -2023/12/15-18:13:46.335475 6180564992 Options.allow_concurrent_memtable_write: 1 -2023/12/15-18:13:46.335475 6180564992 Options.enable_write_thread_adaptive_yield: 1 -2023/12/15-18:13:46.335476 6180564992 Options.write_thread_max_yield_usec: 100 -2023/12/15-18:13:46.335477 6180564992 Options.write_thread_slow_yield_usec: 3 -2023/12/15-18:13:46.335478 6180564992 Options.row_cache: None -2023/12/15-18:13:46.335479 6180564992 Options.wal_filter: None -2023/12/15-18:13:46.335480 6180564992 Options.avoid_flush_during_recovery: 0 -2023/12/15-18:13:46.335481 6180564992 Options.allow_ingest_behind: 0 -2023/12/15-18:13:46.335481 6180564992 Options.two_write_queues: 0 -2023/12/15-18:13:46.335482 6180564992 Options.manual_wal_flush: 0 -2023/12/15-18:13:46.335483 6180564992 Options.wal_compression: 0 -2023/12/15-18:13:46.335484 6180564992 Options.atomic_flush: 0 -2023/12/15-18:13:46.335485 6180564992 Options.avoid_unnecessary_blocking_io: 0 -2023/12/15-18:13:46.335486 6180564992 Options.persist_stats_to_disk: 0 -2023/12/15-18:13:46.335487 6180564992 Options.write_dbid_to_manifest: 0 -2023/12/15-18:13:46.335487 6180564992 Options.log_readahead_size: 0 -2023/12/15-18:13:46.335488 6180564992 Options.file_checksum_gen_factory: Unknown -2023/12/15-18:13:46.335489 6180564992 Options.best_efforts_recovery: 0 -2023/12/15-18:13:46.335490 6180564992 Options.max_bgerror_resume_count: 2147483647 -2023/12/15-18:13:46.335491 6180564992 Options.bgerror_resume_retry_interval: 1000000 -2023/12/15-18:13:46.335492 6180564992 Options.allow_data_in_errors: 0 -2023/12/15-18:13:46.335493 6180564992 Options.db_host_id: __hostname__ -2023/12/15-18:13:46.335494 6180564992 Options.enforce_single_del_contracts: true -2023/12/15-18:13:46.335495 6180564992 Options.max_background_jobs: 2 -2023/12/15-18:13:46.335496 6180564992 Options.max_background_compactions: -1 -2023/12/15-18:13:46.335496 6180564992 Options.max_subcompactions: 1 -2023/12/15-18:13:46.335497 6180564992 Options.avoid_flush_during_shutdown: 0 -2023/12/15-18:13:46.335498 6180564992 Options.writable_file_max_buffer_size: 1048576 -2023/12/15-18:13:46.335499 6180564992 Options.delayed_write_rate : 16777216 -2023/12/15-18:13:46.335500 6180564992 Options.max_total_wal_size: 0 -2023/12/15-18:13:46.335501 6180564992 Options.delete_obsolete_files_period_micros: 21600000000 -2023/12/15-18:13:46.335502 6180564992 Options.stats_dump_period_sec: 600 -2023/12/15-18:13:46.335503 6180564992 Options.stats_persist_period_sec: 600 -2023/12/15-18:13:46.335504 6180564992 Options.stats_history_buffer_size: 1048576 -2023/12/15-18:13:46.335504 6180564992 Options.max_open_files: -1 -2023/12/15-18:13:46.335505 6180564992 Options.bytes_per_sync: 0 -2023/12/15-18:13:46.335506 6180564992 Options.wal_bytes_per_sync: 0 -2023/12/15-18:13:46.335507 6180564992 Options.strict_bytes_per_sync: 0 -2023/12/15-18:13:46.335508 6180564992 Options.compaction_readahead_size: 0 -2023/12/15-18:13:46.335509 6180564992 Options.max_background_flushes: -1 -2023/12/15-18:13:46.335510 6180564992 Compression algorithms supported: -2023/12/15-18:13:46.335511 6180564992 kZSTD supported: 0 -2023/12/15-18:13:46.335512 6180564992 kZlibCompression supported: 0 -2023/12/15-18:13:46.335513 6180564992 kXpressCompression supported: 0 -2023/12/15-18:13:46.335514 6180564992 kSnappyCompression supported: 0 -2023/12/15-18:13:46.335515 6180564992 kZSTDNotFinalCompression supported: 0 -2023/12/15-18:13:46.335516 6180564992 kLZ4HCCompression supported: 1 -2023/12/15-18:13:46.335517 6180564992 kLZ4Compression supported: 1 -2023/12/15-18:13:46.335518 6180564992 kBZip2Compression supported: 0 -2023/12/15-18:13:46.335524 6180564992 Fast CRC32 supported: Supported on Arm64 -2023/12/15-18:13:46.335525 6180564992 DMutex implementation: pthread_mutex_t -2023/12/15-18:13:46.335632 6180564992 [db/version_set.cc:5662] Recovering from manifest file: tests/db_for_testing/test/MANIFEST-000245 -2023/12/15-18:13:46.335961 6180564992 [db/column_family.cc:621] --------------- Options for column family [default]: -2023/12/15-18:13:46.335965 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.335967 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.335968 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.335969 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.335970 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.335971 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.335972 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.336005 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b638d30) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b6346b8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.336008 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.336009 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.336011 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.336012 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.336013 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.336014 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.336015 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.336015 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.336016 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.336017 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.336018 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.336019 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.336020 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.336021 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336022 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336023 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336024 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.336025 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336026 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336027 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.336028 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.336029 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.336029 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336030 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336031 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336032 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336033 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.336034 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336035 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.336036 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.336037 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.336037 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.336038 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.336039 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.336040 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.336041 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.336042 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.336043 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.336044 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.336045 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.336046 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.336047 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.336048 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.336049 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.336050 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.336051 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.336052 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.336053 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.336054 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.336055 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.336056 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.336058 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.336059 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.336060 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.336061 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.336062 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.336063 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.336069 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.336070 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.336071 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.336073 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.336074 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.336075 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.336076 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.336077 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.336078 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.336078 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.336079 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.336080 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.336081 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.336082 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.336083 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.336084 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.336085 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.336085 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.336086 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.336087 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.336088 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.336089 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.336090 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.336091 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.336092 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.336093 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.336094 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.336094 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.336095 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.336420 6180564992 [db/column_family.cc:621] --------------- Options for column family [inbox]: -2023/12/15-18:13:46.336423 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.336424 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.336425 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.336426 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.336426 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.336427 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.336428 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.336435 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b635620) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b635838 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.336437 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.336437 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.336438 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.336439 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.336440 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.336441 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.336442 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.336443 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.336444 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.336445 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.336445 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.336446 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.336447 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.336448 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336449 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336450 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336451 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.336451 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336452 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336453 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.336454 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.336455 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.336456 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336457 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336457 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336458 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336459 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.336460 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336461 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.336462 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.336463 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.336463 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.336464 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.336465 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.336466 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.336467 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.336468 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.336468 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.336469 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.336470 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.336471 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.336472 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.336473 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.336474 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.336474 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.336475 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.336476 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.336477 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.336478 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.336479 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.336480 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.336481 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.336482 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.336483 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.336483 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.336484 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.336485 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.336487 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.336487 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.336488 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.336489 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.336490 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.336491 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.336492 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.336493 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.336494 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.336494 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.336495 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.336496 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.336497 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.336498 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.336499 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.336499 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.336500 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.336501 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.336502 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.336503 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.336503 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.336504 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.336505 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.336506 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.336507 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.336508 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.336509 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.336510 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.336510 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.336626 6180564992 [db/column_family.cc:621] --------------- Options for column family [peers]: -2023/12/15-18:13:46.336628 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.336629 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.336630 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.336631 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.336632 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.336633 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.336634 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.336640 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b636670) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b6366c8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.336641 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.336642 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.336643 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.336644 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.336645 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.336645 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.336646 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.336647 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.336648 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.336649 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.336650 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.336651 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.336652 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.336652 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336653 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336654 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336655 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.336656 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336657 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336657 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.336660 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.336661 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.336662 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336662 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336663 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336664 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336665 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.336666 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336667 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.336668 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.336668 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.336669 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.336670 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.336671 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.336672 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.336672 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.336673 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.336674 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.336675 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.336676 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.336677 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.336678 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.336678 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.336679 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.336680 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.336681 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.336682 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.336683 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.336684 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.336684 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.336686 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.336687 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.336687 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.336688 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.336689 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.336690 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.336691 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.336692 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.336693 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.336694 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.336695 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.336696 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.336696 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.336697 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.336698 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.336699 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.336700 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.336701 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.336701 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.336702 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.336703 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.336704 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.336705 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.336706 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.336706 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.336707 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.336708 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.336709 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.336710 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.336711 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.336711 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.336712 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.336713 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.336714 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.336715 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.336716 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.336775 6180564992 [db/column_family.cc:621] --------------- Options for column family [profiles_encryption_key]: -2023/12/15-18:13:46.336777 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.336778 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.336779 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.336780 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.336781 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.336782 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.336783 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.336788 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b637570) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b6375c8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.336789 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.336790 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.336791 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.336792 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.336793 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.336794 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.336795 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.336796 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.336796 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.336797 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.336798 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.336799 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.336800 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.336801 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336802 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336802 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336803 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.336804 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336805 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336806 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.336807 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.336807 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.336808 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336809 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336810 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336811 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336812 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.336812 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336813 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.336814 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.336815 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.336816 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.336816 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.336817 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.336818 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.336819 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.336820 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.336821 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.336822 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.336822 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.336823 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.336824 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.336825 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.336826 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.336827 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.336827 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.336828 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.336829 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.336830 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.336831 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.336832 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.336833 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.336834 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.336834 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.336835 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.336836 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.336837 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.336838 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.336839 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.336840 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.336841 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.336848 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.336849 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.336849 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.336850 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.336851 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.336852 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.336853 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.336854 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.336855 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.336855 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.336856 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.336862 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.336863 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.336864 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.336864 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.336865 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.336866 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.336867 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.336868 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.336872 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.336873 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.336874 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.336875 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.336875 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.336876 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.336939 6180564992 [db/column_family.cc:621] --------------- Options for column family [profiles_identity_key]: -2023/12/15-18:13:46.336940 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.336941 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.336944 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.336945 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.336946 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.336946 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.336947 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.336957 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b638480) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b6384d8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.336960 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.336961 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.336962 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.336963 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.336963 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.336964 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.336965 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.336966 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.336967 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.336968 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.336969 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.336969 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.336970 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.336971 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336972 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336973 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336974 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.336975 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336975 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336976 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.336977 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.336978 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.336979 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.336980 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.336980 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.336981 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.336982 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.336983 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.336984 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.336985 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.336986 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.336986 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.336987 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.336988 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.336989 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.336990 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.336991 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.336992 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.336993 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.336993 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.336994 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.336995 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.336996 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.336997 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.336998 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.336999 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.336999 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.337000 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.337001 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.337002 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.337003 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.337004 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.337005 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.337006 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.337007 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.337008 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.337008 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.337009 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.337010 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.337011 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.337012 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.337013 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.337014 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.337015 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.337016 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.337016 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.337017 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.337018 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.337019 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.337020 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.337021 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.337021 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.337022 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.337023 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.337024 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.337025 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.337026 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.337026 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.337027 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.337028 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.337029 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.337030 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.337031 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.337032 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.337032 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.337033 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.337090 6180564992 [db/column_family.cc:621] --------------- Options for column family [devices_encryption_key]: -2023/12/15-18:13:46.337092 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.337093 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.337094 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.337095 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.337096 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.337097 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.337098 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.337103 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b6352c0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b63a508 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.337104 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.337105 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.337105 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.337106 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.337107 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.337108 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.337109 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.337110 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.337111 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.337111 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.337112 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.337113 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.337114 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.337115 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337116 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337116 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337117 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.337118 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337119 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337120 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.337121 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.337121 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.337122 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337123 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337124 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337125 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337126 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.337126 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337127 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.337128 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.337129 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.337130 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.337131 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.337131 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.337132 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.337133 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.337134 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.337135 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.337136 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.337137 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.337137 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.337138 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.337139 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.337140 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.337141 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.337142 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.337143 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.337143 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.337144 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.337145 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.337146 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.337155 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.337156 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.337157 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.337158 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.337158 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.337159 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.337160 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.337161 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.337162 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.337163 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.337164 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.337165 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.337166 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.337166 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.337167 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.337168 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.337169 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.337170 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.337171 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.337172 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.337172 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.337173 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.337174 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.337175 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.337176 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.337176 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.337177 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.337178 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.337179 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.337180 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.337181 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.337182 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.337182 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.337183 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.337184 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.337241 6180564992 [db/column_family.cc:621] --------------- Options for column family [devices_identity_key]: -2023/12/15-18:13:46.337243 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.337244 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.337245 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.337246 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.337247 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.337248 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.337248 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.337254 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b63b3a0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b63b3f8 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.337255 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.337255 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.337256 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.337257 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.337258 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.337259 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.337260 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.337261 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.337262 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.337262 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.337263 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.337264 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.337265 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.337266 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337267 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337268 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337268 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.337269 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337270 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337271 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.337272 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.337273 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.337273 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337274 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337275 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337276 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337277 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.337278 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337279 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.337279 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.337280 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.337281 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.337282 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.337283 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.337283 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.337284 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.337285 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.337286 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.337287 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.337288 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.337289 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.337289 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.337290 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.337291 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.337292 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.337293 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.337294 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.337294 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.337295 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.337296 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.337297 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.337298 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.337299 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.337300 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.337301 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.337301 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.337302 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.337303 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.337304 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.337305 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.337306 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.337307 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.337308 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.337309 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.337309 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.337310 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.337311 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.337312 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.337313 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.337313 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.337314 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.337315 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.337316 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.337317 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.337317 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.337318 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.337319 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.337320 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.337321 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.337322 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.337322 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.337323 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.337324 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.337325 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.337326 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.337327 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.337383 6180564992 [db/column_family.cc:621] --------------- Options for column family [devices_permissions]: -2023/12/15-18:13:46.337385 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.337386 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.337387 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.337388 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.337388 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.337389 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.337390 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.337395 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b63c2b0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b63c308 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.337396 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.337397 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.337398 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.337399 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.337400 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.337401 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.337402 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.337402 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.337403 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.337404 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.337405 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.337406 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.337407 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.337408 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337410 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337411 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337412 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.337413 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337413 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337414 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.337415 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.337416 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.337417 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337418 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337418 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337419 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337420 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.337421 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337422 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.337423 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.337423 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.337424 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.337425 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.337426 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.337427 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.337428 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.337429 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.337429 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.337430 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.337431 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.337432 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.337433 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.337434 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.337435 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.337436 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.337436 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.337437 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.337438 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.337439 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.337440 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.337441 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.337442 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.337443 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.337443 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.337444 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.337445 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.337446 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.337447 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.337448 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.337449 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.337450 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.337451 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.337451 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.337452 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.337453 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.337454 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.337455 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.337456 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.337456 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.337457 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.337458 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.337459 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.337460 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.337460 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.337461 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.337462 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.337463 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.337464 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.337465 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.337466 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.337466 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.337467 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.337468 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.337469 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.337470 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.337471 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.337523 6180564992 [db/column_family.cc:621] --------------- Options for column family [scheduled_message]: -2023/12/15-18:13:46.337525 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.337526 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.337526 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.337527 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.337528 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.337529 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.337530 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.337535 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b63d1c0) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b63d218 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.337536 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.337537 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.337538 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.337538 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.337539 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.337540 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.337541 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.337542 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.337543 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.337544 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.337545 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.337545 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.337546 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.337547 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337548 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337549 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337550 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.337550 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337551 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337552 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.337553 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.337554 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.337555 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337556 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337556 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337557 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337558 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.337559 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337560 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.337560 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.337561 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.337562 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.337563 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.337564 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.337565 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.337565 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.337566 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.337567 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.337568 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.337569 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.337570 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.337570 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.337571 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.337572 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.337573 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.337574 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.337575 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.337575 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.337576 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.337577 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.337578 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.337579 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.337580 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.337581 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.337582 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.337583 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.337583 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.337584 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.337585 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.337586 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.337587 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.337588 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.337589 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.337590 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.337591 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.337591 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.337592 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.337593 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.337594 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.337595 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.337596 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.337596 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.337597 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.337598 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.337599 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.337600 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.337601 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.337601 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.337602 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.337603 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.337604 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.337605 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.337606 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.337608 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.337609 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.337609 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.337662 6180564992 [db/column_family.cc:621] --------------- Options for column family [all_messages]: -2023/12/15-18:13:46.337663 6180564992 Options.comparator: leveldb.BytewiseComparator -2023/12/15-18:13:46.337664 6180564992 Options.merge_operator: None -2023/12/15-18:13:46.337665 6180564992 Options.compaction_filter: None -2023/12/15-18:13:46.337666 6180564992 Options.compaction_filter_factory: None -2023/12/15-18:13:46.337667 6180564992 Options.sst_partitioner_factory: None -2023/12/15-18:13:46.337668 6180564992 Options.memtable_factory: SkipListFactory -2023/12/15-18:13:46.337669 6180564992 Options.table_factory: BlockBasedTable -2023/12/15-18:13:46.337674 6180564992 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x12b63a130) - cache_index_and_filter_blocks: 0 - cache_index_and_filter_blocks_with_high_priority: 1 - pin_l0_filter_and_index_blocks_in_cache: 0 - pin_top_level_index_and_filter: 1 - index_type: 0 - data_block_index_type: 0 - index_shortening: 1 - data_block_hash_table_util_ratio: 0.750000 - checksum: 4 - no_block_cache: 0 - block_cache: 0x12b63a188 - block_cache_name: LRUCache - block_cache_options: - capacity : 8388608 - num_shard_bits : 4 - strict_capacity_limit : 0 - memory_allocator : None - high_pri_pool_ratio: 0.000 - low_pri_pool_ratio: 0.000 - persistent_cache: 0x0 - block_size: 4096 - block_size_deviation: 10 - block_restart_interval: 16 - index_block_restart_interval: 1 - metadata_block_size: 4096 - partition_filters: 0 - use_delta_encoding: 1 - filter_policy: nullptr - whole_key_filtering: 1 - verify_compression: 0 - read_amp_bytes_per_bit: 0 - format_version: 5 - enable_index_compression: 1 - block_align: 0 - max_auto_readahead_size: 262144 - prepopulate_block_cache: 0 - initial_auto_readahead_size: 8192 - num_file_reads_for_auto_readahead: 2 -2023/12/15-18:13:46.337675 6180564992 Options.write_buffer_size: 67108864 -2023/12/15-18:13:46.337675 6180564992 Options.max_write_buffer_number: 2 -2023/12/15-18:13:46.337676 6180564992 Options.compression: NoCompression -2023/12/15-18:13:46.337677 6180564992 Options.bottommost_compression: Disabled -2023/12/15-18:13:46.337678 6180564992 Options.prefix_extractor: nullptr -2023/12/15-18:13:46.337679 6180564992 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2023/12/15-18:13:46.337680 6180564992 Options.num_levels: 7 -2023/12/15-18:13:46.337680 6180564992 Options.min_write_buffer_number_to_merge: 1 -2023/12/15-18:13:46.337681 6180564992 Options.max_write_buffer_number_to_maintain: 0 -2023/12/15-18:13:46.337682 6180564992 Options.max_write_buffer_size_to_maintain: 0 -2023/12/15-18:13:46.337683 6180564992 Options.bottommost_compression_opts.window_bits: -14 -2023/12/15-18:13:46.337684 6180564992 Options.bottommost_compression_opts.level: 32767 -2023/12/15-18:13:46.337685 6180564992 Options.bottommost_compression_opts.strategy: 0 -2023/12/15-18:13:46.337685 6180564992 Options.bottommost_compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337686 6180564992 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337687 6180564992 Options.bottommost_compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337688 6180564992 Options.bottommost_compression_opts.enabled: false -2023/12/15-18:13:46.337689 6180564992 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337689 6180564992 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337690 6180564992 Options.compression_opts.window_bits: -14 -2023/12/15-18:13:46.337691 6180564992 Options.compression_opts.level: 32767 -2023/12/15-18:13:46.337692 6180564992 Options.compression_opts.strategy: 0 -2023/12/15-18:13:46.337693 6180564992 Options.compression_opts.max_dict_bytes: 0 -2023/12/15-18:13:46.337693 6180564992 Options.compression_opts.zstd_max_train_bytes: 0 -2023/12/15-18:13:46.337694 6180564992 Options.compression_opts.use_zstd_dict_trainer: true -2023/12/15-18:13:46.337695 6180564992 Options.compression_opts.parallel_threads: 1 -2023/12/15-18:13:46.337696 6180564992 Options.compression_opts.enabled: false -2023/12/15-18:13:46.337697 6180564992 Options.compression_opts.max_dict_buffer_bytes: 0 -2023/12/15-18:13:46.337698 6180564992 Options.level0_file_num_compaction_trigger: 4 -2023/12/15-18:13:46.337698 6180564992 Options.level0_slowdown_writes_trigger: 20 -2023/12/15-18:13:46.337699 6180564992 Options.level0_stop_writes_trigger: 36 -2023/12/15-18:13:46.337700 6180564992 Options.target_file_size_base: 67108864 -2023/12/15-18:13:46.337701 6180564992 Options.target_file_size_multiplier: 1 -2023/12/15-18:13:46.337702 6180564992 Options.max_bytes_for_level_base: 268435456 -2023/12/15-18:13:46.337702 6180564992 Options.level_compaction_dynamic_level_bytes: 0 -2023/12/15-18:13:46.337703 6180564992 Options.max_bytes_for_level_multiplier: 10.000000 -2023/12/15-18:13:46.337704 6180564992 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2023/12/15-18:13:46.337705 6180564992 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2023/12/15-18:13:46.337706 6180564992 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2023/12/15-18:13:46.337707 6180564992 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2023/12/15-18:13:46.337707 6180564992 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2023/12/15-18:13:46.337708 6180564992 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2023/12/15-18:13:46.337709 6180564992 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2023/12/15-18:13:46.337710 6180564992 Options.max_sequential_skip_in_iterations: 8 -2023/12/15-18:13:46.337711 6180564992 Options.max_compaction_bytes: 1677721600 -2023/12/15-18:13:46.337712 6180564992 Options.ignore_max_compaction_bytes_for_input: true -2023/12/15-18:13:46.337712 6180564992 Options.arena_block_size: 1048576 -2023/12/15-18:13:46.337713 6180564992 Options.soft_pending_compaction_bytes_limit: 68719476736 -2023/12/15-18:13:46.337714 6180564992 Options.hard_pending_compaction_bytes_limit: 274877906944 -2023/12/15-18:13:46.337715 6180564992 Options.disable_auto_compactions: 0 -2023/12/15-18:13:46.337716 6180564992 Options.compaction_style: kCompactionStyleLevel -2023/12/15-18:13:46.337717 6180564992 Options.compaction_pri: kMinOverlappingRatio -2023/12/15-18:13:46.337718 6180564992 Options.compaction_options_universal.size_ratio: 1 -2023/12/15-18:13:46.337719 6180564992 Options.compaction_options_universal.min_merge_width: 2 -2023/12/15-18:13:46.337719 6180564992 Options.compaction_options_universal.max_merge_width: 4294967295 -2023/12/15-18:13:46.337720 6180564992 Options.compaction_options_universal.max_size_amplification_percent: 200 -2023/12/15-18:13:46.337721 6180564992 Options.compaction_options_universal.compression_size_percent: -1 -2023/12/15-18:13:46.337722 6180564992 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2023/12/15-18:13:46.337723 6180564992 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2023/12/15-18:13:46.337724 6180564992 Options.compaction_options_fifo.allow_compaction: 0 -2023/12/15-18:13:46.337725 6180564992 Options.table_properties_collectors: -2023/12/15-18:13:46.337726 6180564992 Options.inplace_update_support: 0 -2023/12/15-18:13:46.337727 6180564992 Options.inplace_update_num_locks: 10000 -2023/12/15-18:13:46.337727 6180564992 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2023/12/15-18:13:46.337728 6180564992 Options.memtable_whole_key_filtering: 0 -2023/12/15-18:13:46.337729 6180564992 Options.memtable_huge_page_size: 0 -2023/12/15-18:13:46.337730 6180564992 Options.bloom_locality: 0 -2023/12/15-18:13:46.337731 6180564992 Options.max_successive_merges: 0 -2023/12/15-18:13:46.337732 6180564992 Options.optimize_filters_for_hits: 0 -2023/12/15-18:13:46.337733 6180564992 Options.paranoid_file_checks: 0 -2023/12/15-18:13:46.337733 6180564992 Options.force_consistency_checks: 1 -2023/12/15-18:13:46.337734 6180564992 Options.report_bg_io_stats: 0 -2023/12/15-18:13:46.337735 6180564992 Options.ttl: 2592000 -2023/12/15-18:13:46.337736 6180564992 Options.periodic_compaction_seconds: 0 -2023/12/15-18:13:46.337737 6180564992 Options.preclude_last_level_data_seconds: 0 -2023/12/15-18:13:46.337738 6180564992 Options.preserve_internal_time_seconds: 0 -2023/12/15-18:13:46.337738 6180564992 Options.enable_blob_files: false -2023/12/15-18:13:46.337739 6180564992 Options.min_blob_size: 0 -2023/12/15-18:13:46.337740 6180564992 Options.blob_file_size: 268435456 -2023/12/15-18:13:46.337741 6180564992 Options.blob_compression_type: NoCompression -2023/12/15-18:13:46.337742 6180564992 Options.enable_blob_garbage_collection: false -2023/12/15-18:13:46.337743 6180564992 Options.blob_garbage_collection_age_cutoff: 0.250000 -2023/12/15-18:13:46.337743 6180564992 Options.blob_garbage_collection_force_threshold: 1.000000 -2023/12/15-18:13:46.337744 6180564992 Options.blob_compaction_readahead_size: 0 -2023/12/15-18:13:46.337745 6180564992 Options.blob_file_starting_level: 0 -2023/12/15-18:13:46.337746 6180564992 Options.experimental_mempurge_threshold: 0.000000 -2023/12/15-18:13:46.337802 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.337857 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.337911 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.337965 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338017 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338071 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338123 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338175 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338228 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338280 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338340 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338390 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338458 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338515 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338569 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338625 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338673 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338722 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338770 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338818 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338866 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338918 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.338972 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339024 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339078 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339135 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339186 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339239 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339288 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339341 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339392 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339446 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339499 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339550 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339603 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339658 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339711 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339763 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339816 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339868 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339922 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.339972 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340025 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340087 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340137 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340190 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340241 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340294 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340345 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340397 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340450 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340501 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340552 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340605 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340658 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340710 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340764 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340817 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340869 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340920 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.340972 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341023 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341072 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341125 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341175 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341227 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341279 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341336 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341385 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341435 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.341487 6180564992 [db/column_family.cc:624] (skipping printing options) -2023/12/15-18:13:46.360793 6180564992 [db/version_set.cc:5713] Recovered from manifest file:tests/db_for_testing/test/MANIFEST-000245 succeeded,manifest_file_number is 245, next_file_number is 247, last_sequence is 179, log_number is 235,prev_log_number is 0,max_column_family is 80,min_log_number_to_keep is 235 -2023/12/15-18:13:46.360799 6180564992 [db/version_set.cc:5722] Column family [default] (ID 0), log number is 235 -2023/12/15-18:13:46.360800 6180564992 [db/version_set.cc:5722] Column family [inbox] (ID 1), log number is 235 -2023/12/15-18:13:46.360801 6180564992 [db/version_set.cc:5722] Column family [peers] (ID 2), log number is 235 -2023/12/15-18:13:46.360802 6180564992 [db/version_set.cc:5722] Column family [profiles_encryption_key] (ID 3), log number is 235 -2023/12/15-18:13:46.360803 6180564992 [db/version_set.cc:5722] Column family [profiles_identity_key] (ID 4), log number is 235 -2023/12/15-18:13:46.360804 6180564992 [db/version_set.cc:5722] Column family [devices_encryption_key] (ID 5), log number is 235 -2023/12/15-18:13:46.360805 6180564992 [db/version_set.cc:5722] Column family [devices_identity_key] (ID 6), log number is 235 -2023/12/15-18:13:46.360806 6180564992 [db/version_set.cc:5722] Column family [devices_permissions] (ID 7), log number is 235 -2023/12/15-18:13:46.360807 6180564992 [db/version_set.cc:5722] Column family [scheduled_message] (ID 8), log number is 235 -2023/12/15-18:13:46.360808 6180564992 [db/version_set.cc:5722] Column family [all_messages] (ID 9), log number is 235 -2023/12/15-18:13:46.360809 6180564992 [db/version_set.cc:5722] Column family [all_messages_time_keyed] (ID 10), log number is 235 -2023/12/15-18:13:46.360810 6180564992 [db/version_set.cc:5722] Column family [one_time_registration_codes] (ID 11), log number is 235 -2023/12/15-18:13:46.360811 6180564992 [db/version_set.cc:5722] Column family [profiles_identity_type] (ID 12), log number is 235 -2023/12/15-18:13:46.360812 6180564992 [db/version_set.cc:5722] Column family [profiles_permission] (ID 13), log number is 235 -2023/12/15-18:13:46.360813 6180564992 [db/version_set.cc:5722] Column family [external_node_identity_key] (ID 14), log number is 235 -2023/12/15-18:13:46.360814 6180564992 [db/version_set.cc:5722] Column family [external_node_encryption_key] (ID 15), log number is 235 -2023/12/15-18:13:46.360815 6180564992 [db/version_set.cc:5722] Column family [all_jobs_time_keyed] (ID 16), log number is 235 -2023/12/15-18:13:46.360816 6180564992 [db/version_set.cc:5722] Column family [resources] (ID 17), log number is 235 -2023/12/15-18:13:46.360817 6180564992 [db/version_set.cc:5722] Column family [agents] (ID 18), log number is 235 -2023/12/15-18:13:46.360817 6180564992 [db/version_set.cc:5722] Column family [toolkits] (ID 19), log number is 235 -2023/12/15-18:13:46.360818 6180564992 [db/version_set.cc:5722] Column family [mesages_to_retry] (ID 20), log number is 235 -2023/12/15-18:13:46.360819 6180564992 [db/version_set.cc:5722] Column family [message_box_symmetric_keys] (ID 21), log number is 235 -2023/12/15-18:13:46.360820 6180564992 [db/version_set.cc:5722] Column family [message_box_symmetric_keys_times] (ID 22), log number is 235 -2023/12/15-18:13:46.360821 6180564992 [db/version_set.cc:5722] Column family [temp_files_inbox] (ID 23), log number is 235 -2023/12/15-18:13:46.360822 6180564992 [db/version_set.cc:5722] Column family [job_queues] (ID 24), log number is 235 -2023/12/15-18:13:46.360823 6180564992 [db/version_set.cc:5722] Column family [cron_queues] (ID 25), log number is 235 -2023/12/15-18:13:46.360824 6180564992 [db/version_set.cc:5722] Column family [agent_my_gpt_profiles_with_access] (ID 26), log number is 235 -2023/12/15-18:13:46.360825 6180564992 [db/version_set.cc:5722] Column family [agent_my_gpt_toolkits_accessible] (ID 27), log number is 235 -2023/12/15-18:13:46.360826 6180564992 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_profiles_with_access] (ID 28), log number is 235 -2023/12/15-18:13:46.360827 6180564992 [db/version_set.cc:5722] Column family [agent_my_gpt_vision_toolkits_accessible] (ID 29), log number is 235 -2023/12/15-18:13:46.360828 6180564992 [db/version_set.cc:5722] Column family [agentid_my_gpt] (ID 30), log number is 235 -2023/12/15-18:13:46.360829 6180564992 [db/version_set.cc:5722] Column family [jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae] (ID 31), log number is 235 -2023/12/15-18:13:46.360830 6180564992 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope] (ID 32), log number is 235 -2023/12/15-18:13:46.360831 6180564992 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history] (ID 33), log number is 235 -2023/12/15-18:13:46.360831 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false] (ID 34), log number is 235 -2023/12/15-18:13:46.360832 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_perms] (ID 35), log number is 235 -2023/12/15-18:13:46.360833 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_unread_list] (ID 36), log number is 235 -2023/12/15-18:13:46.360834 6180564992 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages] (ID 37), log number is 235 -2023/12/15-18:13:46.360835 6180564992 [db/version_set.cc:5722] Column family [jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context] (ID 38), log number is 235 -2023/12/15-18:13:46.360836 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_34e83313-18af-4280-a489-c8e20153a7ae::false_smart_inbox_name] (ID 39), log number is 235 -2023/12/15-18:13:46.360837 6180564992 [db/version_set.cc:5722] Column family [agentid_my_gpt_vision] (ID 40), log number is 235 -2023/12/15-18:13:46.360838 6180564992 [db/version_set.cc:5722] Column family [jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c] (ID 41), log number is 235 -2023/12/15-18:13:46.360839 6180564992 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope] (ID 42), log number is 235 -2023/12/15-18:13:46.360840 6180564992 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history] (ID 43), log number is 235 -2023/12/15-18:13:46.360841 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false] (ID 44), log number is 235 -2023/12/15-18:13:46.360842 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_perms] (ID 45), log number is 235 -2023/12/15-18:13:46.360842 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_unread_list] (ID 46), log number is 235 -2023/12/15-18:13:46.360843 6180564992 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages] (ID 47), log number is 235 -2023/12/15-18:13:46.360844 6180564992 [db/version_set.cc:5722] Column family [jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context] (ID 48), log number is 235 -2023/12/15-18:13:46.360845 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_21533539-fc00-432c-a58a-5e7f50dc230c::false_smart_inbox_name] (ID 49), log number is 235 -2023/12/15-18:13:46.360846 6180564992 [db/version_set.cc:5722] Column family [3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201] (ID 50), log number is 235 -2023/12/15-18:13:46.360847 6180564992 [db/version_set.cc:5722] Column family [jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d] (ID 51), log number is 235 -2023/12/15-18:13:46.360848 6180564992 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope] (ID 52), log number is 235 -2023/12/15-18:13:46.360849 6180564992 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history] (ID 53), log number is 235 -2023/12/15-18:13:46.360850 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false] (ID 54), log number is 235 -2023/12/15-18:13:46.360851 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_perms] (ID 55), log number is 235 -2023/12/15-18:13:46.360851 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_unread_list] (ID 56), log number is 235 -2023/12/15-18:13:46.360852 6180564992 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages] (ID 57), log number is 235 -2023/12/15-18:13:46.360853 6180564992 [db/version_set.cc:5722] Column family [jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context] (ID 58), log number is 235 -2023/12/15-18:13:46.360854 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d::false_smart_inbox_name] (ID 59), log number is 235 -2023/12/15-18:13:46.360855 6180564992 [db/version_set.cc:5722] Column family [655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9] (ID 60), log number is 235 -2023/12/15-18:13:46.360856 6180564992 [db/version_set.cc:5722] Column family [jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580] (ID 61), log number is 235 -2023/12/15-18:13:46.360857 6180564992 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope] (ID 62), log number is 235 -2023/12/15-18:13:46.360858 6180564992 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history] (ID 63), log number is 235 -2023/12/15-18:13:46.360859 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false] (ID 64), log number is 235 -2023/12/15-18:13:46.360860 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_perms] (ID 65), log number is 235 -2023/12/15-18:13:46.360861 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_unread_list] (ID 66), log number is 235 -2023/12/15-18:13:46.360861 6180564992 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages] (ID 67), log number is 235 -2023/12/15-18:13:46.360862 6180564992 [db/version_set.cc:5722] Column family [jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context] (ID 68), log number is 235 -2023/12/15-18:13:46.360863 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c41e715d-f98f-4b16-8530-2784ffd21580::false_smart_inbox_name] (ID 69), log number is 235 -2023/12/15-18:13:46.360864 6180564992 [db/version_set.cc:5722] Column family [d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368] (ID 70), log number is 235 -2023/12/15-18:13:46.360865 6180564992 [db/version_set.cc:5722] Column family [jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1] (ID 71), log number is 235 -2023/12/15-18:13:46.360866 6180564992 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope] (ID 72), log number is 235 -2023/12/15-18:13:46.360867 6180564992 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history] (ID 73), log number is 235 -2023/12/15-18:13:46.360868 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false] (ID 74), log number is 235 -2023/12/15-18:13:46.360869 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_perms] (ID 75), log number is 235 -2023/12/15-18:13:46.360870 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_unread_list] (ID 76), log number is 235 -2023/12/15-18:13:46.360870 6180564992 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages] (ID 77), log number is 235 -2023/12/15-18:13:46.360871 6180564992 [db/version_set.cc:5722] Column family [jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context] (ID 78), log number is 235 -2023/12/15-18:13:46.360872 6180564992 [db/version_set.cc:5722] Column family [job_inbox::jobid_c6ff9307-3965-42e9-9537-4f20f0656af1::false_smart_inbox_name] (ID 79), log number is 235 -2023/12/15-18:13:46.360873 6180564992 [db/version_set.cc:5722] Column family [48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a] (ID 80), log number is 235 -2023/12/15-18:13:46.360911 6180564992 [db/db_impl/db_impl_open.cc:537] DB ID: cd8c8a56-182b-440f-8ebb-d520dc6f6053 -2023/12/15-18:13:46.361750 6180564992 EVENT_LOG_v1 {"time_micros": 1702631626361733, "job": 1, "event": "recovery_started", "wal_files": [244]} -2023/12/15-18:13:46.361754 6180564992 [db/db_impl/db_impl_open.cc:1031] Recovering log #244 mode 2 -2023/12/15-18:13:46.362816 6180564992 EVENT_LOG_v1 {"time_micros": 1702631626362796, "cf_name": "external_node_identity_key", "job": 1, "event": "table_file_creation", "file_number": 248, "file_size": 1107, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 181, "largest_seqno": 181, "table_properties": {"data_size": 108, "index_size": 37, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 28, "raw_average_key_size": 28, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_identity_key", "column_family_id": 14, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631626, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "KMML5ADZJ18K43PQR4BT", "orig_file_number": 248, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:13:46.363181 6180564992 EVENT_LOG_v1 {"time_micros": 1702631626363163, "cf_name": "external_node_encryption_key", "job": 1, "event": "table_file_creation", "file_number": 249, "file_size": 1109, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 180, "largest_seqno": 180, "table_properties": {"data_size": 108, "index_size": 37, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 0, "raw_key_size": 28, "raw_average_key_size": 28, "raw_value_size": 64, "raw_average_value_size": 64, "num_data_blocks": 1, "num_entries": 1, "num_filter_entries": 0, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "", "column_family_name": "external_node_encryption_key", "column_family_id": 15, "comparator": "leveldb.BytewiseComparator", "merge_operator": "nullptr", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1702631626, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cd8c8a56-182b-440f-8ebb-d520dc6f6053", "db_session_id": "KMML5ADZJ18K43PQR4BT", "orig_file_number": 249, "seqno_to_time_mapping": "N/A"}} -2023/12/15-18:13:46.363358 6180564992 EVENT_LOG_v1 {"time_micros": 1702631626363357, "job": 1, "event": "recovery_finished"} -2023/12/15-18:13:46.364486 6180564992 [db/version_set.cc:5180] Creating manifest 251 -2023/12/15-18:13:46.448572 6180564992 [file/delete_scheduler.cc:77] Deleted file tests/db_for_testing/test/000244.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 -2023/12/15-18:13:46.448659 6180564992 [db/db_impl/db_impl_open.cc:1977] SstFileManager instance 0x12b685770 -2023/12/15-18:13:46.449573 6180564992 DB pointer 0x12b8c8400 -2023/12/15-18:13:46.456693 6195163136 [db/db_impl/db_impl.cc:1085] ------- DUMPING STATS ------- -2023/12/15-18:13:46.456705 6195163136 [db/db_impl/db_impl.cc:1086] -** DB Stats ** -Uptime(secs): 0.1 total, 0.1 interval -Cumulative writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s -Cumulative WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent -Interval writes: 1 writes, 2 keys, 1 commit groups, 1.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s -Interval WAL: 1 writes, 0 syncs, 1.00 writes per sync, written: 0.00 GB, 0.00 MB/s -Interval stall: 00:00:0.000 H:M:S, 0.0 percent -Write Stall (count): write-buffer-manager-limit-stops: 0, -** Compaction Stats [default] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [default] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b6346b8#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.9e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [default] ** - -** Compaction Stats [inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b635838#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [inbox] ** - -** Compaction Stats [peers] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [peers] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b6366c8#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [peers] ** - -** Compaction Stats [profiles_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.05 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.05 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b6375c8#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_encryption_key] ** - -** Compaction Stats [profiles_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.04 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.04 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b6384d8#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_key] ** - -** Compaction Stats [devices_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b63a508#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_encryption_key] ** - -** Compaction Stats [devices_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b63b3f8#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_identity_key] ** - -** Compaction Stats [devices_permissions] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.13 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [devices_permissions] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b63c308#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [devices_permissions] ** - -** Compaction Stats [scheduled_message] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [scheduled_message] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b63d218#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [scheduled_message] ** - -** Compaction Stats [all_messages] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 17.37 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 17.37 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b63a188#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 3.1e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages] ** - -** Compaction Stats [all_messages_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 3.13 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 3.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_messages_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b63ee18#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_messages_time_keyed] ** - -** Compaction Stats [one_time_registration_codes] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 2/0 2.68 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 2/0 2.68 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [one_time_registration_codes] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b63fd28#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [one_time_registration_codes] ** - -** Compaction Stats [profiles_identity_type] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.99 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 0.99 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_identity_type] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b640c38#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_identity_type] ** - -** Compaction Stats [profiles_permission] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 0.98 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 0.98 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [profiles_permission] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b641b48#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.7e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [profiles_permission] ** - -** Compaction Stats [external_node_identity_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 3/0 3.24 KB 0.8 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - Sum 3/0 3.24 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - -** Compaction Stats [external_node_identity_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1 0.00 0.00 1 0.001 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b642a58#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_identity_key] ** - -** Compaction Stats [external_node_encryption_key] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 3/0 3.25 KB 0.8 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Sum 3/0 3.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -** Compaction Stats [external_node_encryption_key] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.01 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b643968#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [external_node_encryption_key] ** - -** Compaction Stats [all_jobs_time_keyed] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.31 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.31 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [all_jobs_time_keyed] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b644878#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [all_jobs_time_keyed] ** - -** Compaction Stats [resources] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.52 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [resources] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b645788#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [resources] ** - -** Compaction Stats [agents] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.94 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.94 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [agents] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b646688#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [agents] ** - -** Compaction Stats [toolkits] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [toolkits] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b647588#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [toolkits] ** - -** Compaction Stats [mesages_to_retry] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [mesages_to_retry] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b648488#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [mesages_to_retry] ** - -** Compaction Stats [message_box_symmetric_keys] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.45 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.45 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b649388#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.6e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys] ** - -** Compaction Stats [message_box_symmetric_keys_times] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.46 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.46 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [message_box_symmetric_keys_times] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b64a298#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [message_box_symmetric_keys_times] ** - -** Compaction Stats [temp_files_inbox] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.57 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [temp_files_inbox] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b64b1a8#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [temp_files_inbox] ** - -** Compaction Stats [job_queues] ** -Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - L0 1/0 1.27 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Sum 1/0 1.27 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 - -** Compaction Stats [job_queues] ** -Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - -Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 - -Uptime(secs): 0.1 total, 0.1 interval -Flush(GB): cumulative 0.000, interval 0.000 -AddFile(GB): cumulative 0.000, interval 0.000 -AddFile(Total Files): cumulative 0, interval 0 -AddFile(L0 Files): cumulative 0, interval 0 -AddFile(Keys): cumulative 0, interval 0 -Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds -Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0, Block cache LRUCache@0x12b64c0a8#80012 capacity: 8.00 MB usage: 0.08 KB table_size: 256 occupancy: 87 collections: 1 last_copies: 0 last_secs: 2.5e-05 secs_since: 0 -Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) - -** File Read Latency Histogram By Level [job_queues] ** - -** Compaction Stats [cron_queues] * -2023/12/15-18:13:46.869079 6187003904 [db/db_impl/db_impl.cc:490] Shutdown: canceling all background work -2023/12/15-18:13:46.872194 6187003904 [db/db_impl/db_impl.cc:692] Shutdown complete diff --git a/tests/it/db_for_testing/test/MANIFEST-000257 b/tests/it/db_for_testing/test/MANIFEST-000257 deleted file mode 100644 index 0789c879c..000000000 Binary files a/tests/it/db_for_testing/test/MANIFEST-000257 and /dev/null differ diff --git a/tests/it/db_for_testing/test/OPTIONS-000253 b/tests/it/db_for_testing/test/OPTIONS-000253 deleted file mode 100644 index a9d16dd79..000000000 --- a/tests/it/db_for_testing/test/OPTIONS-000253 +++ /dev/null @@ -1,8678 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=8.1.1 - options_file_version=1.1 - -[DBOptions] - max_background_flushes=-1 - compaction_readahead_size=0 - strict_bytes_per_sync=false - wal_bytes_per_sync=0 - max_open_files=-1 - stats_history_buffer_size=1048576 - max_total_wal_size=0 - stats_persist_period_sec=600 - stats_dump_period_sec=600 - avoid_flush_during_shutdown=false - max_subcompactions=1 - bytes_per_sync=0 - delayed_write_rate=16777216 - max_background_compactions=-1 - max_background_jobs=2 - delete_obsolete_files_period_micros=21600000000 - writable_file_max_buffer_size=1048576 - file_checksum_gen_factory=nullptr - allow_data_in_errors=false - max_bgerror_resume_count=2147483647 - best_efforts_recovery=false - write_dbid_to_manifest=false - atomic_flush=false - wal_compression=kNoCompression - manual_wal_flush=false - two_write_queues=false - avoid_flush_during_recovery=false - dump_malloc_stats=false - info_log_level=INFO_LEVEL - write_thread_slow_yield_usec=3 - allow_ingest_behind=false - fail_if_options_file_error=false - persist_stats_to_disk=false - WAL_ttl_seconds=0 - bgerror_resume_retry_interval=1000000 - allow_concurrent_memtable_write=true - paranoid_checks=true - WAL_size_limit_MB=0 - lowest_used_cache_tier=kNonVolatileBlockTier - keep_log_file_num=1000 - table_cache_numshardbits=6 - max_file_opening_threads=16 - use_fsync=false - unordered_write=false - random_access_max_buffer_size=1048576 - log_readahead_size=0 - enable_pipelined_write=false - wal_recovery_mode=kPointInTimeRecovery - db_write_buffer_size=0 - allow_2pc=false - skip_checking_sst_file_sizes_on_db_open=false - skip_stats_update_on_db_open=false - recycle_log_file_num=0 - db_host_id=__hostname__ - access_hint_on_compaction_start=NORMAL - verify_sst_unique_id_in_manifest=true - track_and_verify_wals_in_manifest=false - error_if_exists=false - manifest_preallocation_size=4194304 - is_fd_close_on_exec=true - enable_write_thread_adaptive_yield=true - enable_thread_tracking=false - avoid_unnecessary_blocking_io=false - allow_fallocate=true - max_log_file_size=0 - advise_random_on_open=true - create_missing_column_families=true - max_write_batch_group_size_bytes=1048576 - use_adaptive_mutex=false - wal_filter=nullptr - create_if_missing=true - enforce_single_del_contracts=true - allow_mmap_writes=false - log_file_time_to_roll=0 - use_direct_io_for_flush_and_compaction=false - flush_verify_memtable_count=true - max_manifest_file_size=1073741824 - write_thread_max_yield_usec=100 - use_direct_reads=false - allow_mmap_reads=false - - -[CFOptions "default"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "inbox"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "inbox"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "peers"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "peers"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_encryption_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_encryption_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_identity_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_identity_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "devices_encryption_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "devices_encryption_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "devices_identity_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "devices_identity_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "devices_permissions"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "devices_permissions"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "scheduled_message"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "scheduled_message"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "all_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "all_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "all_messages_time_keyed"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "all_messages_time_keyed"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "one_time_registration_codes"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "one_time_registration_codes"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_identity_type"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_identity_type"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_permission"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_permission"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "external_node_identity_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "external_node_identity_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "external_node_encryption_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "external_node_encryption_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "all_jobs_time_keyed"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "all_jobs_time_keyed"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "resources"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "resources"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agents"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agents"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "toolkits"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "toolkits"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mesages_to_retry"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "mesages_to_retry"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "message_box_symmetric_keys"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "message_box_symmetric_keys"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "message_box_symmetric_keys_times"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "message_box_symmetric_keys_times"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "temp_files_inbox"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "temp_files_inbox"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_queues"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_queues"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "cron_queues"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "cron_queues"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_profiles_with_access"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_profiles_with_access"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_toolkits_accessible"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_toolkits_accessible"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_vision_profiles_with_access"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_vision_profiles_with_access"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_vision_toolkits_accessible"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_vision_toolkits_accessible"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agentid_my_gpt"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agentid_my_gpt"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agentid_my_gpt_vision"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agentid_my_gpt_vision"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/tests/it/db_for_testing/test/OPTIONS-000259 b/tests/it/db_for_testing/test/OPTIONS-000259 deleted file mode 100644 index a9d16dd79..000000000 --- a/tests/it/db_for_testing/test/OPTIONS-000259 +++ /dev/null @@ -1,8678 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=8.1.1 - options_file_version=1.1 - -[DBOptions] - max_background_flushes=-1 - compaction_readahead_size=0 - strict_bytes_per_sync=false - wal_bytes_per_sync=0 - max_open_files=-1 - stats_history_buffer_size=1048576 - max_total_wal_size=0 - stats_persist_period_sec=600 - stats_dump_period_sec=600 - avoid_flush_during_shutdown=false - max_subcompactions=1 - bytes_per_sync=0 - delayed_write_rate=16777216 - max_background_compactions=-1 - max_background_jobs=2 - delete_obsolete_files_period_micros=21600000000 - writable_file_max_buffer_size=1048576 - file_checksum_gen_factory=nullptr - allow_data_in_errors=false - max_bgerror_resume_count=2147483647 - best_efforts_recovery=false - write_dbid_to_manifest=false - atomic_flush=false - wal_compression=kNoCompression - manual_wal_flush=false - two_write_queues=false - avoid_flush_during_recovery=false - dump_malloc_stats=false - info_log_level=INFO_LEVEL - write_thread_slow_yield_usec=3 - allow_ingest_behind=false - fail_if_options_file_error=false - persist_stats_to_disk=false - WAL_ttl_seconds=0 - bgerror_resume_retry_interval=1000000 - allow_concurrent_memtable_write=true - paranoid_checks=true - WAL_size_limit_MB=0 - lowest_used_cache_tier=kNonVolatileBlockTier - keep_log_file_num=1000 - table_cache_numshardbits=6 - max_file_opening_threads=16 - use_fsync=false - unordered_write=false - random_access_max_buffer_size=1048576 - log_readahead_size=0 - enable_pipelined_write=false - wal_recovery_mode=kPointInTimeRecovery - db_write_buffer_size=0 - allow_2pc=false - skip_checking_sst_file_sizes_on_db_open=false - skip_stats_update_on_db_open=false - recycle_log_file_num=0 - db_host_id=__hostname__ - access_hint_on_compaction_start=NORMAL - verify_sst_unique_id_in_manifest=true - track_and_verify_wals_in_manifest=false - error_if_exists=false - manifest_preallocation_size=4194304 - is_fd_close_on_exec=true - enable_write_thread_adaptive_yield=true - enable_thread_tracking=false - avoid_unnecessary_blocking_io=false - allow_fallocate=true - max_log_file_size=0 - advise_random_on_open=true - create_missing_column_families=true - max_write_batch_group_size_bytes=1048576 - use_adaptive_mutex=false - wal_filter=nullptr - create_if_missing=true - enforce_single_del_contracts=true - allow_mmap_writes=false - log_file_time_to_roll=0 - use_direct_io_for_flush_and_compaction=false - flush_verify_memtable_count=true - max_manifest_file_size=1073741824 - write_thread_max_yield_usec=100 - use_direct_reads=false - allow_mmap_reads=false - - -[CFOptions "default"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "inbox"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "inbox"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "peers"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "peers"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_encryption_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_encryption_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_identity_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_identity_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "devices_encryption_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "devices_encryption_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "devices_identity_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "devices_identity_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "devices_permissions"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "devices_permissions"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "scheduled_message"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "scheduled_message"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "all_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "all_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "all_messages_time_keyed"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "all_messages_time_keyed"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "one_time_registration_codes"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "one_time_registration_codes"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_identity_type"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_identity_type"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "profiles_permission"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "profiles_permission"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "external_node_identity_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "external_node_identity_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "external_node_encryption_key"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "external_node_encryption_key"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "all_jobs_time_keyed"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "all_jobs_time_keyed"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "resources"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "resources"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agents"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agents"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "toolkits"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "toolkits"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mesages_to_retry"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "mesages_to_retry"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "message_box_symmetric_keys"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "message_box_symmetric_keys"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "message_box_symmetric_keys_times"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "message_box_symmetric_keys_times"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "temp_files_inbox"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "temp_files_inbox"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_queues"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_queues"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "cron_queues"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "cron_queues"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_profiles_with_access"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_profiles_with_access"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_toolkits_accessible"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_toolkits_accessible"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_vision_profiles_with_access"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_vision_profiles_with_access"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agent_my_gpt_vision_toolkits_accessible"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agent_my_gpt_vision_toolkits_accessible"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agentid_my_gpt"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agentid_my_gpt"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_34e83313-18af-4280-a489-c8e20153a7ae"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_34e83313-18af-4280-a489-c8e20153a7ae_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_34e83313-18af-4280-a489-c8e20153a7ae\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "agentid_my_gpt_vision"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "agentid_my_gpt_vision"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_21533539-fc00-432c-a58a-5e7f50dc230c"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_21533539-fc00-432c-a58a-5e7f50dc230c_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_21533539-fc00-432c-a58a-5e7f50dc230c\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "3a56790f6a1cf08347dd15a61c9b6a1c2c7e2e2be268245e63d7bf07470c5201"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_6b697529-ac27-461b-b05a-e49cbcc78a1d\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "655ddec633f2e88f7d978a1eb9fccdfb6e303a7951a663b7d7dbcb10be80dbb9"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_c41e715d-f98f-4b16-8530-2784ffd21580"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c41e715d-f98f-4b16-8530-2784ffd21580_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c41e715d-f98f-4b16-8530-2784ffd21580\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "d44070d9abb5c19ab6ed62d048bd9ca6158e3790bb7fdd5bf2f5d41082ced368"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobtopic_jobid_c6ff9307-3965-42e9-9537-4f20f0656af1"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_scope"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_step_history"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_perms"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_perms"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_unread_list"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_unread_list"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_unprocessed_messages"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "jobid_c6ff9307-3965-42e9-9537-4f20f0656af1_execution_context"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_smart_inbox_name"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "job_inbox\:\:jobid_c6ff9307-3965-42e9-9537-4f20f0656af1\:\:false_smart_inbox_name"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a"] - memtable_protection_bytes_per_key=0 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - blob_garbage_collection_age_cutoff=0.250000 - blob_compression_type=kNoCompression - prepopulate_blob_cache=kDisable - blob_compaction_readahead_size=0 - level0_stop_writes_trigger=36 - min_blob_size=0 - last_level_temperature=kUnknown - compaction_options_universal={allow_trivial_move=false;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;compression_size_percent=-1;max_size_amplification_percent=200;incremental=false;max_merge_width=4294967295;size_ratio=1;} - target_file_size_base=67108864 - ignore_max_compaction_bytes_for_input=true - memtable_whole_key_filtering=false - blob_file_starting_level=0 - soft_pending_compaction_bytes_limit=68719476736 - max_write_buffer_number=2 - ttl=2592000 - compaction_options_fifo={allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - check_flush_compaction_key_order=true - memtable_huge_page_size=0 - max_successive_merges=0 - inplace_update_num_locks=10000 - enable_blob_garbage_collection=false - arena_block_size=1048576 - bottommost_compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - target_file_size_multiplier=1 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - level0_slowdown_writes_trigger=20 - compression=kNoCompression - level0_file_num_compaction_trigger=4 - prefix_extractor=nullptr - max_bytes_for_level_multiplier=10.000000 - write_buffer_size=67108864 - disable_auto_compactions=false - max_compaction_bytes=1677721600 - compression_opts={use_zstd_dict_trainer=true;enabled=false;parallel_threads=1;zstd_max_train_bytes=0;max_dict_bytes=0;strategy=0;max_dict_buffer_bytes=0;level=32767;window_bits=-14;} - hard_pending_compaction_bytes_limit=274877906944 - blob_file_size=268435456 - periodic_compaction_seconds=0 - paranoid_file_checks=false - experimental_mempurge_threshold=0.000000 - memtable_prefix_bloom_size_ratio=0.000000 - max_bytes_for_level_base=268435456 - max_sequential_skip_in_iterations=8 - report_bg_io_stats=false - sst_partitioner_factory=nullptr - compaction_pri=kMinOverlappingRatio - compaction_style=kCompactionStyleLevel - compaction_filter_factory=nullptr - compaction_filter=nullptr - memtable_factory=SkipListFactory - comparator=leveldb.BytewiseComparator - bloom_locality=0 - min_write_buffer_number_to_merge=1 - table_factory=BlockBasedTable - max_write_buffer_size_to_maintain=0 - max_write_buffer_number_to_maintain=0 - preserve_internal_time_seconds=0 - force_consistency_checks=true - optimize_filters_for_hits=false - merge_operator=nullptr - num_levels=7 - level_compaction_dynamic_file_size=true - memtable_insert_with_hint_prefix_extractor=nullptr - level_compaction_dynamic_level_bytes=false - preclude_last_level_data_seconds=0 - inplace_update_support=false - -[TableOptions/BlockBasedTable "48e9a36d8d898e68b7019ad58f4b92b7adacf38bb8fc53516b6fdca19b94428a"] - num_file_reads_for_auto_readahead=2 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - read_amp_bytes_per_bit=0 - verify_compression=false - format_version=5 - optimize_filters_for_memory=false - partition_filters=false - detect_filter_construct_corruption=false - initial_auto_readahead_size=8192 - max_auto_readahead_size=262144 - enable_index_compression=true - checksum=kXXH3 - index_block_restart_interval=1 - pin_top_level_index_and_filter=true - block_align=false - block_size=4096 - index_type=kBinarySearch - filter_policy=nullptr - metadata_block_size=4096 - no_block_cache=false - index_shortening=kShortenSeparators - whole_key_filtering=true - block_size_deviation=10 - data_block_index_type=kDataBlockBinarySearch - data_block_hash_table_util_ratio=0.750000 - cache_index_and_filter_blocks=false - prepopulate_block_cache=kDisable - block_restart_interval=16 - pin_l0_filter_and_index_blocks_in_cache=false - cache_index_and_filter_blocks_with_high_priority=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/tests/it/db_inbox_tests.rs b/tests/it/db_inbox_tests.rs index 07502f16a..b2a926360 100644 --- a/tests/it/db_inbox_tests.rs +++ b/tests/it/db_inbox_tests.rs @@ -1,6 +1,6 @@ use shinkai_message_primitives::schemas::inbox_name::InboxName; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_message_primitives::schemas::shinkai_time::ShinkaiTime; +use shinkai_message_primitives::schemas::shinkai_time::ShinkaiStringTime; use shinkai_message_primitives::shinkai_message::shinkai_message::{ MessageBody, MessageData, ShinkaiMessage, ShinkaiVersion, }; diff --git a/tests/it/node_simple_ux_tests.rs b/tests/it/node_simple_ux_tests.rs index ef81c2eca..991668aea 100644 --- a/tests/it/node_simple_ux_tests.rs +++ b/tests/it/node_simple_ux_tests.rs @@ -1,8 +1,9 @@ +use super::utils::test_boilerplate::run_test_one_node_network; use async_channel::{bounded, Receiver, Sender}; use shinkai_message_primitives::schemas::agents::serialized_agent::{OpenAI, SerializedAgent}; use shinkai_message_primitives::schemas::inbox_name::InboxName; use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; -use shinkai_message_primitives::schemas::shinkai_time::ShinkaiTime; +use shinkai_message_primitives::schemas::shinkai_time::ShinkaiStringTime; use shinkai_message_primitives::shinkai_message::shinkai_message_schemas::{JobMessage, MessageSchemaType}; use shinkai_message_primitives::shinkai_utils::encryption::{ clone_static_secret_key, unsafe_deterministic_encryption_keypair, EncryptionMethod, @@ -16,7 +17,6 @@ use shinkai_message_primitives::shinkai_utils::utils::hash_string; use shinkai_node::network::node::NodeCommand; use shinkai_node::network::node_api::APIError; use shinkai_node::network::Node; -use super::utils::test_boilerplate::run_test_one_node_network; use std::fs; use std::net::{IpAddr, Ipv4Addr}; use std::path::Path; @@ -24,7 +24,8 @@ use std::{net::SocketAddr, time::Duration}; use tokio::runtime::Runtime; use super::utils::node_test_api::{ - api_agent_registration, api_create_job, api_message_job, api_registration_device_node_profile_main, api_initial_registration_with_no_code_for_device, + api_agent_registration, api_create_job, api_initial_registration_with_no_code_for_device, api_message_job, + api_registration_device_node_profile_main, }; use super::utils; @@ -60,8 +61,6 @@ fn simple_node_registration_test() { ) .await; } - - }) }); -} \ No newline at end of file +} diff --git a/tests/it/resources_tests.rs b/tests/it/resources_tests.rs index f30499fbc..4a3d2bfb4 100644 --- a/tests/it/resources_tests.rs +++ b/tests/it/resources_tests.rs @@ -2,14 +2,15 @@ use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; use shinkai_message_primitives::shinkai_utils::shinkai_logging::init_tracing; use shinkai_node::agent::file_parsing::ParsingHelper; use shinkai_node::db::ShinkaiDB; -use shinkai_vector_resources::base_vector_resources::BaseVectorResource; use shinkai_vector_resources::data_tags::DataTag; -use shinkai_vector_resources::document_resource::DocumentVectorResource; use shinkai_vector_resources::embedding_generator::{EmbeddingGenerator, RemoteEmbeddingGenerator}; use shinkai_vector_resources::resource_errors::VRError; -use shinkai_vector_resources::source::{SourceReference, VRSource}; +use shinkai_vector_resources::source::{SourceFile, SourceFileMap, SourceFileType, SourceReference, VRSource}; use shinkai_vector_resources::unstructured::unstructured_api::UnstructuredAPI; -use shinkai_vector_resources::vector_resource::VectorResource; +use shinkai_vector_resources::vector_resource::BaseVectorResource; +use shinkai_vector_resources::vector_resource::DocumentVectorResource; +use shinkai_vector_resources::vector_resource::*; +use std::collections::HashMap; use std::fs; use std::path::Path; use tokio::runtime::Runtime; @@ -20,36 +21,46 @@ fn setup() { } fn default_test_profile() -> ShinkaiName { - ShinkaiName::new("@@alice.shinkai/profileName".to_string()).unwrap() + ShinkaiName::new("@@localhost.shinkai/profileName".to_string()).unwrap() } -fn get_shinkai_intro_doc(generator: &RemoteEmbeddingGenerator, data_tags: &Vec) -> DocumentVectorResource { +pub async fn get_shinkai_intro_doc_async( + generator: &RemoteEmbeddingGenerator, + data_tags: &Vec, +) -> Result<(DocumentVectorResource, SourceFileMap), VRError> { // Read the pdf from file into a buffer - let buffer = std::fs::read("files/shinkai_intro.pdf") - .map_err(|_| VRError::FailedPDFParsing) - .unwrap(); + let source_file_name = "shinkai_intro.pdf"; + let buffer = std::fs::read(format!("files/{}", source_file_name.clone())).map_err(|_| VRError::FailedPDFParsing)?; + + let desc = "An initial introduction to the Shinkai Network."; + let resource = ParsingHelper::parse_file_into_resource( + buffer.clone(), + generator, + "shinkai_intro.pdf".to_string(), + Some(desc.to_string()), + data_tags, + 500, + UnstructuredAPI::new_default(), + ) + .await + .unwrap(); + + let file_type = SourceFileType::detect_file_type(&source_file_name).unwrap(); + let source_file = SourceFile::new_standard_source_file(source_file_name.to_string(), file_type, buffer, None); + let mut map = HashMap::new(); + map.insert(VRPath::root(), source_file); + Ok((resource.as_document_resource_cloned().unwrap(), SourceFileMap::new(map))) +} + +pub fn get_shinkai_intro_doc(generator: &RemoteEmbeddingGenerator, data_tags: &Vec) -> DocumentVectorResource { // Create a new Tokio runtime let rt = Runtime::new().unwrap(); - // Use block_on to run the async-based batched embedding generation logic - let resource = rt - .block_on(async { - let desc = "An initial introduction to the Shinkai Network."; - return ParsingHelper::parse_file_into_resource( - buffer, - generator, - "shinkai_intro.pdf".to_string(), - Some(desc.to_string()), - data_tags, - 500, - UnstructuredAPI::new_default(), - ) - .await; - }) - .unwrap(); + // Use block_on to run the async-based get_shinkai_intro_doc_async function + let (resource, _) = rt.block_on(get_shinkai_intro_doc_async(generator, data_tags)).unwrap(); - resource.as_document_resource_cloned().unwrap() + resource } #[test] @@ -70,7 +81,7 @@ fn test_pdf_parsed_document_resource_vector_search() { let res = doc.vector_search(query_embedding, 1); assert_eq!( "Shinkai Network Manifesto (Early Preview) Robert Kornacki rob@shinkai.com Nicolas Arqueros", - res[0].node.get_text_content().unwrap() + res[0].node.get_text_content().unwrap().to_string() ); let query_string = "What about up-front costs?"; @@ -78,7 +89,7 @@ fn test_pdf_parsed_document_resource_vector_search() { let res = doc.vector_search(query_embedding, 1); assert_eq!( "No longer will we need heavy up-front costs to build apps that allow users to use their money/data to interact with others in an extremely limited experience (while also taking away control from the user), but instead we will build the underlying architecture which unlocks the ability for the user’s various AI agents to go about performing everything they need done and connecting all of their devices/data together.", - res[0].node.get_text_content().unwrap() + res[0].node.get_text_content().unwrap().to_string() ); let query_string = "Does this relate to crypto?"; @@ -86,7 +97,7 @@ fn test_pdf_parsed_document_resource_vector_search() { let res = doc.vector_search(query_embedding, 1); assert_eq!( "With lessons derived from the P2P nature of blockchains, we in fact have all of the core primitives at hand to build a new AI-coordinated computing paradigm that takes decentralization and user-privacy seriously while offering native integration into the modern crypto stack. This paradigm is unlocked via developing a novel P2P messaging network, Shinkai, which connects all of their devices together and uses LLM agents as the engine that processes all human input. This node will rival the", - res[0].node.get_text_content().unwrap() + res[0].node.get_text_content().unwrap().to_string() ); } @@ -129,7 +140,8 @@ fn test_multi_resource_db_vector_search() { let mut doc = DocumentVectorResource::new_empty( "3 Animal Facts", Some("A bunch of facts about animals and wildlife"), - VRSource::new_uri_ref("animalwildlife.com"), + VRSource::new_uri_ref("animalwildlife.com", None), + true, ); doc.set_embedding_model_used(generator.model_type()); // Not required, but good practice @@ -180,7 +192,7 @@ fn test_multi_resource_db_vector_search() { let query = generator.generate_embedding_default_blocking("Camels").unwrap(); let ret_nodes = shinkai_db.vector_search(query, 10, 10, &profile).unwrap(); let ret_node = ret_nodes.get(0).unwrap(); - assert_eq!(fact2.clone(), &ret_node.node.get_text_content().unwrap()); + assert_eq!(fact2.clone(), &ret_node.node.get_text_content().unwrap().to_string()); // Camel Node vector search let query = generator @@ -190,7 +202,7 @@ fn test_multi_resource_db_vector_search() { let ret_node = ret_nodes.get(0).unwrap(); assert_eq!( "With lessons derived from the P2P nature of blockchains, we in fact have all of the core primitives at hand to build a new AI-coordinated computing paradigm that takes decentralization and user-privacy seriously while offering native integration into the modern crypto stack. This paradigm is unlocked via developing a novel P2P messaging network, Shinkai, which connects all of their devices together and uses LLM agents as the engine that processes all human input. This node will rival the", - &ret_node.node.get_text_content().unwrap() + &ret_node.node.get_text_content().unwrap().to_string() ); // // Camel Node proximity vector search @@ -199,9 +211,9 @@ fn test_multi_resource_db_vector_search() { // let ret_node = ret_nodes.get(0).unwrap(); // let ret_node2 = ret_nodes.get(1).unwrap(); // let ret_node3 = ret_nodes.get(2).unwrap(); - // assert_eq!(fact1.clone(), &ret_node.node.get_text_content().unwrap()); - // assert_eq!(fact2.clone(), &ret_node2.node.get_text_content().unwrap()); - // assert_eq!(fact3.clone(), &ret_node3.node.get_text_content().unwrap()); + // assert_eq!(fact1.clone(), &ret_node.node.get_text_content().unwrap().to_string()); + // assert_eq!(fact2.clone(), &ret_node2.node.get_text_content().unwrap().to_string()); + // assert_eq!(fact3.clone(), &ret_node3.node.get_text_content().unwrap().to_string()); // Animal tolerance range vector search let query = generator @@ -214,8 +226,8 @@ fn test_multi_resource_db_vector_search() { let ret_node = ret_nodes.get(0).unwrap(); let ret_node2 = ret_nodes.get(1).unwrap(); - assert_eq!(fact1.clone(), &ret_node.node.get_text_content().unwrap()); - assert_eq!(fact2.clone(), &ret_node2.node.get_text_content().unwrap()); + assert_eq!(fact1.clone(), &ret_node.node.get_text_content().unwrap().to_string()); + assert_eq!(fact2.clone(), &ret_node2.node.get_text_content().unwrap().to_string()); } #[test] diff --git a/tests/it/vec_fs_tests.rs b/tests/it/vec_fs_tests.rs new file mode 100644 index 000000000..7afa5513b --- /dev/null +++ b/tests/it/vec_fs_tests.rs @@ -0,0 +1,170 @@ +use super::resources_tests::get_shinkai_intro_doc_async; +use serde_json::Value as JsonValue; +use shinkai_message_primitives::schemas::shinkai_name::ShinkaiName; +use shinkai_node::vector_fs::vector_fs_internals::VectorFSInternals; +use shinkai_node::vector_fs::vector_fs_reader::VFSReader; +use shinkai_node::vector_fs::vector_fs_types::DistributionOrigin; +use shinkai_node::vector_fs::vector_fs_writer::VFSWriter; +use shinkai_node::vector_fs::{db::fs_db::VectorFSDB, vector_fs::VectorFS, vector_fs_error::VectorFSError}; +use shinkai_vector_resources::embedding_generator::{EmbeddingGenerator, RemoteEmbeddingGenerator}; +use shinkai_vector_resources::model_type::{EmbeddingModelType, TextEmbeddingsInference}; +use shinkai_vector_resources::vector_resource::{ + BaseVectorResource, VRPath, VectorResource, VectorResourceCore, VectorResourceSearch, +}; +use std::collections::HashMap; +use std::fs; +use std::path::Path; + +fn setup() { + let path = Path::new("db_tests/"); + let _ = fs::remove_dir_all(&path); +} + +fn default_test_profile() -> ShinkaiName { + ShinkaiName::new("@@localhost.shinkai/profileName".to_string()).unwrap() +} + +fn node_name() -> ShinkaiName { + ShinkaiName::new("@@localhost.shinkai".to_string()).unwrap() +} + +fn setup_default_vec_fs() -> VectorFS { + let generator = RemoteEmbeddingGenerator::new_default(); + let fs_db_path = format!("db_tests/{}", "vec_fs"); + let profile_list = vec![default_test_profile()]; + let supported_embedding_models = vec![EmbeddingModelType::TextEmbeddingsInference( + TextEmbeddingsInference::AllMiniLML6v2, + )]; + + VectorFS::new( + generator, + supported_embedding_models, + profile_list, + &fs_db_path, + node_name(), + ) + .unwrap() +} + +#[tokio::test] +async fn test_vector_fs_initializes_new_profile_automatically() { + setup(); + let generator = RemoteEmbeddingGenerator::new_default(); + let mut vector_fs = setup_default_vec_fs(); + + let fs_internals = vector_fs._get_profile_fs_internals(&default_test_profile()); + assert!(fs_internals.is_ok()) +} + +#[tokio::test] +async fn test_vector_fs_saving_reading() { + setup(); + let generator = RemoteEmbeddingGenerator::new_default(); + let mut vector_fs = setup_default_vec_fs(); + + let path = VRPath::new(); + let writer = vector_fs + .new_writer(default_test_profile(), path.clone(), default_test_profile()) + .unwrap(); + let folder_name = "first_folder"; + vector_fs.create_new_folder(&writer, folder_name).unwrap(); + + // Validate new folder path points to an entry at all (not empty), then specifically a folder, and finally not to an item. + let folder_path = path.push_cloned(folder_name.to_string()); + assert!(vector_fs + ._validate_path_points_to_entry(folder_path.clone(), &writer.profile) + .is_ok()); + assert!(vector_fs + ._validate_path_points_to_folder(folder_path.clone(), &writer.profile) + .is_ok()); + assert!(vector_fs + ._validate_path_points_to_item(folder_path.clone(), &writer.profile) + .is_err()); + + // Create a Vector Resource and source file to be added into the VectorFS + let (doc_resource, source_file_map) = get_shinkai_intro_doc_async(&generator, &vec![]).await.unwrap(); + let resource = BaseVectorResource::Document(doc_resource); + let writer = vector_fs + .new_writer(default_test_profile(), folder_path.clone(), default_test_profile()) + .unwrap(); + vector_fs + .save_vector_resource_in_folder( + &writer, + resource.clone(), + Some(source_file_map.clone()), + DistributionOrigin::None, + ) + .unwrap(); + + // Validate new item path points to an entry at all (not empty), then specifically an item, and finally not to a folder. + let item_path = folder_path.push_cloned(resource.as_trait_object().name().to_string()); + assert!(vector_fs + ._validate_path_points_to_entry(item_path.clone(), &writer.profile) + .is_ok()); + assert!(vector_fs + ._validate_path_points_to_item(item_path.clone(), &writer.profile) + .is_ok()); + assert!(vector_fs + ._validate_path_points_to_folder(item_path.clone(), &writer.profile) + .is_err()); + + let internals = vector_fs + ._get_profile_fs_internals_read_only(&default_test_profile()) + .unwrap(); + internals.fs_core_resource.print_all_nodes_exhaustive(None, true, false); + + /// Retrieve the Vector Resource & Source File Map from the db + // Test both retrieve interfaces + let reader = vector_fs + .new_reader(default_test_profile(), item_path.clone(), default_test_profile()) + .unwrap(); + let (ret_resource, ret_source_file_map) = vector_fs.retrieve_vr_and_source_file_map(&reader).unwrap(); + assert_eq!(ret_resource, resource); + assert_eq!(ret_source_file_map, source_file_map); + + let reader = vector_fs + .new_reader(default_test_profile(), folder_path.clone(), default_test_profile()) + .unwrap(); + let (ret_resource, ret_source_file_map) = vector_fs + .retrieve_vr_and_source_file_map_in_folder(&reader, resource.as_trait_object().name().to_string()) + .unwrap(); + assert_eq!(ret_resource, resource); + assert_eq!(ret_source_file_map, source_file_map); + + // + // Vector Search Tests + // + + // Searching into the Vector Resources themselves in the VectorFS to acquire internal nodes + let reader = vector_fs + .new_reader(default_test_profile(), VRPath::root(), default_test_profile()) + .unwrap(); + let query_string = "Who is building Shinkai?".to_string(); + let query_embedding = vector_fs + .generate_query_embedding_using_reader(query_string, &reader) + .await + .unwrap(); + let res = vector_fs + .vector_search_fs_retrieved_node(&reader, query_embedding, 100, 100) + .unwrap(); + assert_eq!( + "Shinkai Network Manifesto (Early Preview) Robert Kornacki rob@shinkai.com Nicolas Arqueros", + res[0] + .resource_retrieved_node + .node + .get_text_content() + .unwrap() + .to_string() + ); + + // Searching for FSItems + let reader = vector_fs + .new_reader(default_test_profile(), VRPath::root(), default_test_profile()) + .unwrap(); + let query_string = "Who is building Shinkai?".to_string(); + let query_embedding = vector_fs + .generate_query_embedding_using_reader(query_string, &reader) + .await + .unwrap(); + let res = vector_fs.vector_search_fs_item(&reader, query_embedding, 100).unwrap(); +} diff --git a/tests/it_mod.rs b/tests/it_mod.rs index d1c4829e4..59526e436 100644 --- a/tests/it_mod.rs +++ b/tests/it_mod.rs @@ -25,8 +25,7 @@ mod it { mod prompt_tests; mod resources_tests; mod toolkit_tests; - mod web_scraper_tests; - mod job_tree_usage_tests; - mod websocket_tests; mod utils; -} \ No newline at end of file + mod vec_fs_tests; + mod websocket_tests; +}