rocksdb
rocksdb copied to clipboard
Compaction cause data loss when using snapshot.
Note: Please use Issues only for bug reports. For questions, discussions, feature requests, etc. post to dev group: https://groups.google.com/forum/#!forum/rocksdb or https://www.facebook.com/groups/rocksdb.dev
Use 6.27.3
in Java
through JNI
Currently, we use Async + DisableWAL
to write data and snapshot + RaftLog
to recover data in the event of a node crash.
this.writeOptions = new WriteOptions();
this.writeOptions.setSync(false);
this.writeOptions.setDisableWAL(true);
We found some data loss problems that seem to occur in the compaction.
Expected behavior
Don't lose data.
Actual behavior
Lose some MemTable
data after compaction.
Steps to reproduce the behavior
- Using
ingestExternalFile
to load data (Default CF has 1000003 keys) - Start writing data and keep writing (Update some value)
- Call
getSnapshot
to hold a snapshot and useSstFileWriter
write some SST as a backup - Lost data (The default CF has only 500000 keys left but we didn't delete any data.)
I looked at the rocksdb's log and the MemTable
data seemed to be lost after compaction. But for me, it's hard to reproduce the problem. This does not happen very often.
Log at the time:
2022/07/15-12:37:31.933533 139706018649856 [/db_impl/db_impl_write.cc:1817] [default] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:37:31.933602 139706431497984 (Original Log Time 2022/07/15-12:37:31.933584) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [default], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:37:31.933607 139706431497984 [/flush_job.cc:819] [default] [JOB 47] Flushing memtable with next log file: 5
2022/07/15-12:37:31.933624 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859851933620, "job": 47, "event": "flush_started", "num_memtables": 1, "num_entries": 688607, "num_deletes": 0, "total_data_size": 54376987, "memory_usage": 66849928, "flush_reason": "Write Buffer Full"}
2022/07/15-12:37:31.933626 139706431497984 [/flush_job.cc:848] [default] [JOB 47] Level-0 flush table #74: started
2022/07/15-12:37:32.219364 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859852219321, "cf_name": "default", "job": 47, "event": "table_file_creation", "file_number": 74, "file_size": 11761092, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 10918417, "index_size": 199743, "index_partitions": 100, "top_level_index_size": 3599, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 751862, "raw_key_size": 13445496, "raw_average_key_size": 36, "raw_value_size": 15300527, "raw_average_value_size": 40, "num_data_blocks": 5488, "num_entries": 373486, "num_filter_entries": 373486, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859726, "oldest_key_time": 1657859726, "file_creation_time": 1657859851, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 74}}
2022/07/15-12:37:32.219383 139706431497984 [/flush_job.cc:937] [default] [JOB 47] Level-0 flush table #74: 11761092 bytes OK
2022/07/15-12:37:32.219392 139706431497984 [/flush_job.cc:986] [default] [JOB 47] Flush lasted 285796 microseconds, and 281242 cpu microseconds.
2022/07/15-12:37:32.219423 139706431497984 [/version_set.cc:3746] More existing levels in DB than needed. max_bytes_for_level_multiplier may not be guaranteed.
2022/07/15-12:37:32.220199 139706431497984 (Original Log Time 2022/07/15-12:37:32.219396) [/memtable_list.cc:471] [default] Level-0 commit table #74 started
2022/07/15-12:37:32.220203 139706431497984 (Original Log Time 2022/07/15-12:37:32.220105) [/memtable_list.cc:675] [default] Level-0 commit table #74: memtable #1 done
2022/07/15-12:37:32.220206 139706431497984 (Original Log Time 2022/07/15-12:37:32.220130) EVENT_LOG_v1 {"time_micros": 1657859852220122, "job": 47, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 0, 0, 1], "immutable_memtables": 0}
2022/07/15-12:37:32.220208 139706431497984 (Original Log Time 2022/07/15-12:37:32.220170) [/db_impl/db_impl_compaction_flush.cc:264] [default] Level summary: base level 6 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 0 0 1] max score 1.00
2022/07/15-12:37:32.220257 139706441987840 [/compaction/compaction_job.cc:2334] [default] [JOB 48] Compacting 4@0 + 1@6 files to L6, score 1.00
2022/07/15-12:37:32.220272 139706441987840 [/compaction/compaction_job.cc:2338] [default] Compaction start summary: Base version 54 Base level 0, inputs: [74(11MB) 63(11MB) 57(11MB) 51(11MB)], [12(21MB)]
2022/07/15-12:37:32.220287 139706441987840 EVENT_LOG_v1 {"time_micros": 1657859852220279, "job": 48, "event": "compaction_started", "compaction_reason": "LevelL0FilesNum", "files_L0": [74, 63, 57, 51], "files_L6": [12], "score": 1, "input_data_size": 69355313}
2022/07/15-12:37:33.432295 139706441987840 [/compaction/compaction_job.cc:1942] [default] [JOB 48] Generated table #75: 995878 keys, 27136482 bytes
2022/07/15-12:37:33.432348 139706441987840 EVENT_LOG_v1 {"time_micros": 1657859853432321, "cf_name": "default", "job": 48, "event": "table_file_creation", "file_number": 75, "file_size": 27136482, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 25781315, "index_size": 675060, "index_partitions": 267, "top_level_index_size": 12799, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 1, "filter_size": 1018607, "raw_key_size": 35851608, "raw_average_key_size": 36, "raw_value_size": 40798120, "raw_average_value_size": 40, "num_data_blocks": 13824, "num_entries": 995878, "num_filter_entries": 498199, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657854227, "oldest_key_time": 0, "file_creation_time": 1657859852, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 75}}
2022/07/15-12:37:33.435344 139706441987840 [/compaction/compaction_job.cc:2002] [default] [JOB 48] Compacted 4@0 + 1@6 files to L6 => 27136482 bytes
2022/07/15-12:37:33.436083 139706441987840 (Original Log Time 2022/07/15-12:37:33.436011) [/compaction/compaction_job.cc:962] [default] compacted to: base level 6 level multiplier 10.00 max bytes base 268435456 files[0 0 0 0 0 0 1] max score 0.00, MB/sec: 57.2 rd, 22.4 wr, level 6, files in(4, 1) out(1 +0 blob) MB in(44.8, 21.3 +0.0 blob) out(25.9 +0.0 blob), read-write-amplify(2.1) write-amplify(0.6) OK, records in: 2494331, records dropped: 1498453 output_compression: LZ4
2022/07/15-12:37:33.436088 139706441987840 (Original Log Time 2022/07/15-12:37:33.436035) EVENT_LOG_v1 {"time_micros": 1657859853436023, "job": 48, "event": "compaction_finished", "compaction_time_micros": 1212087, "compaction_time_cpu_micros": 1198650, "output_level": 6, "num_output_files": 1, "total_output_size": 27136482, "num_input_records": 2494331, "num_output_records": 995878, "num_subcompactions": 1, "output_compression": "LZ4", "num_single_delete_mismatches": 0, "num_single_delete_fallthrough": 0, "lsm_state": [0, 0, 0, 0, 0, 0, 1]}
2022/07/15-12:41:17.197684 139706274150144 [/db_impl/db_impl.cc:1005] ------- DUMPING STATS -------
Here are more logs and, data loss occurred at 12:27:33:
2022/07/15-11:01:17.166810 139707147409152 RocksDB version: 6.27.3
2022/07/15-11:01:17.166839 139707147409152 Compile date 2021-12-21 13:32:52
2022/07/15-11:01:17.166844 139707147409152 DB SUMMARY
2022/07/15-11:01:17.166845 139707147409152 DB Session ID: WIJBUZGZ8Z3ZE68SMEVP
2022/07/15-11:01:17.166852 139707147409152 SST files in /stm/db/ dir, Total Num: 0, files:
2022/07/15-11:01:17.166855 139707147409152 Write Ahead Log file in /stm/db/:
2022/07/15-11:01:17.166857 139707147409152 Options.error_if_exists: 0
2022/07/15-11:01:17.166858 139707147409152 Options.create_if_missing: 1
2022/07/15-11:01:17.166859 139707147409152 Options.paranoid_checks: 1
2022/07/15-11:01:17.166860 139707147409152 Options.flush_verify_memtable_count: 1
2022/07/15-11:01:17.166861 139707147409152 Options.track_and_verify_wals_in_manifest: 0
2022/07/15-11:01:17.166862 139707147409152 Options.env: 0x7f0ff1eec680
2022/07/15-11:01:17.166864 139707147409152 Options.fs: PosixFileSystem
2022/07/15-11:01:17.166865 139707147409152 Options.info_log: 0x56302e04c920
2022/07/15-11:01:17.166866 139707147409152 Options.max_file_opening_threads: 16
2022/07/15-11:01:17.166867 139707147409152 Options.statistics: 0x56302fe87210
2022/07/15-11:01:17.166868 139707147409152 Options.use_fsync: 0
2022/07/15-11:01:17.166869 139707147409152 Options.max_log_file_size: 104857600
2022/07/15-11:01:17.166870 139707147409152 Options.max_manifest_file_size: 1073741824
2022/07/15-11:01:17.166871 139707147409152 Options.log_file_time_to_roll: 0
2022/07/15-11:01:17.166872 139707147409152 Options.keep_log_file_num: 1000
2022/07/15-11:01:17.166873 139707147409152 Options.recycle_log_file_num: 0
2022/07/15-11:01:17.166874 139707147409152 Options.allow_fallocate: 1
2022/07/15-11:01:17.166875 139707147409152 Options.allow_mmap_reads: 0
2022/07/15-11:01:17.166876 139707147409152 Options.allow_mmap_writes: 0
2022/07/15-11:01:17.166878 139707147409152 Options.use_direct_reads: 0
2022/07/15-11:01:17.166879 139707147409152 Options.use_direct_io_for_flush_and_compaction: 0
2022/07/15-11:01:17.166880 139707147409152 Options.create_missing_column_families: 1
2022/07/15-11:01:17.166881 139707147409152 Options.db_log_dir: /stm/db//rocksdblog/
2022/07/15-11:01:17.166882 139707147409152 Options.wal_dir:
2022/07/15-11:01:17.166883 139707147409152 Options.table_cache_numshardbits: 6
2022/07/15-11:01:17.166884 139707147409152 Options.WAL_ttl_seconds: 0
2022/07/15-11:01:17.166885 139707147409152 Options.WAL_size_limit_MB: 0
2022/07/15-11:01:17.166886 139707147409152 Options.max_write_batch_group_size_bytes: 1048576
2022/07/15-11:01:17.166887 139707147409152 Options.manifest_preallocation_size: 4194304
2022/07/15-11:01:17.166888 139707147409152 Options.is_fd_close_on_exec: 1
2022/07/15-11:01:17.166889 139707147409152 Options.advise_random_on_open: 1
2022/07/15-11:01:17.166891 139707147409152 Options.experimental_mempurge_threshold: 0.000000
2022/07/15-11:01:17.166892 139707147409152 Options.db_write_buffer_size: 0
2022/07/15-11:01:17.166893 139707147409152 Options.write_buffer_manager: 0x563031254670
2022/07/15-11:01:17.166894 139707147409152 Options.access_hint_on_compaction_start: 1
2022/07/15-11:01:17.166895 139707147409152 Options.new_table_reader_for_compaction_inputs: 0
2022/07/15-11:01:17.166897 139707147409152 Options.random_access_max_buffer_size: 1048576
2022/07/15-11:01:17.166901 139707147409152 Options.use_adaptive_mutex: 0
2022/07/15-11:01:17.166903 139707147409152 Options.rate_limiter: (nil)
2022/07/15-11:01:17.166905 139707147409152 Options.sst_file_manager.rate_bytes_per_sec: 0
2022/07/15-11:01:17.166906 139707147409152 Options.wal_recovery_mode: 2
2022/07/15-11:01:17.166907 139707147409152 Options.enable_thread_tracking: 0
2022/07/15-11:01:17.166908 139707147409152 Options.enable_pipelined_write: 0
2022/07/15-11:01:17.166909 139707147409152 Options.unordered_write: 0
2022/07/15-11:01:17.166910 139707147409152 Options.allow_concurrent_memtable_write: 0
2022/07/15-11:01:17.166911 139707147409152 Options.enable_write_thread_adaptive_yield: 1
2022/07/15-11:01:17.166912 139707147409152 Options.write_thread_max_yield_usec: 1000
2022/07/15-11:01:17.166913 139707147409152 Options.write_thread_slow_yield_usec: 30
2022/07/15-11:01:17.166914 139707147409152 Options.row_cache: None
2022/07/15-11:01:17.166915 139707147409152 Options.wal_filter: None
2022/07/15-11:01:17.166916 139707147409152 Options.avoid_flush_during_recovery: 0
2022/07/15-11:01:17.166917 139707147409152 Options.allow_ingest_behind: 0
2022/07/15-11:01:17.166918 139707147409152 Options.preserve_deletes: 0
2022/07/15-11:01:17.166919 139707147409152 Options.two_write_queues: 0
2022/07/15-11:01:17.166920 139707147409152 Options.manual_wal_flush: 0
2022/07/15-11:01:17.166921 139707147409152 Options.atomic_flush: 0
2022/07/15-11:01:17.166922 139707147409152 Options.avoid_unnecessary_blocking_io: 0
2022/07/15-11:01:17.166923 139707147409152 Options.persist_stats_to_disk: 0
2022/07/15-11:01:17.166924 139707147409152 Options.write_dbid_to_manifest: 0
2022/07/15-11:01:17.166925 139707147409152 Options.log_readahead_size: 0
2022/07/15-11:01:17.166926 139707147409152 Options.file_checksum_gen_factory: Unknown
2022/07/15-11:01:17.166927 139707147409152 Options.best_efforts_recovery: 0
2022/07/15-11:01:17.166928 139707147409152 Options.max_bgerror_resume_count: 2147483647
2022/07/15-11:01:17.166929 139707147409152 Options.bgerror_resume_retry_interval: 1000000
2022/07/15-11:01:17.166930 139707147409152 Options.allow_data_in_errors: 0
2022/07/15-11:01:17.166931 139707147409152 Options.db_host_id: __hostname__
2022/07/15-11:01:17.166933 139707147409152 Options.max_background_jobs: 2
2022/07/15-11:01:17.166934 139707147409152 Options.max_background_compactions: -1
2022/07/15-11:01:17.166936 139707147409152 Options.max_subcompactions: 1
2022/07/15-11:01:17.166937 139707147409152 Options.avoid_flush_during_shutdown: 0
2022/07/15-11:01:17.166938 139707147409152 Options.writable_file_max_buffer_size: 1048576
2022/07/15-11:01:17.166939 139707147409152 Options.delayed_write_rate : 16777216
2022/07/15-11:01:17.166940 139707147409152 Options.max_total_wal_size: 0
2022/07/15-11:01:17.166941 139707147409152 Options.delete_obsolete_files_period_micros: 21600000000
2022/07/15-11:01:17.166942 139707147409152 Options.stats_dump_period_sec: 600
2022/07/15-11:01:17.166943 139707147409152 Options.stats_persist_period_sec: 600
2022/07/15-11:01:17.166944 139707147409152 Options.stats_history_buffer_size: 1048576
2022/07/15-11:01:17.166945 139707147409152 Options.max_open_files: 1000
2022/07/15-11:01:17.166946 139707147409152 Options.bytes_per_sync: 0
2022/07/15-11:01:17.166947 139707147409152 Options.wal_bytes_per_sync: 0
2022/07/15-11:01:17.166948 139707147409152 Options.strict_bytes_per_sync: 0
2022/07/15-11:01:17.166952 139707147409152 Options.compaction_readahead_size: 0
2022/07/15-11:01:17.166953 139707147409152 Options.max_background_flushes: -1
2022/07/15-11:01:17.166954 139707147409152 Compression algorithms supported:
2022/07/15-11:01:17.166956 139707147409152 kZSTDNotFinalCompression supported: 1
2022/07/15-11:01:17.166960 139707147409152 kZSTD supported: 1
2022/07/15-11:01:17.166961 139707147409152 kXpressCompression supported: 0
2022/07/15-11:01:17.166962 139707147409152 kLZ4HCCompression supported: 1
2022/07/15-11:01:17.166963 139707147409152 kLZ4Compression supported: 1
2022/07/15-11:01:17.166964 139707147409152 kBZip2Compression supported: 1
2022/07/15-11:01:17.166965 139707147409152 kZlibCompression supported: 1
2022/07/15-11:01:17.166966 139707147409152 kSnappyCompression supported: 1
2022/07/15-11:01:17.166969 139707147409152 Fast CRC32 supported: Not supported on x86
2022/07/15-11:01:17.169338 139707147409152 [/db_impl/db_impl_open.cc:307] Creating manifest 1
2022/07/15-11:01:17.171025 139707147409152 [/version_set.cc:4847] Recovering from manifest file: /stm/db//MANIFEST-000001
2022/07/15-11:01:17.171160 139707147409152 [/column_family.cc:607] --------------- Options for column family [default]:
2022/07/15-11:01:17.171163 139707147409152 Options.comparator: leveldb.BytewiseComparator
2022/07/15-11:01:17.171165 139707147409152 Options.merge_operator: StringAppendOperator
2022/07/15-11:01:17.171166 139707147409152 Options.compaction_filter: None
2022/07/15-11:01:17.171167 139707147409152 Options.compaction_filter_factory: None
2022/07/15-11:01:17.171168 139707147409152 Options.sst_partitioner_factory: None
2022/07/15-11:01:17.171170 139707147409152 Options.memtable_factory: SkipListFactory
2022/07/15-11:01:17.171171 139707147409152 Options.table_factory: BlockBasedTable
2022/07/15-11:01:17.171189 139707147409152 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x563031248e50)
cache_index_and_filter_blocks: 0
cache_index_and_filter_blocks_with_high_priority: 1
pin_l0_filter_and_index_blocks_in_cache: 1
pin_top_level_index_and_filter: 1
index_type: 2
data_block_index_type: 0
index_shortening: 1
data_block_hash_table_util_ratio: 0.750000
hash_index_allow_collision: 1
checksum: 1
no_block_cache: 0
block_cache: 0x563031248ea0
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
block_cache_compressed: (nil)
persistent_cache: (nil)
block_size: 4096
block_size_deviation: 10
block_restart_interval: 16
index_block_restart_interval: 1
metadata_block_size: 8192
partition_filters: 1
use_delta_encoding: 1
filter_policy: rocksdb.BuiltinBloomFilter
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
2022/07/15-11:01:17.171190 139707147409152 Options.write_buffer_size: 67108864
2022/07/15-11:01:17.171191 139707147409152 Options.max_write_buffer_number: 2
2022/07/15-11:01:17.171193 139707147409152 Options.compression: LZ4
2022/07/15-11:01:17.171194 139707147409152 Options.bottommost_compression: Disabled
2022/07/15-11:01:17.171195 139707147409152 Options.prefix_extractor: nullptr
2022/07/15-11:01:17.171196 139707147409152 Options.memtable_insert_with_hint_prefix_extractor: nullptr
2022/07/15-11:01:17.171197 139707147409152 Options.num_levels: 7
2022/07/15-11:01:17.171198 139707147409152 Options.min_write_buffer_number_to_merge: 1
2022/07/15-11:01:17.171199 139707147409152 Options.max_write_buffer_number_to_maintain: 0
2022/07/15-11:01:17.171200 139707147409152 Options.max_write_buffer_size_to_maintain: 0
2022/07/15-11:01:17.171201 139707147409152 Options.bottommost_compression_opts.window_bits: -14
2022/07/15-11:01:17.171212 139707147409152 Options.bottommost_compression_opts.level: 32767
2022/07/15-11:01:17.171213 139707147409152 Options.bottommost_compression_opts.strategy: 0
2022/07/15-11:01:17.171214 139707147409152 Options.bottommost_compression_opts.max_dict_bytes: 0
2022/07/15-11:01:17.171215 139707147409152 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
2022/07/15-11:01:17.171216 139707147409152 Options.bottommost_compression_opts.parallel_threads: 1
2022/07/15-11:01:17.171217 139707147409152 Options.bottommost_compression_opts.enabled: false
2022/07/15-11:01:17.171218 139707147409152 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
2022/07/15-11:01:17.171219 139707147409152 Options.compression_opts.window_bits: -14
2022/07/15-11:01:17.171220 139707147409152 Options.compression_opts.level: 32767
2022/07/15-11:01:17.171221 139707147409152 Options.compression_opts.strategy: 0
2022/07/15-11:01:17.171222 139707147409152 Options.compression_opts.max_dict_bytes: 0
2022/07/15-11:01:17.171223 139707147409152 Options.compression_opts.zstd_max_train_bytes: 0
2022/07/15-11:01:17.171224 139707147409152 Options.compression_opts.parallel_threads: 1
2022/07/15-11:01:17.171225 139707147409152 Options.compression_opts.enabled: false
2022/07/15-11:01:17.171226 139707147409152 Options.compression_opts.max_dict_buffer_bytes: 0
2022/07/15-11:01:17.171227 139707147409152 Options.level0_file_num_compaction_trigger: 4
2022/07/15-11:01:17.171228 139707147409152 Options.level0_slowdown_writes_trigger: 20
2022/07/15-11:01:17.171230 139707147409152 Options.level0_stop_writes_trigger: 36
2022/07/15-11:01:17.171231 139707147409152 Options.target_file_size_base: 67108864
2022/07/15-11:01:17.171232 139707147409152 Options.target_file_size_multiplier: 1
2022/07/15-11:01:17.171233 139707147409152 Options.max_bytes_for_level_base: 268435456
2022/07/15-11:01:17.171234 139707147409152 Options.level_compaction_dynamic_level_bytes: 1
2022/07/15-11:01:17.171236 139707147409152 Options.max_bytes_for_level_multiplier: 10.000000
2022/07/15-11:01:17.171237 139707147409152 Options.max_bytes_for_level_multiplier_addtl[0]: 1
2022/07/15-11:01:17.171238 139707147409152 Options.max_bytes_for_level_multiplier_addtl[1]: 1
2022/07/15-11:01:17.171239 139707147409152 Options.max_bytes_for_level_multiplier_addtl[2]: 1
2022/07/15-11:01:17.171240 139707147409152 Options.max_bytes_for_level_multiplier_addtl[3]: 1
2022/07/15-11:01:17.171241 139707147409152 Options.max_bytes_for_level_multiplier_addtl[4]: 1
2022/07/15-11:01:17.171242 139707147409152 Options.max_bytes_for_level_multiplier_addtl[5]: 1
2022/07/15-11:01:17.171243 139707147409152 Options.max_bytes_for_level_multiplier_addtl[6]: 1
2022/07/15-11:01:17.171244 139707147409152 Options.max_sequential_skip_in_iterations: 8
2022/07/15-11:01:17.171246 139707147409152 Options.max_compaction_bytes: 1677721600
2022/07/15-11:01:17.171247 139707147409152 Options.arena_block_size: 1048576
2022/07/15-11:01:17.171248 139707147409152 Options.soft_pending_compaction_bytes_limit: 68719476736
2022/07/15-11:01:17.171249 139707147409152 Options.hard_pending_compaction_bytes_limit: 274877906944
2022/07/15-11:01:17.171250 139707147409152 Options.rate_limit_delay_max_milliseconds: 100
2022/07/15-11:01:17.171251 139707147409152 Options.disable_auto_compactions: 0
2022/07/15-11:01:17.171253 139707147409152 Options.compaction_style: kCompactionStyleLevel
2022/07/15-11:01:17.171254 139707147409152 Options.compaction_pri: kMinOverlappingRatio
2022/07/15-11:01:17.171255 139707147409152 Options.compaction_options_universal.size_ratio: 1
2022/07/15-11:01:17.171256 139707147409152 Options.compaction_options_universal.min_merge_width: 2
2022/07/15-11:01:17.171260 139707147409152 Options.compaction_options_universal.max_merge_width: 4294967295
2022/07/15-11:01:17.171261 139707147409152 Options.compaction_options_universal.max_size_amplification_percent: 200
2022/07/15-11:01:17.171262 139707147409152 Options.compaction_options_universal.compression_size_percent: -1
2022/07/15-11:01:17.171263 139707147409152 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
2022/07/15-11:01:17.171264 139707147409152 Options.compaction_options_fifo.max_table_files_size: 1073741824
2022/07/15-11:01:17.171265 139707147409152 Options.compaction_options_fifo.allow_compaction: 0
2022/07/15-11:01:17.171270 139707147409152 Options.table_properties_collectors:
2022/07/15-11:01:17.171271 139707147409152 Options.inplace_update_support: 0
2022/07/15-11:01:17.171272 139707147409152 Options.inplace_update_num_locks: 10000
2022/07/15-11:01:17.171273 139707147409152 Options.memtable_prefix_bloom_size_ratio: 0.000000
2022/07/15-11:01:17.171275 139707147409152 Options.memtable_whole_key_filtering: 0
2022/07/15-11:01:17.171276 139707147409152 Options.memtable_huge_page_size: 0
2022/07/15-11:01:17.171277 139707147409152 Options.bloom_locality: 0
2022/07/15-11:01:17.171278 139707147409152 Options.max_successive_merges: 0
2022/07/15-11:01:17.171279 139707147409152 Options.optimize_filters_for_hits: 0
2022/07/15-11:01:17.171280 139707147409152 Options.paranoid_file_checks: 0
2022/07/15-11:01:17.171281 139707147409152 Options.force_consistency_checks: 1
2022/07/15-11:01:17.171282 139707147409152 Options.report_bg_io_stats: 0
2022/07/15-11:01:17.171283 139707147409152 Options.ttl: 2592000
2022/07/15-11:01:17.171284 139707147409152 Options.periodic_compaction_seconds: 0
2022/07/15-11:01:17.171285 139707147409152 Options.enable_blob_files: false
2022/07/15-11:01:17.171286 139707147409152 Options.min_blob_size: 0
2022/07/15-11:01:17.171287 139707147409152 Options.blob_file_size: 268435456
2022/07/15-11:01:17.171288 139707147409152 Options.blob_compression_type: NoCompression
2022/07/15-11:01:17.171289 139707147409152 Options.enable_blob_garbage_collection: false
2022/07/15-11:01:17.171291 139707147409152 Options.blob_garbage_collection_age_cutoff: 0.250000
2022/07/15-11:01:17.171292 139707147409152 Options.blob_garbage_collection_force_threshold: 1.000000
2022/07/15-11:01:17.171293 139707147409152 Options.blob_compaction_readahead_size: 0
2022/07/15-11:01:17.171852 139707147409152 [/version_set.cc:4895] Recovered from manifest file:/stm/db//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
2022/07/15-11:01:17.171857 139707147409152 [/version_set.cc:4904] Column family [default] (ID 0), log number is 0
2022/07/15-11:01:17.171914 139707147409152 [/version_set.cc:4385] Creating manifest 4
2022/07/15-11:01:17.174225 139707147409152 [/column_family.cc:607] --------------- Options for column family [cf01]:
2022/07/15-11:01:17.174232 139707147409152 Options.comparator: leveldb.BytewiseComparator
2022/07/15-11:01:17.174234 139707147409152 Options.merge_operator: StringAppendOperator
2022/07/15-11:01:17.174235 139707147409152 Options.compaction_filter: None
2022/07/15-11:01:17.174236 139707147409152 Options.compaction_filter_factory: None
2022/07/15-11:01:17.174238 139707147409152 Options.sst_partitioner_factory: None
2022/07/15-11:01:17.174239 139707147409152 Options.memtable_factory: SkipListFactory
2022/07/15-11:01:17.174241 139707147409152 Options.table_factory: BlockBasedTable
2022/07/15-11:01:17.174260 139707147409152 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x563031252d80)
cache_index_and_filter_blocks: 0
cache_index_and_filter_blocks_with_high_priority: 1
pin_l0_filter_and_index_blocks_in_cache: 1
pin_top_level_index_and_filter: 1
index_type: 2
data_block_index_type: 0
index_shortening: 1
data_block_hash_table_util_ratio: 0.750000
hash_index_allow_collision: 1
checksum: 1
no_block_cache: 0
block_cache: 0x563031252dd0
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
block_cache_compressed: (nil)
persistent_cache: (nil)
block_size: 4096
block_size_deviation: 10
block_restart_interval: 16
index_block_restart_interval: 1
metadata_block_size: 8192
partition_filters: 1
use_delta_encoding: 1
filter_policy: rocksdb.BuiltinBloomFilter
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
2022/07/15-11:01:17.174262 139707147409152 Options.write_buffer_size: 67108864
2022/07/15-11:01:17.174264 139707147409152 Options.max_write_buffer_number: 2
2022/07/15-11:01:17.174265 139707147409152 Options.compression: LZ4
2022/07/15-11:01:17.174266 139707147409152 Options.bottommost_compression: Disabled
2022/07/15-11:01:17.174268 139707147409152 Options.prefix_extractor: nullptr
2022/07/15-11:01:17.174269 139707147409152 Options.memtable_insert_with_hint_prefix_extractor: nullptr
2022/07/15-11:01:17.174270 139707147409152 Options.num_levels: 7
2022/07/15-11:01:17.174272 139707147409152 Options.min_write_buffer_number_to_merge: 1
2022/07/15-11:01:17.174273 139707147409152 Options.max_write_buffer_number_to_maintain: 0
2022/07/15-11:01:17.174274 139707147409152 Options.max_write_buffer_size_to_maintain: 0
2022/07/15-11:01:17.174275 139707147409152 Options.bottommost_compression_opts.window_bits: -14
2022/07/15-11:01:17.174277 139707147409152 Options.bottommost_compression_opts.level: 32767
2022/07/15-11:01:17.174278 139707147409152 Options.bottommost_compression_opts.strategy: 0
2022/07/15-11:01:17.174279 139707147409152 Options.bottommost_compression_opts.max_dict_bytes: 0
2022/07/15-11:01:17.174281 139707147409152 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
2022/07/15-11:01:17.174282 139707147409152 Options.bottommost_compression_opts.parallel_threads: 1
2022/07/15-11:01:17.174283 139707147409152 Options.bottommost_compression_opts.enabled: false
2022/07/15-11:01:17.174284 139707147409152 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
2022/07/15-11:01:17.174286 139707147409152 Options.compression_opts.window_bits: -14
2022/07/15-11:01:17.174287 139707147409152 Options.compression_opts.level: 32767
2022/07/15-11:01:17.174288 139707147409152 Options.compression_opts.strategy: 0
2022/07/15-11:01:17.174289 139707147409152 Options.compression_opts.max_dict_bytes: 0
2022/07/15-11:01:17.174303 139707147409152 Options.compression_opts.zstd_max_train_bytes: 0
2022/07/15-11:01:17.174305 139707147409152 Options.compression_opts.parallel_threads: 1
2022/07/15-11:01:17.174306 139707147409152 Options.compression_opts.enabled: false
2022/07/15-11:01:17.174307 139707147409152 Options.compression_opts.max_dict_buffer_bytes: 0
2022/07/15-11:01:17.174308 139707147409152 Options.level0_file_num_compaction_trigger: 4
2022/07/15-11:01:17.174309 139707147409152 Options.level0_slowdown_writes_trigger: 20
2022/07/15-11:01:17.174310 139707147409152 Options.level0_stop_writes_trigger: 36
2022/07/15-11:01:17.174311 139707147409152 Options.target_file_size_base: 67108864
2022/07/15-11:01:17.174312 139707147409152 Options.target_file_size_multiplier: 1
2022/07/15-11:01:17.174313 139707147409152 Options.max_bytes_for_level_base: 268435456
2022/07/15-11:01:17.174314 139707147409152 Options.level_compaction_dynamic_level_bytes: 1
2022/07/15-11:01:17.174315 139707147409152 Options.max_bytes_for_level_multiplier: 10.000000
2022/07/15-11:01:17.174317 139707147409152 Options.max_bytes_for_level_multiplier_addtl[0]: 1
2022/07/15-11:01:17.174318 139707147409152 Options.max_bytes_for_level_multiplier_addtl[1]: 1
2022/07/15-11:01:17.174319 139707147409152 Options.max_bytes_for_level_multiplier_addtl[2]: 1
2022/07/15-11:01:17.174320 139707147409152 Options.max_bytes_for_level_multiplier_addtl[3]: 1
2022/07/15-11:01:17.174321 139707147409152 Options.max_bytes_for_level_multiplier_addtl[4]: 1
2022/07/15-11:01:17.174322 139707147409152 Options.max_bytes_for_level_multiplier_addtl[5]: 1
2022/07/15-11:01:17.174323 139707147409152 Options.max_bytes_for_level_multiplier_addtl[6]: 1
2022/07/15-11:01:17.174324 139707147409152 Options.max_sequential_skip_in_iterations: 8
2022/07/15-11:01:17.174325 139707147409152 Options.max_compaction_bytes: 1677721600
2022/07/15-11:01:17.174326 139707147409152 Options.arena_block_size: 1048576
2022/07/15-11:01:17.174327 139707147409152 Options.soft_pending_compaction_bytes_limit: 68719476736
2022/07/15-11:01:17.174328 139707147409152 Options.hard_pending_compaction_bytes_limit: 274877906944
2022/07/15-11:01:17.174329 139707147409152 Options.rate_limit_delay_max_milliseconds: 100
2022/07/15-11:01:17.174330 139707147409152 Options.disable_auto_compactions: 0
2022/07/15-11:01:17.174332 139707147409152 Options.compaction_style: kCompactionStyleLevel
2022/07/15-11:01:17.174333 139707147409152 Options.compaction_pri: kMinOverlappingRatio
2022/07/15-11:01:17.174334 139707147409152 Options.compaction_options_universal.size_ratio: 1
2022/07/15-11:01:17.174335 139707147409152 Options.compaction_options_universal.min_merge_width: 2
2022/07/15-11:01:17.174336 139707147409152 Options.compaction_options_universal.max_merge_width: 4294967295
2022/07/15-11:01:17.174337 139707147409152 Options.compaction_options_universal.max_size_amplification_percent: 200
2022/07/15-11:01:17.174338 139707147409152 Options.compaction_options_universal.compression_size_percent: -1
2022/07/15-11:01:17.174340 139707147409152 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
2022/07/15-11:01:17.174341 139707147409152 Options.compaction_options_fifo.max_table_files_size: 1073741824
2022/07/15-11:01:17.174342 139707147409152 Options.compaction_options_fifo.allow_compaction: 0
2022/07/15-11:01:17.174345 139707147409152 Options.table_properties_collectors:
2022/07/15-11:01:17.174346 139707147409152 Options.inplace_update_support: 0
2022/07/15-11:01:17.174347 139707147409152 Options.inplace_update_num_locks: 10000
2022/07/15-11:01:17.174349 139707147409152 Options.memtable_prefix_bloom_size_ratio: 0.000000
2022/07/15-11:01:17.174350 139707147409152 Options.memtable_whole_key_filtering: 0
2022/07/15-11:01:17.174354 139707147409152 Options.memtable_huge_page_size: 0
2022/07/15-11:01:17.174355 139707147409152 Options.bloom_locality: 0
2022/07/15-11:01:17.174356 139707147409152 Options.max_successive_merges: 0
2022/07/15-11:01:17.174357 139707147409152 Options.optimize_filters_for_hits: 0
2022/07/15-11:01:17.174358 139707147409152 Options.paranoid_file_checks: 0
2022/07/15-11:01:17.174359 139707147409152 Options.force_consistency_checks: 1
2022/07/15-11:01:17.174360 139707147409152 Options.report_bg_io_stats: 0
2022/07/15-11:01:17.174361 139707147409152 Options.ttl: 2592000
2022/07/15-11:01:17.174362 139707147409152 Options.periodic_compaction_seconds: 0
2022/07/15-11:01:17.174363 139707147409152 Options.enable_blob_files: false
2022/07/15-11:01:17.174364 139707147409152 Options.min_blob_size: 0
2022/07/15-11:01:17.174365 139707147409152 Options.blob_file_size: 268435456
2022/07/15-11:01:17.174366 139707147409152 Options.blob_compression_type: NoCompression
2022/07/15-11:01:17.174367 139707147409152 Options.enable_blob_garbage_collection: false
2022/07/15-11:01:17.174369 139707147409152 Options.blob_garbage_collection_age_cutoff: 0.250000
2022/07/15-11:01:17.174370 139707147409152 Options.blob_garbage_collection_force_threshold: 1.000000
2022/07/15-11:01:17.174371 139707147409152 Options.blob_compaction_readahead_size: 0
2022/07/15-11:01:17.174404 139707147409152 [/db_impl/db_impl.cc:2746] Created column family [cf01] (ID 1)
2022/07/15-11:01:17.177615 139707147409152 [/column_family.cc:607] --------------- Options for column family [cf02]:
2022/07/15-11:01:17.177619 139707147409152 Options.comparator: leveldb.BytewiseComparator
2022/07/15-11:01:17.177620 139707147409152 Options.merge_operator: StringAppendOperator
2022/07/15-11:01:17.177622 139707147409152 Options.compaction_filter: None
2022/07/15-11:01:17.177623 139707147409152 Options.compaction_filter_factory: None
2022/07/15-11:01:17.177625 139707147409152 Options.sst_partitioner_factory: None
2022/07/15-11:01:17.177626 139707147409152 Options.memtable_factory: SkipListFactory
2022/07/15-11:01:17.177627 139707147409152 Options.table_factory: BlockBasedTable
2022/07/15-11:01:17.177644 139707147409152 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56303124b0f0)
cache_index_and_filter_blocks: 0
cache_index_and_filter_blocks_with_high_priority: 1
pin_l0_filter_and_index_blocks_in_cache: 1
pin_top_level_index_and_filter: 1
index_type: 2
data_block_index_type: 0
index_shortening: 1
data_block_hash_table_util_ratio: 0.750000
hash_index_allow_collision: 1
checksum: 1
no_block_cache: 0
block_cache: 0x56303124b140
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
block_cache_compressed: (nil)
persistent_cache: (nil)
block_size: 4096
block_size_deviation: 10
block_restart_interval: 16
index_block_restart_interval: 1
metadata_block_size: 8192
partition_filters: 1
use_delta_encoding: 1
filter_policy: rocksdb.BuiltinBloomFilter
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
2022/07/15-11:01:17.177646 139707147409152 Options.write_buffer_size: 67108864
2022/07/15-11:01:17.177647 139707147409152 Options.max_write_buffer_number: 2
2022/07/15-11:01:17.177649 139707147409152 Options.compression: LZ4
2022/07/15-11:01:17.177650 139707147409152 Options.bottommost_compression: Disabled
2022/07/15-11:01:17.177652 139707147409152 Options.prefix_extractor: nullptr
2022/07/15-11:01:17.177653 139707147409152 Options.memtable_insert_with_hint_prefix_extractor: nullptr
2022/07/15-11:01:17.177655 139707147409152 Options.num_levels: 7
2022/07/15-11:01:17.177656 139707147409152 Options.min_write_buffer_number_to_merge: 1
2022/07/15-11:01:17.177657 139707147409152 Options.max_write_buffer_number_to_maintain: 0
2022/07/15-11:01:17.177659 139707147409152 Options.max_write_buffer_size_to_maintain: 0
2022/07/15-11:01:17.177660 139707147409152 Options.bottommost_compression_opts.window_bits: -14
2022/07/15-11:01:17.177661 139707147409152 Options.bottommost_compression_opts.level: 32767
2022/07/15-11:01:17.177663 139707147409152 Options.bottommost_compression_opts.strategy: 0
2022/07/15-11:01:17.177664 139707147409152 Options.bottommost_compression_opts.max_dict_bytes: 0
2022/07/15-11:01:17.177665 139707147409152 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
2022/07/15-11:01:17.177667 139707147409152 Options.bottommost_compression_opts.parallel_threads: 1
2022/07/15-11:01:17.177668 139707147409152 Options.bottommost_compression_opts.enabled: false
2022/07/15-11:01:17.177670 139707147409152 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
2022/07/15-11:01:17.177671 139707147409152 Options.compression_opts.window_bits: -14
2022/07/15-11:01:17.177673 139707147409152 Options.compression_opts.level: 32767
2022/07/15-11:01:17.177674 139707147409152 Options.compression_opts.strategy: 0
2022/07/15-11:01:17.177675 139707147409152 Options.compression_opts.max_dict_bytes: 0
2022/07/15-11:01:17.177680 139707147409152 Options.compression_opts.zstd_max_train_bytes: 0
2022/07/15-11:01:17.177681 139707147409152 Options.compression_opts.parallel_threads: 1
2022/07/15-11:01:17.177682 139707147409152 Options.compression_opts.enabled: false
2022/07/15-11:01:17.177683 139707147409152 Options.compression_opts.max_dict_buffer_bytes: 0
2022/07/15-11:01:17.177685 139707147409152 Options.level0_file_num_compaction_trigger: 4
2022/07/15-11:01:17.177686 139707147409152 Options.level0_slowdown_writes_trigger: 20
2022/07/15-11:01:17.177687 139707147409152 Options.level0_stop_writes_trigger: 36
2022/07/15-11:01:17.177688 139707147409152 Options.target_file_size_base: 67108864
2022/07/15-11:01:17.177689 139707147409152 Options.target_file_size_multiplier: 1
2022/07/15-11:01:17.177690 139707147409152 Options.max_bytes_for_level_base: 268435456
2022/07/15-11:01:17.177691 139707147409152 Options.level_compaction_dynamic_level_bytes: 1
2022/07/15-11:01:17.177693 139707147409152 Options.max_bytes_for_level_multiplier: 10.000000
2022/07/15-11:01:17.177694 139707147409152 Options.max_bytes_for_level_multiplier_addtl[0]: 1
2022/07/15-11:01:17.177695 139707147409152 Options.max_bytes_for_level_multiplier_addtl[1]: 1
2022/07/15-11:01:17.177697 139707147409152 Options.max_bytes_for_level_multiplier_addtl[2]: 1
2022/07/15-11:01:17.177698 139707147409152 Options.max_bytes_for_level_multiplier_addtl[3]: 1
2022/07/15-11:01:17.177699 139707147409152 Options.max_bytes_for_level_multiplier_addtl[4]: 1
2022/07/15-11:01:17.177700 139707147409152 Options.max_bytes_for_level_multiplier_addtl[5]: 1
2022/07/15-11:01:17.177701 139707147409152 Options.max_bytes_for_level_multiplier_addtl[6]: 1
2022/07/15-11:01:17.177702 139707147409152 Options.max_sequential_skip_in_iterations: 8
2022/07/15-11:01:17.177703 139707147409152 Options.max_compaction_bytes: 1677721600
2022/07/15-11:01:17.177705 139707147409152 Options.arena_block_size: 1048576
2022/07/15-11:01:17.177706 139707147409152 Options.soft_pending_compaction_bytes_limit: 68719476736
2022/07/15-11:01:17.177707 139707147409152 Options.hard_pending_compaction_bytes_limit: 274877906944
2022/07/15-11:01:17.177708 139707147409152 Options.rate_limit_delay_max_milliseconds: 100
2022/07/15-11:01:17.177709 139707147409152 Options.disable_auto_compactions: 0
2022/07/15-11:01:17.177710 139707147409152 Options.compaction_style: kCompactionStyleLevel
2022/07/15-11:01:17.177712 139707147409152 Options.compaction_pri: kMinOverlappingRatio
2022/07/15-11:01:17.177713 139707147409152 Options.compaction_options_universal.size_ratio: 1
2022/07/15-11:01:17.177714 139707147409152 Options.compaction_options_universal.min_merge_width: 2
2022/07/15-11:01:17.177715 139707147409152 Options.compaction_options_universal.max_merge_width: 4294967295
2022/07/15-11:01:17.177716 139707147409152 Options.compaction_options_universal.max_size_amplification_percent: 200
2022/07/15-11:01:17.177717 139707147409152 Options.compaction_options_universal.compression_size_percent: -1
2022/07/15-11:01:17.177719 139707147409152 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
2022/07/15-11:01:17.177720 139707147409152 Options.compaction_options_fifo.max_table_files_size: 1073741824
2022/07/15-11:01:17.177721 139707147409152 Options.compaction_options_fifo.allow_compaction: 0
2022/07/15-11:01:17.177724 139707147409152 Options.table_properties_collectors:
2022/07/15-11:01:17.177725 139707147409152 Options.inplace_update_support: 0
2022/07/15-11:01:17.177726 139707147409152 Options.inplace_update_num_locks: 10000
2022/07/15-11:01:17.177728 139707147409152 Options.memtable_prefix_bloom_size_ratio: 0.000000
2022/07/15-11:01:17.177729 139707147409152 Options.memtable_whole_key_filtering: 0
2022/07/15-11:01:17.177732 139707147409152 Options.memtable_huge_page_size: 0
2022/07/15-11:01:17.177733 139707147409152 Options.bloom_locality: 0
2022/07/15-11:01:17.177735 139707147409152 Options.max_successive_merges: 0
2022/07/15-11:01:17.177736 139707147409152 Options.optimize_filters_for_hits: 0
2022/07/15-11:01:17.177737 139707147409152 Options.paranoid_file_checks: 0
2022/07/15-11:01:17.177738 139707147409152 Options.force_consistency_checks: 1
2022/07/15-11:01:17.177739 139707147409152 Options.report_bg_io_stats: 0
2022/07/15-11:01:17.177740 139707147409152 Options.ttl: 2592000
2022/07/15-11:01:17.177741 139707147409152 Options.periodic_compaction_seconds: 0
2022/07/15-11:01:17.177742 139707147409152 Options.enable_blob_files: false
2022/07/15-11:01:17.177743 139707147409152 Options.min_blob_size: 0
2022/07/15-11:01:17.177744 139707147409152 Options.blob_file_size: 268435456
2022/07/15-11:01:17.177745 139707147409152 Options.blob_compression_type: NoCompression
2022/07/15-11:01:17.177747 139707147409152 Options.enable_blob_garbage_collection: false
2022/07/15-11:01:17.177748 139707147409152 Options.blob_garbage_collection_age_cutoff: 0.250000
2022/07/15-11:01:17.177749 139707147409152 Options.blob_garbage_collection_force_threshold: 1.000000
2022/07/15-11:01:17.177750 139707147409152 Options.blob_compaction_readahead_size: 0
2022/07/15-11:01:17.177768 139707147409152 [/db_impl/db_impl.cc:2746] Created column family [cf02] (ID 2)
2022/07/15-11:01:17.182308 139707147409152 [/db_impl/db_impl_open.cc:1793] SstFileManager instance 0x56302fe87e30
2022/07/15-11:01:17.182324 139707147409152 DB pointer 0x563031257c00
2022/07/15-11:01:17.182523 139706274150144 [/db_impl/db_impl.cc:1005] ------- DUMPING STATS -------
2022/07/15-11:01:17.182544 139706274150144 [/db_impl/db_impl.cc:1006]
** DB Stats **
Uptime(secs): 0.0 total, 0.0 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
** 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
Uptime(secs): 0.0 total, 0.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
Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count
Block cache LRUCache@0x563031248ea0#22504 capacity: 8.00 MB collections: 1 last_copies: 0 last_secs: 3.3e-05 secs_since: 0
Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%)
** Compaction Stats [cf01] **
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 [cf01] **
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
Uptime(secs): 0.0 total, 0.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
Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count
Block cache LRUCache@0x563031252dd0#22504 capacity: 8.00 MB collections: 1 last_copies: 0 last_secs: 8e-06 secs_since: 0
Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%)
** Compaction Stats [cf02] **
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 [cf02] **
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
Uptime(secs): 0.0 total, 0.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
Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count
Block cache LRUCache@0x56303124b140#22504 capacity: 8.00 MB collections: 1 last_copies: 0 last_secs: 7e-06 secs_since: 0
Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%)
** File Read Latency Histogram By Level [default] **
** File Read Latency Histogram By Level [cf01] **
** File Read Latency Histogram By Level [cf02] **
2022/07/15-11:01:17.183155 139706274150144 [/db_impl/db_impl.cc:754] STATISTICS:
rocksdb.block.cache.miss COUNT : 0
rocksdb.block.cache.hit COUNT : 0
rocksdb.block.cache.add COUNT : 0
rocksdb.block.cache.add.failures COUNT : 0
rocksdb.block.cache.index.miss COUNT : 0
rocksdb.block.cache.index.hit COUNT : 0
rocksdb.block.cache.index.add COUNT : 0
rocksdb.block.cache.index.bytes.insert COUNT : 0
rocksdb.block.cache.index.bytes.evict COUNT : 0
rocksdb.block.cache.filter.miss COUNT : 0
rocksdb.block.cache.filter.hit COUNT : 0
rocksdb.block.cache.filter.add COUNT : 0
rocksdb.block.cache.filter.bytes.insert COUNT : 0
rocksdb.block.cache.filter.bytes.evict COUNT : 0
rocksdb.block.cache.data.miss COUNT : 0
rocksdb.block.cache.data.hit COUNT : 0
rocksdb.block.cache.data.add COUNT : 0
rocksdb.block.cache.data.bytes.insert COUNT : 0
rocksdb.block.cache.bytes.read COUNT : 0
rocksdb.block.cache.bytes.write COUNT : 0
rocksdb.bloom.filter.useful COUNT : 0
rocksdb.bloom.filter.full.positive COUNT : 0
rocksdb.bloom.filter.full.true.positive COUNT : 0
rocksdb.bloom.filter.micros COUNT : 0
rocksdb.persistent.cache.hit COUNT : 0
rocksdb.persistent.cache.miss COUNT : 0
rocksdb.sim.block.cache.hit COUNT : 0
rocksdb.sim.block.cache.miss COUNT : 0
rocksdb.memtable.hit COUNT : 0
rocksdb.memtable.miss COUNT : 0
rocksdb.l0.hit COUNT : 0
rocksdb.l1.hit COUNT : 0
rocksdb.l2andup.hit COUNT : 0
rocksdb.compaction.key.drop.new COUNT : 0
rocksdb.compaction.key.drop.obsolete COUNT : 0
rocksdb.compaction.key.drop.range_del COUNT : 0
rocksdb.compaction.key.drop.user COUNT : 0
rocksdb.compaction.range_del.drop.obsolete COUNT : 0
rocksdb.compaction.optimized.del.drop.obsolete COUNT : 0
rocksdb.compaction.cancelled COUNT : 0
rocksdb.number.keys.written COUNT : 0
rocksdb.number.keys.read COUNT : 0
rocksdb.number.keys.updated COUNT : 0
rocksdb.bytes.written COUNT : 0
rocksdb.bytes.read COUNT : 0
rocksdb.number.db.seek COUNT : 0
rocksdb.number.db.next COUNT : 0
rocksdb.number.db.prev COUNT : 0
rocksdb.number.db.seek.found COUNT : 0
rocksdb.number.db.next.found COUNT : 0
rocksdb.number.db.prev.found COUNT : 0
rocksdb.db.iter.bytes.read COUNT : 0
rocksdb.no.file.closes COUNT : 0
rocksdb.no.file.opens COUNT : 0
rocksdb.no.file.errors COUNT : 0
rocksdb.l0.slowdown.micros COUNT : 0
rocksdb.memtable.compaction.micros COUNT : 0
rocksdb.l0.num.files.stall.micros COUNT : 0
rocksdb.stall.micros COUNT : 0
rocksdb.db.mutex.wait.micros COUNT : 0
rocksdb.rate.limit.delay.millis COUNT : 0
rocksdb.num.iterators COUNT : 0
rocksdb.number.multiget.get COUNT : 0
rocksdb.number.multiget.keys.read COUNT : 0
rocksdb.number.multiget.bytes.read COUNT : 0
rocksdb.number.deletes.filtered COUNT : 0
rocksdb.number.merge.failures COUNT : 0
rocksdb.bloom.filter.prefix.checked COUNT : 0
rocksdb.bloom.filter.prefix.useful COUNT : 0
rocksdb.number.reseeks.iteration COUNT : 0
rocksdb.getupdatessince.calls COUNT : 0
rocksdb.block.cachecompressed.miss COUNT : 0
rocksdb.block.cachecompressed.hit COUNT : 0
rocksdb.block.cachecompressed.add COUNT : 0
rocksdb.block.cachecompressed.add.failures COUNT : 0
rocksdb.wal.synced COUNT : 0
rocksdb.wal.bytes COUNT : 0
rocksdb.write.self COUNT : 0
rocksdb.write.other COUNT : 0
rocksdb.write.timeout COUNT : 0
rocksdb.write.wal COUNT : 0
rocksdb.compact.read.bytes COUNT : 0
rocksdb.compact.write.bytes COUNT : 0
rocksdb.flush.write.bytes COUNT : 0
rocksdb.compact.read.marked.bytes COUNT : 0
rocksdb.compact.read.periodic.bytes COUNT : 0
rocksdb.compact.read.ttl.bytes COUNT : 0
rocksdb.compact.write.marked.bytes COUNT : 0
rocksdb.compact.write.periodic.bytes COUNT : 0
rocksdb.compact.write.ttl.bytes COUNT : 0
rocksdb.number.direct.load.table.properties COUNT : 0
rocksdb.number.superversion_acquires COUNT : 0
rocksdb.number.superversion_releases COUNT : 0
rocksdb.number.superversion_cleanups COUNT : 0
rocksdb.number.block.compressed COUNT : 0
rocksdb.number.block.decompressed COUNT : 0
rocksdb.number.block.not_compressed COUNT : 0
rocksdb.merge.operation.time.nanos COUNT : 0
rocksdb.filter.operation.time.nanos COUNT : 0
rocksdb.row.cache.hit COUNT : 0
rocksdb.row.cache.miss COUNT : 0
rocksdb.read.amp.estimate.useful.bytes COUNT : 0
rocksdb.read.amp.total.read.bytes COUNT : 0
rocksdb.number.rate_limiter.drains COUNT : 0
rocksdb.number.iter.skip COUNT : 0
rocksdb.blobdb.num.put COUNT : 0
rocksdb.blobdb.num.write COUNT : 0
rocksdb.blobdb.num.get COUNT : 0
rocksdb.blobdb.num.multiget COUNT : 0
rocksdb.blobdb.num.seek COUNT : 0
rocksdb.blobdb.num.next COUNT : 0
rocksdb.blobdb.num.prev COUNT : 0
rocksdb.blobdb.num.keys.written COUNT : 0
rocksdb.blobdb.num.keys.read COUNT : 0
rocksdb.blobdb.bytes.written COUNT : 0
rocksdb.blobdb.bytes.read COUNT : 0
rocksdb.blobdb.write.inlined COUNT : 0
rocksdb.blobdb.write.inlined.ttl COUNT : 0
rocksdb.blobdb.write.blob COUNT : 0
rocksdb.blobdb.write.blob.ttl COUNT : 0
rocksdb.blobdb.blob.file.bytes.written COUNT : 0
rocksdb.blobdb.blob.file.bytes.read COUNT : 0
rocksdb.blobdb.blob.file.synced COUNT : 0
rocksdb.blobdb.blob.index.expired.count COUNT : 0
rocksdb.blobdb.blob.index.expired.size COUNT : 0
rocksdb.blobdb.blob.index.evicted.count COUNT : 0
rocksdb.blobdb.blob.index.evicted.size COUNT : 0
rocksdb.blobdb.gc.num.files COUNT : 0
rocksdb.blobdb.gc.num.new.files COUNT : 0
rocksdb.blobdb.gc.failures COUNT : 0
rocksdb.blobdb.gc.num.keys.overwritten COUNT : 0
rocksdb.blobdb.gc.num.keys.expired COUNT : 0
rocksdb.blobdb.gc.num.keys.relocated COUNT : 0
rocksdb.blobdb.gc.bytes.overwritten COUNT : 0
rocksdb.blobdb.gc.bytes.expired COUNT : 0
rocksdb.blobdb.gc.bytes.relocated COUNT : 0
rocksdb.blobdb.fifo.num.files.evicted COUNT : 0
rocksdb.blobdb.fifo.num.keys.evicted COUNT : 0
rocksdb.blobdb.fifo.bytes.evicted COUNT : 0
rocksdb.txn.overhead.mutex.prepare COUNT : 0
rocksdb.txn.overhead.mutex.old.commit.map COUNT : 0
rocksdb.txn.overhead.duplicate.key COUNT : 0
rocksdb.txn.overhead.mutex.snapshot COUNT : 0
rocksdb.txn.get.tryagain COUNT : 0
rocksdb.number.multiget.keys.found COUNT : 0
rocksdb.num.iterator.created COUNT : 0
rocksdb.num.iterator.deleted COUNT : 0
rocksdb.block.cache.compression.dict.miss COUNT : 0
rocksdb.block.cache.compression.dict.hit COUNT : 0
rocksdb.block.cache.compression.dict.add COUNT : 0
rocksdb.block.cache.compression.dict.bytes.insert COUNT : 0
rocksdb.block.cache.compression.dict.bytes.evict COUNT : 0
rocksdb.block.cache.add.redundant COUNT : 0
rocksdb.block.cache.index.add.redundant COUNT : 0
rocksdb.block.cache.filter.add.redundant COUNT : 0
rocksdb.block.cache.data.add.redundant COUNT : 0
rocksdb.block.cache.compression.dict.add.redundant COUNT : 0
rocksdb.files.marked.trash COUNT : 0
rocksdb.files.deleted.immediately COUNT : 0
rocksdb.error.handler.bg.errro.count COUNT : 0
rocksdb.error.handler.bg.io.errro.count COUNT : 0
rocksdb.error.handler.bg.retryable.io.errro.count COUNT : 0
rocksdb.error.handler.autoresume.count COUNT : 0
rocksdb.error.handler.autoresume.retry.total.count COUNT : 0
rocksdb.error.handler.autoresume.success.count COUNT : 0
rocksdb.memtable.payload.bytes.at.flush COUNT : 0
rocksdb.memtable.garbage.bytes.at.flush COUNT : 0
rocksdb.secondary.cache.hits COUNT : 0
rocksdb.verify_checksum.read.bytes COUNT : 0
rocksdb.backup.read.bytes COUNT : 0
rocksdb.backup.write.bytes COUNT : 0
rocksdb.remote.compact.read.bytes COUNT : 0
rocksdb.remote.compact.write.bytes COUNT : 0
rocksdb.hot.file.read.bytes COUNT : 0
rocksdb.warm.file.read.bytes COUNT : 0
rocksdb.cold.file.read.bytes COUNT : 0
rocksdb.hot.file.read.count COUNT : 0
rocksdb.warm.file.read.count COUNT : 0
rocksdb.cold.file.read.count COUNT : 0
rocksdb.db.get.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.db.write.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.compaction.times.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.compaction.times.cpu_micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.subcompaction.setup.times.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.table.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.compaction.outfile.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.wal.file.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.manifest.file.sync.micros P50 : 580.000000 P95 : 652.000000 P99 : 652.000000 P100 : 652.000000 COUNT : 4 SUM : 2339
rocksdb.table.open.io.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.db.multiget.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.read.block.compaction.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.read.block.get.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.write.raw.block.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.l0.slowdown.count P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.memtable.compaction.count P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.num.files.stall.count P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.hard.rate.limit.delay.count P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.soft.rate.limit.delay.count P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.numfiles.in.singlecompaction P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.db.seek.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.db.write.stall P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.sst.read.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.num.subcompactions.scheduled P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.bytes.per.read P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.bytes.per.write P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.bytes.per.multiget P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.bytes.compressed P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.bytes.decompressed P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.compression.times.nanos P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.decompression.times.nanos P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.read.num.merge_operands P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.key.size P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.value.size P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.write.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.get.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.multiget.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.seek.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.next.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.prev.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.blob.file.write.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.blob.file.read.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.blob.file.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.gc.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.compression.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.blobdb.decompression.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.db.flush.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.sst.batch.size P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.num.index.and.filter.blocks.read.per.level P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.num.data.blocks.read.per.level P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.num.sst.read.per.level P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
rocksdb.error.handler.autoresume.retry.count P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
2022/07/15-11:01:18.182526 139706274150144 [/db_impl/db_impl.cc:827] ------- PERSISTING STATS -------
2022/07/15-11:01:18.182542 139706274150144 [/db_impl/db_impl.cc:896] [Pre-GC] In-memory stats history size: 48 bytes, slice count: 0
2022/07/15-11:01:18.182543 139706274150144 [/db_impl/db_impl.cc:905] [Post-GC] In-memory stats history size: 48 bytes, slice count: 0
2022/07/15-11:03:47.716492 139706018649856 [/version_set.cc:3746] More existing levels in DB than needed. max_bytes_for_level_multiplier may not be guaranteed.
2022/07/15-11:03:47.717580 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/default_0000000000000000000.sst was ingested in L6 with path /stm/db//000012.sst (global_seqno=0)
2022/07/15-11:03:47.717591 139706018649856 EVENT_LOG_v1 {"time_micros": 1657854227717575, "event": "ingest_finished", "files_ingested": ["file", "/stm/db//000012.sst", "level", 6], "lsm_state": [0, 0, 0, 0, 0, 0, 1]}
2022/07/15-11:04:18.089936 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000000.sst was ingested in L6 with path /stm/db//000013.sst (global_seqno=0)
2022/07/15-11:04:18.089947 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000001.sst was ingested in L6 with path /stm/db//000014.sst (global_seqno=0)
2022/07/15-11:04:18.089950 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000002.sst was ingested in L6 with path /stm/db//000015.sst (global_seqno=0)
2022/07/15-11:04:18.089953 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000003.sst was ingested in L6 with path /stm/db//000016.sst (global_seqno=0)
2022/07/15-11:04:18.089955 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000004.sst was ingested in L6 with path /stm/db//000017.sst (global_seqno=0)
2022/07/15-11:04:18.089957 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000005.sst was ingested in L6 with path /stm/db//000018.sst (global_seqno=0)
2022/07/15-11:04:18.089959 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000006.sst was ingested in L6 with path /stm/db//000019.sst (global_seqno=0)
2022/07/15-11:04:18.089961 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000007.sst was ingested in L6 with path /stm/db//000020.sst (global_seqno=0)
2022/07/15-11:04:18.089966 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000008.sst was ingested in L6 with path /stm/db//000021.sst (global_seqno=0)
2022/07/15-11:04:18.089967 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000009.sst was ingested in L6 with path /stm/db//000022.sst (global_seqno=0)
2022/07/15-11:04:18.089969 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000010.sst was ingested in L6 with path /stm/db//000023.sst (global_seqno=0)
2022/07/15-11:04:18.089971 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000011.sst was ingested in L6 with path /stm/db//000024.sst (global_seqno=0)
2022/07/15-11:04:18.089972 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000012.sst was ingested in L6 with path /stm/db//000025.sst (global_seqno=0)
2022/07/15-11:04:18.089974 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000013.sst was ingested in L6 with path /stm/db//000026.sst (global_seqno=0)
2022/07/15-11:04:18.089990 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000014.sst was ingested in L6 with path /stm/db//000027.sst (global_seqno=0)
2022/07/15-11:04:18.089991 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000015.sst was ingested in L6 with path /stm/db//000028.sst (global_seqno=0)
2022/07/15-11:04:18.089993 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf01_0000000000000000016.sst was ingested in L6 with path /stm/db//000029.sst (global_seqno=0)
2022/07/15-11:04:18.090001 139706018649856 EVENT_LOG_v1 {"time_micros": 1657854258089932, "event": "ingest_finished", "files_ingested": ["file", "/stm/db//000013.sst", "level", 6, "file", "/stm/db//000014.sst", "level", 6, "file", "/stm/db//000015.sst", "level", 6, "file", "/stm/db//000016.sst", "level", 6, "file", "/stm/db//000017.sst", "level", 6, "file", "/stm/db//000018.sst", "level", 6, "file", "/stm/db//000019.sst", "level", 6, "file", "/stm/db//000020.sst", "level", 6, "file", "/stm/db//000021.sst", "level", 6, "file", "/stm/db//000022.sst", "level", 6, "file", "/stm/db//000023.sst", "level", 6, "file", "/stm/db//000024.sst", "level", 6, "file", "/stm/db//000025.sst", "level", 6, "file", "/stm/db//000026.sst", "level", 6, "file", "/stm/db//000027.sst", "level", 6, "file", "/stm/db//000028.sst", "level", 6, "file", "/stm/db//000029.sst", "level", 6], "lsm_state": [0, 0, 0, 0, 0, 0, 17]}
2022/07/15-11:06:02.782851 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000000.sst was ingested in L6 with path /stm/db//000030.sst (global_seqno=0)
2022/07/15-11:06:02.782866 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000001.sst was ingested in L6 with path /stm/db//000031.sst (global_seqno=0)
2022/07/15-11:06:02.782869 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000002.sst was ingested in L6 with path /stm/db//000032.sst (global_seqno=0)
2022/07/15-11:06:02.782871 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000003.sst was ingested in L6 with path /stm/db//000033.sst (global_seqno=0)
2022/07/15-11:06:02.782873 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000004.sst was ingested in L6 with path /stm/db//000034.sst (global_seqno=0)
2022/07/15-11:06:02.782875 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000005.sst was ingested in L6 with path /stm/db//000035.sst (global_seqno=0)
2022/07/15-11:06:02.782876 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000006.sst was ingested in L6 with path /stm/db//000036.sst (global_seqno=0)
2022/07/15-11:06:02.782878 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000007.sst was ingested in L6 with path /stm/db//000037.sst (global_seqno=0)
2022/07/15-11:06:02.782883 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000008.sst was ingested in L6 with path /stm/db//000038.sst (global_seqno=0)
2022/07/15-11:06:02.782884 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000009.sst was ingested in L6 with path /stm/db//000039.sst (global_seqno=0)
2022/07/15-11:06:02.782886 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000010.sst was ingested in L6 with path /stm/db//000040.sst (global_seqno=0)
2022/07/15-11:06:02.782887 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000011.sst was ingested in L6 with path /stm/db//000041.sst (global_seqno=0)
2022/07/15-11:06:02.782889 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000012.sst was ingested in L6 with path /stm/db//000042.sst (global_seqno=0)
2022/07/15-11:06:02.782890 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000013.sst was ingested in L6 with path /stm/db//000043.sst (global_seqno=0)
2022/07/15-11:06:02.782892 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000014.sst was ingested in L6 with path /stm/db//000044.sst (global_seqno=0)
2022/07/15-11:06:02.783289 139706018649856 [/external_sst_file_ingestion_job.cc:490] [AddFile] External SST file /snp/rg/snapshot/snapshot_684088535/state/cf02_0000000000000000015.sst was ingested in L6 with path /stm/db//000045.sst (global_seqno=0)
2022/07/15-11:06:02.783307 139706018649856 EVENT_LOG_v1 {"time_micros": 1657854362782845, "event": "ingest_finished", "files_ingested": ["file", "/stm/db//000030.sst", "level", 6, "file", "/stm/db//000031.sst", "level", 6, "file", "/stm/db//000032.sst", "level", 6, "file", "/stm/db//000033.sst", "level", 6, "file", "/stm/db//000034.sst", "level", 6, "file", "/stm/db//000035.sst", "level", 6, "file", "/stm/db//000036.sst", "level", 6, "file", "/stm/db//000037.sst", "level", 6, "file", "/stm/db//000038.sst", "level", 6, "file", "/stm/db//000039.sst", "level", 6, "file", "/stm/db//000040.sst", "level", 6, "file", "/stm/db//000041.sst", "level", 6, "file", "/stm/db//000042.sst", "level", 6, "file", "/stm/db//000043.sst", "level", 6, "file", "/stm/db//000044.sst", "level", 6, "file", "/stm/db//000045.sst", "level", 6], "lsm_state": [0, 0, 0, 0, 0, 0, 16]}
2022/07/15-11:11:17.184599 139706274150144 [/db_impl/db_impl.cc:1005] ------- DUMPING STATS -------
2022/07/15-11:11:17.184640 139706274150144 [/db_impl/db_impl.cc:1006]
......
......
......
2022/07/15-12:31:18.185117 139706274150144 [/db_impl/db_impl.cc:827] ------- PERSISTING STATS -------
2022/07/15-12:31:18.185270 139706274150144 [/db_impl/db_impl.cc:883] Storing 179 stats with timestamp 1657859478 to in-memory stats history
2022/07/15-12:31:18.185390 139706274150144 [/db_impl/db_impl.cc:896] [Pre-GC] In-memory stats history size: 75888 bytes, slice count: 9
2022/07/15-12:31:18.185394 139706274150144 [/db_impl/db_impl.cc:905] [Post-GC] In-memory stats history size: 75888 bytes, slice count: 9
2022/07/15-12:31:36.905945 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:31:36.906026 139706431497984 (Original Log Time 2022/07/15-12:31:36.906007) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:31:36.906031 139706431497984 [/flush_job.cc:819] [cf02] [JOB 11] Flushing memtable with next log file: 5
2022/07/15-12:31:36.906048 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859496906044, "job": 11, "event": "flush_started", "num_memtables": 1, "num_entries": 160550, "num_deletes": 0, "total_data_size": 63561264, "memory_usage": 66850040, "flush_reason": "Write Buffer Full"}
2022/07/15-12:31:36.906051 139706431497984 [/flush_job.cc:848] [cf02] [JOB 11] Level-0 flush table #52: started
2022/07/15-12:31:37.100209 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859497100174, "cf_name": "cf02", "job": 11, "event": "table_file_creation", "file_number": 52, "file_size": 24878134, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24320420, "index_size": 673049, "index_partitions": 83, "top_level_index_size": 3749, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327110, "raw_key_size": 9793550, "raw_average_key_size": 61, "raw_value_size": 53286064, "raw_average_value_size": 331, "num_data_blocks": 14929, "num_entries": 160550, "num_filter_entries": 160550, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859467, "oldest_key_time": 1657859467, "file_creation_time": 1657859496, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 52}}
2022/07/15-12:31:37.100226 139706431497984 [/flush_job.cc:937] [cf02] [JOB 11] Level-0 flush table #52: 24878134 bytes OK
2022/07/15-12:31:37.100235 139706431497984 [/flush_job.cc:986] [cf02] [JOB 11] Flush lasted 194216 microseconds, and 183177 cpu microseconds.
2022/07/15-12:31:37.101033 139706431497984 (Original Log Time 2022/07/15-12:31:37.100239) [/memtable_list.cc:471] [cf02] Level-0 commit table #52 started
2022/07/15-12:31:37.101036 139706431497984 (Original Log Time 2022/07/15-12:31:37.100946) [/memtable_list.cc:675] [cf02] Level-0 commit table #52: memtable #1 done
2022/07/15-12:31:37.101038 139706431497984 (Original Log Time 2022/07/15-12:31:37.100970) EVENT_LOG_v1 {"time_micros": 1657859497100963, "job": 11, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 1, 0, 16], "immutable_memtables": 0}
2022/07/15-12:31:37.101041 139706431497984 (Original Log Time 2022/07/15-12:31:37.101002) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 1 0 16] max score 1.00
2022/07/15-12:31:37.101829 139706058053376 (Original Log Time 2022/07/15-12:31:37.101127) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #52 to level-4 24878134 bytes
2022/07/15-12:31:37.101832 139706058053376 (Original Log Time 2022/07/15-12:31:37.101796) EVENT_LOG_v1 {"time_micros": 1657859497101793, "job": 12, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24878134}
2022/07/15-12:31:37.101833 139706058053376 (Original Log Time 2022/07/15-12:31:37.101802) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24878134 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 2 0 16] max score 0.75
2022/07/15-12:32:06.152195 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:32:06.152284 139706431497984 (Original Log Time 2022/07/15-12:32:06.152261) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:32:06.152289 139706431497984 [/flush_job.cc:819] [cf02] [JOB 13] Flushing memtable with next log file: 5
2022/07/15-12:32:06.152311 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859526152304, "job": 13, "event": "flush_started", "num_memtables": 1, "num_entries": 160552, "num_deletes": 0, "total_data_size": 63562013, "memory_usage": 66849960, "flush_reason": "Write Buffer Full"}
2022/07/15-12:32:06.152314 139706431497984 [/flush_job.cc:848] [cf02] [JOB 13] Level-0 flush table #53: started
2022/07/15-12:32:06.360623 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859526360592, "cf_name": "cf02", "job": 13, "event": "table_file_creation", "file_number": 53, "file_size": 24870203, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24312426, "index_size": 673397, "index_partitions": 83, "top_level_index_size": 3746, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327107, "raw_key_size": 9793672, "raw_average_key_size": 61, "raw_value_size": 53286685, "raw_average_value_size": 331, "num_data_blocks": 14937, "num_entries": 160552, "num_filter_entries": 160552, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859496, "oldest_key_time": 1657859496, "file_creation_time": 1657859526, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 53}}
2022/07/15-12:32:06.360651 139706431497984 [/flush_job.cc:937] [cf02] [JOB 13] Level-0 flush table #53: 24870203 bytes OK
2022/07/15-12:32:06.360661 139706431497984 [/flush_job.cc:986] [cf02] [JOB 13] Flush lasted 208384 microseconds, and 197073 cpu microseconds.
2022/07/15-12:32:06.361429 139706431497984 (Original Log Time 2022/07/15-12:32:06.360665) [/memtable_list.cc:471] [cf02] Level-0 commit table #53 started
2022/07/15-12:32:06.361431 139706431497984 (Original Log Time 2022/07/15-12:32:06.361346) [/memtable_list.cc:675] [cf02] Level-0 commit table #53: memtable #1 done
2022/07/15-12:32:06.361433 139706431497984 (Original Log Time 2022/07/15-12:32:06.361366) EVENT_LOG_v1 {"time_micros": 1657859526361360, "job": 13, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 2, 0, 16], "immutable_memtables": 0}
2022/07/15-12:32:06.361434 139706431497984 (Original Log Time 2022/07/15-12:32:06.361405) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 2 0 16] max score 1.00
2022/07/15-12:32:06.362188 139706047563520 (Original Log Time 2022/07/15-12:32:06.361492) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #53 to level-4 24870203 bytes
2022/07/15-12:32:06.362191 139706047563520 (Original Log Time 2022/07/15-12:32:06.362159) EVENT_LOG_v1 {"time_micros": 1657859526362155, "job": 14, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24870203}
2022/07/15-12:32:06.362192 139706047563520 (Original Log Time 2022/07/15-12:32:06.362166) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24870203 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 3 0 16] max score 0.75
2022/07/15-12:32:35.434732 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:32:35.434802 139706431497984 (Original Log Time 2022/07/15-12:32:35.434781) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:32:35.434806 139706431497984 [/flush_job.cc:819] [cf02] [JOB 15] Flushing memtable with next log file: 5
2022/07/15-12:32:35.434824 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859555434818, "job": 15, "event": "flush_started", "num_memtables": 1, "num_entries": 160541, "num_deletes": 0, "total_data_size": 63556000, "memory_usage": 66849928, "flush_reason": "Write Buffer Full"}
2022/07/15-12:32:35.434827 139706431497984 [/flush_job.cc:848] [cf02] [JOB 15] Level-0 flush table #54: started
2022/07/15-12:32:35.639957 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859555639923, "cf_name": "cf02", "job": 15, "event": "table_file_creation", "file_number": 54, "file_size": 24866854, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24309313, "index_size": 672616, "index_partitions": 83, "top_level_index_size": 3748, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327174, "raw_key_size": 9793001, "raw_average_key_size": 61, "raw_value_size": 53281376, "raw_average_value_size": 331, "num_data_blocks": 14920, "num_entries": 160541, "num_filter_entries": 160541, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859526, "oldest_key_time": 1657859526, "file_creation_time": 1657859555, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 54}}
2022/07/15-12:32:35.639972 139706431497984 [/flush_job.cc:937] [cf02] [JOB 15] Level-0 flush table #54: 24866854 bytes OK
2022/07/15-12:32:35.639980 139706431497984 [/flush_job.cc:986] [cf02] [JOB 15] Flush lasted 205185 microseconds, and 193821 cpu microseconds.
2022/07/15-12:32:35.640847 139706431497984 (Original Log Time 2022/07/15-12:32:35.639985) [/memtable_list.cc:471] [cf02] Level-0 commit table #54 started
2022/07/15-12:32:35.640850 139706431497984 (Original Log Time 2022/07/15-12:32:35.640765) [/memtable_list.cc:675] [cf02] Level-0 commit table #54: memtable #1 done
2022/07/15-12:32:35.640851 139706431497984 (Original Log Time 2022/07/15-12:32:35.640786) EVENT_LOG_v1 {"time_micros": 1657859555640781, "job": 15, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 3, 0, 16], "immutable_memtables": 0}
2022/07/15-12:32:35.640853 139706431497984 (Original Log Time 2022/07/15-12:32:35.640820) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 3 0 16] max score 1.00
2022/07/15-12:32:35.641589 139706037073664 (Original Log Time 2022/07/15-12:32:35.640904) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #54 to level-4 24866854 bytes
2022/07/15-12:32:35.641592 139706037073664 (Original Log Time 2022/07/15-12:32:35.641567) EVENT_LOG_v1 {"time_micros": 1657859555641564, "job": 16, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24866854}
2022/07/15-12:32:35.641593 139706037073664 (Original Log Time 2022/07/15-12:32:35.641573) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24866854 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 4 0 16] max score 0.75
2022/07/15-12:33:04.669431 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:33:04.669504 139706431497984 (Original Log Time 2022/07/15-12:33:04.669486) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:33:04.669508 139706431497984 [/flush_job.cc:819] [cf02] [JOB 17] Flushing memtable with next log file: 5
2022/07/15-12:33:04.669524 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859584669520, "job": 17, "event": "flush_started", "num_memtables": 1, "num_entries": 160548, "num_deletes": 0, "total_data_size": 63561338, "memory_usage": 66850264, "flush_reason": "Write Buffer Full"}
2022/07/15-12:33:04.669526 139706431497984 [/flush_job.cc:848] [cf02] [JOB 17] Level-0 flush table #55: started
2022/07/15-12:33:04.866364 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859584866332, "cf_name": "cf02", "job": 17, "event": "table_file_creation", "file_number": 55, "file_size": 24871173, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24313272, "index_size": 673127, "index_partitions": 83, "top_level_index_size": 3753, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327360, "raw_key_size": 9793428, "raw_average_key_size": 61, "raw_value_size": 53286266, "raw_average_value_size": 331, "num_data_blocks": 14932, "num_entries": 160548, "num_filter_entries": 160548, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859555, "oldest_key_time": 1657859555, "file_creation_time": 1657859584, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 55}}
2022/07/15-12:33:04.866379 139706431497984 [/flush_job.cc:937] [cf02] [JOB 17] Level-0 flush table #55: 24871173 bytes OK
2022/07/15-12:33:04.866388 139706431497984 [/flush_job.cc:986] [cf02] [JOB 17] Flush lasted 196890 microseconds, and 185311 cpu microseconds.
2022/07/15-12:33:04.867141 139706431497984 (Original Log Time 2022/07/15-12:33:04.866392) [/memtable_list.cc:471] [cf02] Level-0 commit table #55 started
2022/07/15-12:33:04.867145 139706431497984 (Original Log Time 2022/07/15-12:33:04.867052) [/memtable_list.cc:675] [cf02] Level-0 commit table #55: memtable #1 done
2022/07/15-12:33:04.867147 139706431497984 (Original Log Time 2022/07/15-12:33:04.867075) EVENT_LOG_v1 {"time_micros": 1657859584867070, "job": 17, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 4, 0, 16], "immutable_memtables": 0}
2022/07/15-12:33:04.867149 139706431497984 (Original Log Time 2022/07/15-12:33:04.867108) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 4 0 16] max score 1.00
2022/07/15-12:33:04.867892 139706441987840 (Original Log Time 2022/07/15-12:33:04.867180) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #55 to level-4 24871173 bytes
2022/07/15-12:33:04.867895 139706441987840 (Original Log Time 2022/07/15-12:33:04.867871) EVENT_LOG_v1 {"time_micros": 1657859584867868, "job": 18, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24871173}
2022/07/15-12:33:04.867896 139706441987840 (Original Log Time 2022/07/15-12:33:04.867877) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24871173 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 5 0 16] max score 0.75
2022/07/15-12:33:13.605316 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf01] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:33:13.605383 139706431497984 (Original Log Time 2022/07/15-12:33:13.605360) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf01], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:33:13.605387 139706431497984 [/flush_job.cc:819] [cf01] [JOB 19] Flushing memtable with next log file: 5
2022/07/15-12:33:13.605407 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859593605399, "job": 19, "event": "flush_started", "num_memtables": 1, "num_entries": 666726, "num_deletes": 0, "total_data_size": 56376998, "memory_usage": 66849952, "flush_reason": "Write Buffer Full"}
2022/07/15-12:33:13.605409 139706431497984 [/flush_job.cc:848] [cf01] [JOB 19] Level-0 flush table #56: started
2022/07/15-12:33:14.095358 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859594095324, "cf_name": "cf01", "job": 19, "event": "table_file_creation", "file_number": 56, "file_size": 43708500, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 42192526, "index_size": 394321, "index_partitions": 180, "top_level_index_size": 6731, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 1341139, "raw_key_size": 49709738, "raw_average_key_size": 74, "raw_value_size": 5333808, "raw_average_value_size": 8, "num_data_blocks": 10418, "num_entries": 666726, "num_filter_entries": 666726, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf01", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859472, "oldest_key_time": 1657859472, "file_creation_time": 1657859593, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 56}}
2022/07/15-12:33:14.095375 139706431497984 [/flush_job.cc:937] [cf01] [JOB 19] Level-0 flush table #56: 43708500 bytes OK
2022/07/15-12:33:14.095386 139706431497984 [/flush_job.cc:986] [cf01] [JOB 19] Flush lasted 490009 microseconds, and 470144 cpu microseconds.
2022/07/15-12:33:14.096119 139706431497984 (Original Log Time 2022/07/15-12:33:14.095391) [/memtable_list.cc:471] [cf01] Level-0 commit table #56 started
2022/07/15-12:33:14.096122 139706431497984 (Original Log Time 2022/07/15-12:33:14.096041) [/memtable_list.cc:675] [cf01] Level-0 commit table #56: memtable #1 done
2022/07/15-12:33:14.096123 139706431497984 (Original Log Time 2022/07/15-12:33:14.096070) EVENT_LOG_v1 {"time_micros": 1657859594096064, "job": 19, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [2, 0, 0, 0, 0, 0, 17], "immutable_memtables": 0}
2022/07/15-12:33:14.096125 139706431497984 (Original Log Time 2022/07/15-12:33:14.096093) [/db_impl/db_impl_compaction_flush.cc:264] [cf01] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[2 0 0 0 0 0 17] max score 0.50
2022/07/15-12:33:21.520668 139706018649856 [/db_impl/db_impl_write.cc:1817] [default] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:33:21.520733 139706431497984 (Original Log Time 2022/07/15-12:33:21.520716) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [default], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:33:21.520737 139706431497984 [/flush_job.cc:819] [default] [JOB 20] Flushing memtable with next log file: 5
2022/07/15-12:33:21.520753 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859601520748, "job": 20, "event": "flush_started", "num_memtables": 1, "num_entries": 688695, "num_deletes": 0, "total_data_size": 54384107, "memory_usage": 66849944, "flush_reason": "Write Buffer Full"}
2022/07/15-12:33:21.520755 139706431497984 [/flush_job.cc:848] [default] [JOB 20] Level-0 flush table #57: started
2022/07/15-12:33:21.798826 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859601798777, "cf_name": "default", "job": 20, "event": "table_file_creation", "file_number": 57, "file_size": 11756639, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 10913164, "index_size": 199846, "index_partitions": 100, "top_level_index_size": 3587, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 752568, "raw_key_size": 13457376, "raw_average_key_size": 36, "raw_value_size": 15314072, "raw_average_value_size": 40, "num_data_blocks": 5493, "num_entries": 373816, "num_filter_entries": 373816, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859476, "oldest_key_time": 1657859476, "file_creation_time": 1657859601, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 57}}
2022/07/15-12:33:21.798843 139706431497984 [/flush_job.cc:937] [default] [JOB 20] Level-0 flush table #57: 11756639 bytes OK
2022/07/15-12:33:21.798852 139706431497984 [/flush_job.cc:986] [default] [JOB 20] Flush lasted 278125 microseconds, and 272261 cpu microseconds.
2022/07/15-12:33:21.798887 139706431497984 [/version_set.cc:3746] More existing levels in DB than needed. max_bytes_for_level_multiplier may not be guaranteed.
2022/07/15-12:33:21.799592 139706431497984 (Original Log Time 2022/07/15-12:33:21.798857) [/memtable_list.cc:471] [default] Level-0 commit table #57 started
2022/07/15-12:33:21.799595 139706431497984 (Original Log Time 2022/07/15-12:33:21.799523) [/memtable_list.cc:675] [default] Level-0 commit table #57: memtable #1 done
2022/07/15-12:33:21.799596 139706431497984 (Original Log Time 2022/07/15-12:33:21.799543) EVENT_LOG_v1 {"time_micros": 1657859601799538, "job": 20, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [2, 0, 0, 0, 0, 0, 1], "immutable_memtables": 0}
2022/07/15-12:33:21.799597 139706431497984 (Original Log Time 2022/07/15-12:33:21.799566) [/db_impl/db_impl_compaction_flush.cc:264] [default] Level summary: base level 6 level multiplier 10.00 max bytes base 268435456 files[2 0 0 0 0 0 1] max score 0.50
2022/07/15-12:33:33.777761 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:33:33.777827 139706431497984 (Original Log Time 2022/07/15-12:33:33.777810) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:33:33.777831 139706431497984 [/flush_job.cc:819] [cf02] [JOB 21] Flushing memtable with next log file: 5
2022/07/15-12:33:33.777847 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859613777842, "job": 21, "event": "flush_started", "num_memtables": 1, "num_entries": 160559, "num_deletes": 0, "total_data_size": 63562569, "memory_usage": 66849960, "flush_reason": "Write Buffer Full"}
2022/07/15-12:33:33.777849 139706431497984 [/flush_job.cc:848] [cf02] [JOB 21] Level-0 flush table #58: started
2022/07/15-12:33:33.988350 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859613988320, "cf_name": "cf02", "job": 21, "event": "table_file_creation", "file_number": 58, "file_size": 24876931, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24319178, "index_size": 672563, "index_partitions": 83, "top_level_index_size": 3745, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327433, "raw_key_size": 9794099, "raw_average_key_size": 61, "raw_value_size": 53286793, "raw_average_value_size": 331, "num_data_blocks": 14919, "num_entries": 160559, "num_filter_entries": 160559, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859584, "oldest_key_time": 1657859584, "file_creation_time": 1657859613, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 58}}
2022/07/15-12:33:33.988368 139706431497984 [/flush_job.cc:937] [cf02] [JOB 21] Level-0 flush table #58: 24876931 bytes OK
2022/07/15-12:33:33.988376 139706431497984 [/flush_job.cc:986] [cf02] [JOB 21] Flush lasted 210554 microseconds, and 199344 cpu microseconds.
2022/07/15-12:33:33.989174 139706431497984 (Original Log Time 2022/07/15-12:33:33.988380) [/memtable_list.cc:471] [cf02] Level-0 commit table #58 started
2022/07/15-12:33:33.989177 139706431497984 (Original Log Time 2022/07/15-12:33:33.989081) [/memtable_list.cc:675] [cf02] Level-0 commit table #58: memtable #1 done
2022/07/15-12:33:33.989178 139706431497984 (Original Log Time 2022/07/15-12:33:33.989101) EVENT_LOG_v1 {"time_micros": 1657859613989096, "job": 21, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 5, 0, 16], "immutable_memtables": 0}
2022/07/15-12:33:33.989180 139706431497984 (Original Log Time 2022/07/15-12:33:33.989136) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 5 0 16] max score 1.00
2022/07/15-12:33:33.989934 139706058053376 (Original Log Time 2022/07/15-12:33:33.989197) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #58 to level-4 24876931 bytes
2022/07/15-12:33:33.989936 139706058053376 (Original Log Time 2022/07/15-12:33:33.989916) EVENT_LOG_v1 {"time_micros": 1657859613989913, "job": 22, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24876931}
2022/07/15-12:33:33.989937 139706058053376 (Original Log Time 2022/07/15-12:33:33.989920) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24876931 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 6 0 16] max score 0.75
2022/07/15-12:34:03.043128 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:34:03.043192 139706431497984 (Original Log Time 2022/07/15-12:34:03.043174) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:34:03.043196 139706431497984 [/flush_job.cc:819] [cf02] [JOB 23] Flushing memtable with next log file: 5
2022/07/15-12:34:03.043212 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859643043208, "job": 23, "event": "flush_started", "num_memtables": 1, "num_entries": 160545, "num_deletes": 0, "total_data_size": 63559214, "memory_usage": 66849880, "flush_reason": "Write Buffer Full"}
2022/07/15-12:34:03.043214 139706431497984 [/flush_job.cc:848] [cf02] [JOB 23] Level-0 flush table #59: started
2022/07/15-12:34:03.247465 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859643247436, "cf_name": "cf02", "job": 23, "event": "table_file_creation", "file_number": 59, "file_size": 24872542, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24315040, "index_size": 672754, "index_partitions": 83, "top_level_index_size": 3747, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327105, "raw_key_size": 9793245, "raw_average_key_size": 61, "raw_value_size": 53284334, "raw_average_value_size": 331, "num_data_blocks": 14923, "num_entries": 160545, "num_filter_entries": 160545, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859613, "oldest_key_time": 1657859613, "file_creation_time": 1657859643, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 59}}
2022/07/15-12:34:03.247483 139706431497984 [/flush_job.cc:937] [cf02] [JOB 23] Level-0 flush table #59: 24872542 bytes OK
2022/07/15-12:34:03.247492 139706431497984 [/flush_job.cc:986] [cf02] [JOB 23] Flush lasted 204306 microseconds, and 193368 cpu microseconds.
2022/07/15-12:34:03.248265 139706431497984 (Original Log Time 2022/07/15-12:34:03.247496) [/memtable_list.cc:471] [cf02] Level-0 commit table #59 started
2022/07/15-12:34:03.248268 139706431497984 (Original Log Time 2022/07/15-12:34:03.248192) [/memtable_list.cc:675] [cf02] Level-0 commit table #59: memtable #1 done
2022/07/15-12:34:03.248269 139706431497984 (Original Log Time 2022/07/15-12:34:03.248211) EVENT_LOG_v1 {"time_micros": 1657859643248205, "job": 23, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 6, 0, 16], "immutable_memtables": 0}
2022/07/15-12:34:03.248271 139706431497984 (Original Log Time 2022/07/15-12:34:03.248241) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 6 0 16] max score 1.00
2022/07/15-12:34:03.249071 139706047563520 (Original Log Time 2022/07/15-12:34:03.248292) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #59 to level-4 24872542 bytes
2022/07/15-12:34:03.249074 139706047563520 (Original Log Time 2022/07/15-12:34:03.249043) EVENT_LOG_v1 {"time_micros": 1657859643249040, "job": 24, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24872542}
2022/07/15-12:34:03.249081 139706047563520 (Original Log Time 2022/07/15-12:34:03.249046) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24872542 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 7 0 16] max score 0.75
2022/07/15-12:34:32.288100 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:34:32.288175 139706431497984 (Original Log Time 2022/07/15-12:34:32.288156) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:34:32.288180 139706431497984 [/flush_job.cc:819] [cf02] [JOB 25] Flushing memtable with next log file: 5
2022/07/15-12:34:32.288198 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859672288192, "job": 25, "event": "flush_started", "num_memtables": 1, "num_entries": 160553, "num_deletes": 0, "total_data_size": 63562109, "memory_usage": 66849952, "flush_reason": "Write Buffer Full"}
2022/07/15-12:34:32.288201 139706431497984 [/flush_job.cc:848] [cf02] [JOB 25] Level-0 flush table #60: started
2022/07/15-12:34:32.479422 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859672479374, "cf_name": "cf02", "job": 25, "event": "table_file_creation", "file_number": 60, "file_size": 24874464, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24316916, "index_size": 673166, "index_partitions": 83, "top_level_index_size": 3750, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327112, "raw_key_size": 9793733, "raw_average_key_size": 61, "raw_value_size": 53286717, "raw_average_value_size": 331, "num_data_blocks": 14932, "num_entries": 160553, "num_filter_entries": 160553, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859643, "oldest_key_time": 1657859643, "file_creation_time": 1657859672, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 60}}
2022/07/15-12:34:32.479439 139706431497984 [/flush_job.cc:937] [cf02] [JOB 25] Level-0 flush table #60: 24874464 bytes OK
2022/07/15-12:34:32.479448 139706431497984 [/flush_job.cc:986] [cf02] [JOB 25] Flush lasted 191279 microseconds, and 180226 cpu microseconds.
2022/07/15-12:34:32.480217 139706431497984 (Original Log Time 2022/07/15-12:34:32.479453) [/memtable_list.cc:471] [cf02] Level-0 commit table #60 started
2022/07/15-12:34:32.480220 139706431497984 (Original Log Time 2022/07/15-12:34:32.480147) [/memtable_list.cc:675] [cf02] Level-0 commit table #60: memtable #1 done
2022/07/15-12:34:32.480221 139706431497984 (Original Log Time 2022/07/15-12:34:32.480165) EVENT_LOG_v1 {"time_micros": 1657859672480161, "job": 25, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 7, 0, 16], "immutable_memtables": 0}
2022/07/15-12:34:32.480223 139706431497984 (Original Log Time 2022/07/15-12:34:32.480193) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 7 0 16] max score 1.00
2022/07/15-12:34:32.481056 139706037073664 (Original Log Time 2022/07/15-12:34:32.480242) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #60 to level-4 24874464 bytes
2022/07/15-12:34:32.481059 139706037073664 (Original Log Time 2022/07/15-12:34:32.481028) EVENT_LOG_v1 {"time_micros": 1657859672481025, "job": 26, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24874464}
2022/07/15-12:34:32.481060 139706037073664 (Original Log Time 2022/07/15-12:34:32.481036) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24874464 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 8 0 16] max score 0.75
2022/07/15-12:35:01.369356 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:35:01.369417 139706431497984 (Original Log Time 2022/07/15-12:35:01.369401) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:35:01.369421 139706431497984 [/flush_job.cc:819] [cf02] [JOB 27] Flushing memtable with next log file: 5
2022/07/15-12:35:01.369442 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859701369436, "job": 27, "event": "flush_started", "num_memtables": 1, "num_entries": 160550, "num_deletes": 0, "total_data_size": 63561145, "memory_usage": 66849912, "flush_reason": "Write Buffer Full"}
2022/07/15-12:35:01.369445 139706431497984 [/flush_job.cc:848] [cf02] [JOB 27] Level-0 flush table #61: started
2022/07/15-12:35:01.560433 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859701560398, "cf_name": "cf02", "job": 27, "event": "table_file_creation", "file_number": 61, "file_size": 24875683, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24318205, "index_size": 673181, "index_partitions": 83, "top_level_index_size": 3748, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327039, "raw_key_size": 9793550, "raw_average_key_size": 61, "raw_value_size": 53285945, "raw_average_value_size": 331, "num_data_blocks": 14933, "num_entries": 160550, "num_filter_entries": 160550, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859672, "oldest_key_time": 1657859672, "file_creation_time": 1657859701, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 61}}
2022/07/15-12:35:01.560451 139706431497984 [/flush_job.cc:937] [cf02] [JOB 27] Level-0 flush table #61: 24875683 bytes OK
2022/07/15-12:35:01.560459 139706431497984 [/flush_job.cc:986] [cf02] [JOB 27] Flush lasted 191046 microseconds, and 180083 cpu microseconds.
2022/07/15-12:35:01.561264 139706431497984 (Original Log Time 2022/07/15-12:35:01.560464) [/memtable_list.cc:471] [cf02] Level-0 commit table #61 started
2022/07/15-12:35:01.561268 139706431497984 (Original Log Time 2022/07/15-12:35:01.561184) [/memtable_list.cc:675] [cf02] Level-0 commit table #61: memtable #1 done
2022/07/15-12:35:01.561270 139706431497984 (Original Log Time 2022/07/15-12:35:01.561204) EVENT_LOG_v1 {"time_micros": 1657859701561198, "job": 27, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 8, 0, 16], "immutable_memtables": 0}
2022/07/15-12:35:01.561272 139706431497984 (Original Log Time 2022/07/15-12:35:01.561235) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 8 0 16] max score 1.00
2022/07/15-12:35:01.562041 139706441987840 (Original Log Time 2022/07/15-12:35:01.561295) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #61 to level-4 24875683 bytes
2022/07/15-12:35:01.562044 139706441987840 (Original Log Time 2022/07/15-12:35:01.562017) EVENT_LOG_v1 {"time_micros": 1657859701562014, "job": 28, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24875683}
2022/07/15-12:35:01.562045 139706441987840 (Original Log Time 2022/07/15-12:35:01.562024) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24875683 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 9 0 16] max score 0.83
2022/07/15-12:35:14.843577 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf01] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:35:14.843660 139706431497984 (Original Log Time 2022/07/15-12:35:14.843639) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf01], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:35:14.843665 139706431497984 [/flush_job.cc:819] [cf01] [JOB 29] Flushing memtable with next log file: 5
2022/07/15-12:35:14.843692 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859714843686, "job": 29, "event": "flush_started", "num_memtables": 1, "num_entries": 666732, "num_deletes": 0, "total_data_size": 56376909, "memory_usage": 66849872, "flush_reason": "Write Buffer Full"}
2022/07/15-12:35:14.843695 139706431497984 [/flush_job.cc:848] [cf01] [JOB 29] Level-0 flush table #62: started
2022/07/15-12:35:15.333544 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859715333515, "cf_name": "cf01", "job": 29, "event": "table_file_creation", "file_number": 62, "file_size": 43708244, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 42192483, "index_size": 394249, "index_partitions": 180, "top_level_index_size": 6733, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 1341154, "raw_key_size": 49709589, "raw_average_key_size": 74, "raw_value_size": 5333856, "raw_average_value_size": 8, "num_data_blocks": 10418, "num_entries": 666732, "num_filter_entries": 666732, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf01", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859593, "oldest_key_time": 1657859593, "file_creation_time": 1657859714, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 62}}
2022/07/15-12:35:15.333559 139706431497984 [/flush_job.cc:937] [cf01] [JOB 29] Level-0 flush table #62: 43708244 bytes OK
2022/07/15-12:35:15.333568 139706431497984 [/flush_job.cc:986] [cf01] [JOB 29] Flush lasted 489915 microseconds, and 472318 cpu microseconds.
2022/07/15-12:35:15.334347 139706431497984 (Original Log Time 2022/07/15-12:35:15.333573) [/memtable_list.cc:471] [cf01] Level-0 commit table #62 started
2022/07/15-12:35:15.334350 139706431497984 (Original Log Time 2022/07/15-12:35:15.334279) [/memtable_list.cc:675] [cf01] Level-0 commit table #62: memtable #1 done
2022/07/15-12:35:15.334352 139706431497984 (Original Log Time 2022/07/15-12:35:15.334296) EVENT_LOG_v1 {"time_micros": 1657859715334292, "job": 29, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [3, 0, 0, 0, 0, 0, 17], "immutable_memtables": 0}
2022/07/15-12:35:15.334354 139706431497984 (Original Log Time 2022/07/15-12:35:15.334319) [/db_impl/db_impl_compaction_flush.cc:264] [cf01] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 0 0 17] max score 0.75
2022/07/15-12:35:26.728093 139706018649856 [/db_impl/db_impl_write.cc:1817] [default] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:35:26.728169 139706431497984 (Original Log Time 2022/07/15-12:35:26.728151) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [default], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:35:26.728173 139706431497984 [/flush_job.cc:819] [default] [JOB 30] Flushing memtable with next log file: 5
2022/07/15-12:35:26.728189 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859726728185, "job": 30, "event": "flush_started", "num_memtables": 1, "num_entries": 688632, "num_deletes": 0, "total_data_size": 54379158, "memory_usage": 66849896, "flush_reason": "Write Buffer Full"}
2022/07/15-12:35:26.728192 139706431497984 [/flush_job.cc:848] [default] [JOB 30] Level-0 flush table #63: started
2022/07/15-12:35:27.008653 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859727008619, "cf_name": "default", "job": 30, "event": "table_file_creation", "file_number": 63, "file_size": 11747733, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 10905109, "index_size": 199672, "index_partitions": 100, "top_level_index_size": 3584, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 751922, "raw_key_size": 13446000, "raw_average_key_size": 36, "raw_value_size": 15301186, "raw_average_value_size": 40, "num_data_blocks": 5488, "num_entries": 373500, "num_filter_entries": 373500, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859601, "oldest_key_time": 1657859601, "file_creation_time": 1657859726, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 63}}
2022/07/15-12:35:27.008669 139706431497984 [/flush_job.cc:937] [default] [JOB 30] Level-0 flush table #63: 11747733 bytes OK
2022/07/15-12:35:27.008681 139706431497984 [/flush_job.cc:986] [default] [JOB 30] Flush lasted 280517 microseconds, and 274886 cpu microseconds.
2022/07/15-12:35:27.008710 139706431497984 [/version_set.cc:3746] More existing levels in DB than needed. max_bytes_for_level_multiplier may not be guaranteed.
2022/07/15-12:35:27.009399 139706431497984 (Original Log Time 2022/07/15-12:35:27.008685) [/memtable_list.cc:471] [default] Level-0 commit table #63 started
2022/07/15-12:35:27.009402 139706431497984 (Original Log Time 2022/07/15-12:35:27.009323) [/memtable_list.cc:675] [default] Level-0 commit table #63: memtable #1 done
2022/07/15-12:35:27.009404 139706431497984 (Original Log Time 2022/07/15-12:35:27.009347) EVENT_LOG_v1 {"time_micros": 1657859727009342, "job": 30, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [3, 0, 0, 0, 0, 0, 1], "immutable_memtables": 0}
2022/07/15-12:35:27.009407 139706431497984 (Original Log Time 2022/07/15-12:35:27.009369) [/db_impl/db_impl_compaction_flush.cc:264] [default] Level summary: base level 6 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 0 0 1] max score 0.75
2022/07/15-12:35:30.598828 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:35:30.598896 139706431497984 (Original Log Time 2022/07/15-12:35:30.598874) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:35:30.598900 139706431497984 [/flush_job.cc:819] [cf02] [JOB 31] Flushing memtable with next log file: 5
2022/07/15-12:35:30.598921 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859730598914, "job": 31, "event": "flush_started", "num_memtables": 1, "num_entries": 160549, "num_deletes": 0, "total_data_size": 63559808, "memory_usage": 66849912, "flush_reason": "Write Buffer Full"}
2022/07/15-12:35:30.598924 139706431497984 [/flush_job.cc:848] [cf02] [JOB 31] Level-0 flush table #64: started
2022/07/15-12:35:30.787676 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859730787648, "cf_name": "cf02", "job": 31, "event": "table_file_creation", "file_number": 64, "file_size": 24869708, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24311978, "index_size": 673041, "index_partitions": 83, "top_level_index_size": 3751, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327109, "raw_key_size": 9793489, "raw_average_key_size": 61, "raw_value_size": 53284672, "raw_average_value_size": 331, "num_data_blocks": 14930, "num_entries": 160549, "num_filter_entries": 160549, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859701, "oldest_key_time": 1657859701, "file_creation_time": 1657859730, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 64}}
2022/07/15-12:35:30.787693 139706431497984 [/flush_job.cc:937] [cf02] [JOB 31] Level-0 flush table #64: 24869708 bytes OK
2022/07/15-12:35:30.787702 139706431497984 [/flush_job.cc:986] [cf02] [JOB 31] Flush lasted 188812 microseconds, and 178052 cpu microseconds.
2022/07/15-12:35:30.788483 139706431497984 (Original Log Time 2022/07/15-12:35:30.787706) [/memtable_list.cc:471] [cf02] Level-0 commit table #64 started
2022/07/15-12:35:30.788486 139706431497984 (Original Log Time 2022/07/15-12:35:30.788411) [/memtable_list.cc:675] [cf02] Level-0 commit table #64: memtable #1 done
2022/07/15-12:35:30.788487 139706431497984 (Original Log Time 2022/07/15-12:35:30.788430) EVENT_LOG_v1 {"time_micros": 1657859730788425, "job": 31, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 9, 0, 16], "immutable_memtables": 0}
2022/07/15-12:35:30.788489 139706431497984 (Original Log Time 2022/07/15-12:35:30.788459) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 9 0 16] max score 1.00
2022/07/15-12:35:30.789174 139706047563520 (Original Log Time 2022/07/15-12:35:30.788500) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #64 to level-4 24869708 bytes
2022/07/15-12:35:30.789178 139706047563520 (Original Log Time 2022/07/15-12:35:30.789134) EVENT_LOG_v1 {"time_micros": 1657859730789131, "job": 32, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24869708}
2022/07/15-12:35:30.789180 139706047563520 (Original Log Time 2022/07/15-12:35:30.789150) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24869708 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 10 0 16] max score 0.93
2022/07/15-12:35:59.843641 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:35:59.843698 139706431497984 (Original Log Time 2022/07/15-12:35:59.843682) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:35:59.843703 139706431497984 [/flush_job.cc:819] [cf02] [JOB 33] Flushing memtable with next log file: 5
2022/07/15-12:35:59.843720 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859759843714, "job": 33, "event": "flush_started", "num_memtables": 1, "num_entries": 160544, "num_deletes": 0, "total_data_size": 63557627, "memory_usage": 66849912, "flush_reason": "Write Buffer Full"}
2022/07/15-12:35:59.843722 139706431497984 [/flush_job.cc:848] [cf02] [JOB 33] Level-0 flush table #65: started
2022/07/15-12:36:00.029919 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859760029889, "cf_name": "cf02", "job": 33, "event": "table_file_creation", "file_number": 65, "file_size": 24883652, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24325863, "index_size": 673038, "index_partitions": 83, "top_level_index_size": 3750, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327172, "raw_key_size": 9793184, "raw_average_key_size": 61, "raw_value_size": 53282811, "raw_average_value_size": 331, "num_data_blocks": 14929, "num_entries": 160544, "num_filter_entries": 160544, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859730, "oldest_key_time": 1657859730, "file_creation_time": 1657859759, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 65}}
2022/07/15-12:36:00.029938 139706431497984 [/flush_job.cc:937] [cf02] [JOB 33] Level-0 flush table #65: 24883652 bytes OK
2022/07/15-12:36:00.029947 139706431497984 [/flush_job.cc:986] [cf02] [JOB 33] Flush lasted 186253 microseconds, and 178719 cpu microseconds.
2022/07/15-12:36:00.030748 139706431497984 (Original Log Time 2022/07/15-12:36:00.029951) [/memtable_list.cc:471] [cf02] Level-0 commit table #65 started
2022/07/15-12:36:00.030751 139706431497984 (Original Log Time 2022/07/15-12:36:00.030667) [/memtable_list.cc:675] [cf02] Level-0 commit table #65: memtable #1 done
2022/07/15-12:36:00.030752 139706431497984 (Original Log Time 2022/07/15-12:36:00.030688) EVENT_LOG_v1 {"time_micros": 1657859760030682, "job": 33, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 10, 0, 16], "immutable_memtables": 0}
2022/07/15-12:36:00.030754 139706431497984 (Original Log Time 2022/07/15-12:36:00.030723) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 10 0 16] max score 1.00
2022/07/15-12:36:00.031491 139706037073664 (Original Log Time 2022/07/15-12:36:00.030795) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #65 to level-4 24883652 bytes
2022/07/15-12:36:00.031493 139706037073664 (Original Log Time 2022/07/15-12:36:00.031472) EVENT_LOG_v1 {"time_micros": 1657859760031468, "job": 34, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24883652}
2022/07/15-12:36:00.031495 139706037073664 (Original Log Time 2022/07/15-12:36:00.031476) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24883652 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 11 0 16] max score 1.02
2022/07/15-12:36:00.032264 139706037073664 (Original Log Time 2022/07/15-12:36:00.031558) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #49 to level-5 24873383 bytes
2022/07/15-12:36:00.032267 139706037073664 (Original Log Time 2022/07/15-12:36:00.032241) EVENT_LOG_v1 {"time_micros": 1657859760032238, "job": 35, "event": "trivial_move", "destination_level": 5, "files": 1, "total_files_size": 24873383}
2022/07/15-12:36:00.032269 139706037073664 (Original Log Time 2022/07/15-12:36:00.032246) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-5 24873383 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 10 1 16] max score 0.93
2022/07/15-12:36:29.052116 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:36:29.052189 139706431497984 (Original Log Time 2022/07/15-12:36:29.052173) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:36:29.052192 139706431497984 [/flush_job.cc:819] [cf02] [JOB 36] Flushing memtable with next log file: 5
2022/07/15-12:36:29.052209 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859789052204, "job": 36, "event": "flush_started", "num_memtables": 1, "num_entries": 160552, "num_deletes": 0, "total_data_size": 63560414, "memory_usage": 66850112, "flush_reason": "Write Buffer Full"}
2022/07/15-12:36:29.052213 139706431497984 [/flush_job.cc:848] [cf02] [JOB 36] Level-0 flush table #66: started
2022/07/15-12:36:29.246575 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859789246546, "cf_name": "cf02", "job": 36, "event": "table_file_creation", "file_number": 66, "file_size": 24876874, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24319271, "index_size": 672957, "index_partitions": 83, "top_level_index_size": 3748, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327109, "raw_key_size": 9793672, "raw_average_key_size": 61, "raw_value_size": 53285086, "raw_average_value_size": 331, "num_data_blocks": 14927, "num_entries": 160552, "num_filter_entries": 160552, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859759, "oldest_key_time": 1657859759, "file_creation_time": 1657859789, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 66}}
2022/07/15-12:36:29.246589 139706431497984 [/flush_job.cc:937] [cf02] [JOB 36] Level-0 flush table #66: 24876874 bytes OK
2022/07/15-12:36:29.246599 139706431497984 [/flush_job.cc:986] [cf02] [JOB 36] Flush lasted 194415 microseconds, and 182771 cpu microseconds.
2022/07/15-12:36:29.247358 139706431497984 (Original Log Time 2022/07/15-12:36:29.246603) [/memtable_list.cc:471] [cf02] Level-0 commit table #66 started
2022/07/15-12:36:29.247362 139706431497984 (Original Log Time 2022/07/15-12:36:29.247272) [/memtable_list.cc:675] [cf02] Level-0 commit table #66: memtable #1 done
2022/07/15-12:36:29.247365 139706431497984 (Original Log Time 2022/07/15-12:36:29.247292) EVENT_LOG_v1 {"time_micros": 1657859789247287, "job": 36, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 10, 1, 16], "immutable_memtables": 0}
2022/07/15-12:36:29.247367 139706431497984 (Original Log Time 2022/07/15-12:36:29.247328) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 10 1 16] max score 1.00
2022/07/15-12:36:29.248154 139706058053376 (Original Log Time 2022/07/15-12:36:29.247381) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #66 to level-4 24876874 bytes
2022/07/15-12:36:29.248156 139706058053376 (Original Log Time 2022/07/15-12:36:29.248125) EVENT_LOG_v1 {"time_micros": 1657859789248122, "job": 37, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24876874}
2022/07/15-12:36:29.248157 139706058053376 (Original Log Time 2022/07/15-12:36:29.248128) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24876874 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 11 1 16] max score 1.02
2022/07/15-12:36:29.248846 139706058053376 (Original Log Time 2022/07/15-12:36:29.248195) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #52 to level-5 24878134 bytes
2022/07/15-12:36:29.248848 139706058053376 (Original Log Time 2022/07/15-12:36:29.248823) EVENT_LOG_v1 {"time_micros": 1657859789248820, "job": 38, "event": "trivial_move", "destination_level": 5, "files": 1, "total_files_size": 24878134}
2022/07/15-12:36:29.248850 139706058053376 (Original Log Time 2022/07/15-12:36:29.248829) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-5 24878134 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 10 2 16] max score 0.93
2022/07/15-12:36:58.266675 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:36:58.266740 139706431497984 (Original Log Time 2022/07/15-12:36:58.266723) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:36:58.266744 139706431497984 [/flush_job.cc:819] [cf02] [JOB 39] Flushing memtable with next log file: 5
2022/07/15-12:36:58.266760 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859818266755, "job": 39, "event": "flush_started", "num_memtables": 1, "num_entries": 160546, "num_deletes": 0, "total_data_size": 63557558, "memory_usage": 66850048, "flush_reason": "Write Buffer Full"}
2022/07/15-12:36:58.266764 139706431497984 [/flush_job.cc:848] [cf02] [JOB 39] Level-0 flush table #67: started
2022/07/15-12:36:58.455898 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859818455859, "cf_name": "cf02", "job": 39, "event": "table_file_creation", "file_number": 67, "file_size": 24865081, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24307619, "index_size": 672341, "index_partitions": 83, "top_level_index_size": 3752, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327168, "raw_key_size": 9793306, "raw_average_key_size": 61, "raw_value_size": 53282614, "raw_average_value_size": 331, "num_data_blocks": 14913, "num_entries": 160546, "num_filter_entries": 160546, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859789, "oldest_key_time": 1657859789, "file_creation_time": 1657859818, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 67}}
2022/07/15-12:36:58.455916 139706431497984 [/flush_job.cc:937] [cf02] [JOB 39] Level-0 flush table #67: 24865081 bytes OK
2022/07/15-12:36:58.455945 139706431497984 [/flush_job.cc:986] [cf02] [JOB 39] Flush lasted 189210 microseconds, and 178299 cpu microseconds.
2022/07/15-12:36:58.456785 139706431497984 (Original Log Time 2022/07/15-12:36:58.455951) [/memtable_list.cc:471] [cf02] Level-0 commit table #67 started
2022/07/15-12:36:58.456791 139706431497984 (Original Log Time 2022/07/15-12:36:58.456679) [/memtable_list.cc:675] [cf02] Level-0 commit table #67: memtable #1 done
2022/07/15-12:36:58.456792 139706431497984 (Original Log Time 2022/07/15-12:36:58.456707) EVENT_LOG_v1 {"time_micros": 1657859818456701, "job": 39, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 10, 2, 16], "immutable_memtables": 0}
2022/07/15-12:36:58.456794 139706431497984 (Original Log Time 2022/07/15-12:36:58.456751) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 10 2 16] max score 1.00
2022/07/15-12:36:58.457590 139706441987840 (Original Log Time 2022/07/15-12:36:58.456853) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #67 to level-4 24865081 bytes
2022/07/15-12:36:58.457592 139706441987840 (Original Log Time 2022/07/15-12:36:58.457561) EVENT_LOG_v1 {"time_micros": 1657859818457558, "job": 40, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24865081}
2022/07/15-12:36:58.457594 139706441987840 (Original Log Time 2022/07/15-12:36:58.457567) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24865081 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 11 2 16] max score 1.02
2022/07/15-12:36:58.458309 139706441987840 (Original Log Time 2022/07/15-12:36:58.457638) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #53 to level-5 24870203 bytes
2022/07/15-12:36:58.458313 139706441987840 (Original Log Time 2022/07/15-12:36:58.458281) EVENT_LOG_v1 {"time_micros": 1657859818458278, "job": 41, "event": "trivial_move", "destination_level": 5, "files": 1, "total_files_size": 24870203}
2022/07/15-12:36:58.458314 139706441987840 (Original Log Time 2022/07/15-12:36:58.458288) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-5 24870203 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 10 3 16] max score 0.93
2022/07/15-12:37:16.017328 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf01] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:37:16.017401 139706431497984 (Original Log Time 2022/07/15-12:37:16.017384) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf01], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:37:16.017405 139706431497984 [/flush_job.cc:819] [cf01] [JOB 42] Flushing memtable with next log file: 5
2022/07/15-12:37:16.017421 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859836017416, "job": 42, "event": "flush_started", "num_memtables": 1, "num_entries": 666675, "num_deletes": 0, "total_data_size": 56371435, "memory_usage": 66849872, "flush_reason": "Write Buffer Full"}
2022/07/15-12:37:16.017423 139706431497984 [/flush_job.cc:848] [cf01] [JOB 42] Level-0 flush table #68: started
2022/07/15-12:37:16.495446 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859836495412, "cf_name": "cf01", "job": 42, "event": "table_file_creation", "file_number": 68, "file_size": 43704720, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 42188793, "index_size": 394221, "index_partitions": 180, "top_level_index_size": 6728, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 1341011, "raw_key_size": 49704685, "raw_average_key_size": 74, "raw_value_size": 5333400, "raw_average_value_size": 8, "num_data_blocks": 10417, "num_entries": 666675, "num_filter_entries": 666675, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf01", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859714, "oldest_key_time": 1657859714, "file_creation_time": 1657859836, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 68}}
2022/07/15-12:37:16.495465 139706431497984 [/flush_job.cc:937] [cf01] [JOB 42] Level-0 flush table #68: 43704720 bytes OK
2022/07/15-12:37:16.495474 139706431497984 [/flush_job.cc:986] [cf01] [JOB 42] Flush lasted 478078 microseconds, and 460436 cpu microseconds.
2022/07/15-12:37:16.496232 139706431497984 (Original Log Time 2022/07/15-12:37:16.495478) [/memtable_list.cc:471] [cf01] Level-0 commit table #68 started
2022/07/15-12:37:16.496236 139706431497984 (Original Log Time 2022/07/15-12:37:16.496154) [/memtable_list.cc:675] [cf01] Level-0 commit table #68: memtable #1 done
2022/07/15-12:37:16.496238 139706431497984 (Original Log Time 2022/07/15-12:37:16.496173) EVENT_LOG_v1 {"time_micros": 1657859836496169, "job": 42, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 0, 0, 17], "immutable_memtables": 0}
2022/07/15-12:37:16.496241 139706431497984 (Original Log Time 2022/07/15-12:37:16.496201) [/db_impl/db_impl_compaction_flush.cc:264] [cf01] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 0 0 17] max score 1.00
2022/07/15-12:37:16.496323 139706047563520 [/compaction/compaction_job.cc:2334] [cf01] [JOB 43] Compacting 4@0 files to L4, score 1.00
2022/07/15-12:37:16.496337 139706047563520 [/compaction/compaction_job.cc:2338] [cf01] Compaction start summary: Base version 49 Base level 0, inputs: [68(41MB) 62(41MB) 56(41MB) 50(41MB)]
2022/07/15-12:37:16.496351 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859836496344, "job": 43, "event": "compaction_started", "compaction_reason": "LevelL0FilesNum", "files_L0": [68, 62, 56, 50], "score": 1, "input_data_size": 174830894}
2022/07/15-12:37:17.280161 139706047563520 [/compaction/compaction_job.cc:1942] [cf01] [JOB 43] Generated table #69: 1068179 keys, 69556149 bytes
2022/07/15-12:37:17.280205 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859837280183, "cf_name": "cf01", "job": 43, "event": "table_file_creation", "file_number": 69, "file_size": 69556149, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 67111274, "index_size": 640021, "index_partitions": 288, "top_level_index_size": 10913, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 2164595, "raw_key_size": 79640444, "raw_average_key_size": 74, "raw_value_size": 8545432, "raw_average_value_size": 8, "num_data_blocks": 16673, "num_entries": 1068179, "num_filter_entries": 1068179, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf01", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859349, "oldest_key_time": 0, "file_creation_time": 1657859836, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 69}}
2022/07/15-12:37:18.098749 139706047563520 [/compaction/compaction_job.cc:1942] [cf01] [JOB 43] Generated table #70: 1068203 keys, 69557189 bytes
2022/07/15-12:37:18.098808 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859838098775, "cf_name": "cf01", "job": 43, "event": "table_file_creation", "file_number": 70, "file_size": 69557189, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 67112253, "index_size": 640148, "index_partitions": 288, "top_level_index_size": 10897, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 2164410, "raw_key_size": 79642530, "raw_average_key_size": 74, "raw_value_size": 8545624, "raw_average_value_size": 8, "num_data_blocks": 16674, "num_entries": 1068203, "num_filter_entries": 1068203, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf01", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859349, "oldest_key_time": 0, "file_creation_time": 1657859837, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 70}}
2022/07/15-12:37:18.422751 139706047563520 [/compaction/compaction_job.cc:1942] [cf01] [JOB 43] Generated table #71: 441908 keys, 28775377 bytes
2022/07/15-12:37:18.422790 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859838422770, "cf_name": "cf01", "job": 43, "event": "table_file_creation", "file_number": 71, "file_size": 28775377, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 27763262, "index_size": 264559, "index_partitions": 119, "top_level_index_size": 4519, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 895562, "raw_key_size": 32947292, "raw_average_key_size": 74, "raw_value_size": 3535264, "raw_average_value_size": 8, "num_data_blocks": 6898, "num_entries": 441908, "num_filter_entries": 441908, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf01", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859349, "oldest_key_time": 0, "file_creation_time": 1657859838, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 71}}
2022/07/15-12:37:18.488894 139706047563520 [/compaction/compaction_job.cc:1942] [cf01] [JOB 43] Generated table #72: 88579 keys, 5768510 bytes
2022/07/15-12:37:18.488939 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859838488915, "cf_name": "cf01", "job": 43, "event": "table_file_creation", "file_number": 72, "file_size": 5768510, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 5564954, "index_size": 52663, "index_partitions": 24, "top_level_index_size": 951, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 179562, "raw_key_size": 6604018, "raw_average_key_size": 74, "raw_value_size": 708632, "raw_average_value_size": 8, "num_data_blocks": 1383, "num_entries": 88579, "num_filter_entries": 88579, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf01", "column_family_id": 1, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859349, "oldest_key_time": 0, "file_creation_time": 1657859838, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 72}}
2022/07/15-12:37:18.498798 139706047563520 [/compaction/compaction_job.cc:2002] [cf01] [JOB 43] Compacted 4@0 files to L4 => 173657225 bytes
2022/07/15-12:37:18.499661 139706047563520 (Original Log Time 2022/07/15-12:37:18.499587) [/compaction/compaction_job.cc:962] [cf01] compacted to: base level 4 level multiplier 10.00 max bytes base 268435456 files[0 0 0 0 4 0 17] max score 0.65, MB/sec: 87.7 rd, 87.2 wr, level 4, files in(4, 0) out(4 +0 blob) MB in(166.7, 0.0 +0.0 blob) out(165.6 +0.0 blob), read-write-amplify(2.0) write-amplify(1.0) OK, records in: 2666869, records dropped: 0 output_compression: LZ4
2022/07/15-12:37:18.499672 139706047563520 (Original Log Time 2022/07/15-12:37:18.499605) EVENT_LOG_v1 {"time_micros": 1657859838499597, "job": 43, "event": "compaction_finished", "compaction_time_micros": 1992610, "compaction_time_cpu_micros": 1923617, "output_level": 4, "num_output_files": 4, "total_output_size": 173657225, "num_input_records": 2666869, "num_output_records": 2666869, "num_subcompactions": 1, "output_compression": "LZ4", "num_single_delete_mismatches": 0, "num_single_delete_fallthrough": 0, "lsm_state": [0, 0, 0, 0, 4, 0, 17]}
2022/07/15-12:37:18.503264 139706047563520 [le/delete_scheduler.cc:77] Deleted file /stm/db//000068.sst immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000
2022/07/15-12:37:18.503282 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859838503278, "job": 43, "event": "table_file_deletion", "file_number": 68}
2022/07/15-12:37:18.507316 139706047563520 [le/delete_scheduler.cc:77] Deleted file /stm/db//000062.sst immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000
2022/07/15-12:37:18.507330 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859838507327, "job": 43, "event": "table_file_deletion", "file_number": 62}
2022/07/15-12:37:18.511280 139706047563520 [le/delete_scheduler.cc:77] Deleted file /stm/db//000056.sst immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000
2022/07/15-12:37:18.511294 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859838511292, "job": 43, "event": "table_file_deletion", "file_number": 56}
2022/07/15-12:37:18.515821 139706047563520 [le/delete_scheduler.cc:77] Deleted file /stm/db//000050.sst immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000
2022/07/15-12:37:18.515833 139706047563520 EVENT_LOG_v1 {"time_micros": 1657859838515831, "job": 43, "event": "table_file_deletion", "file_number": 50}
2022/07/15-12:37:27.398663 139706018649856 [/db_impl/db_impl_write.cc:1817] [cf02] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:37:27.398736 139706431497984 (Original Log Time 2022/07/15-12:37:27.398717) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [cf02], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:37:27.398740 139706431497984 [/flush_job.cc:819] [cf02] [JOB 44] Flushing memtable with next log file: 5
2022/07/15-12:37:27.398757 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859847398752, "job": 44, "event": "flush_started", "num_memtables": 1, "num_entries": 160544, "num_deletes": 0, "total_data_size": 63559485, "memory_usage": 66850032, "flush_reason": "Write Buffer Full"}
2022/07/15-12:37:27.398760 139706431497984 [/flush_job.cc:848] [cf02] [JOB 44] Level-0 flush table #73: started
2022/07/15-12:37:27.596027 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859847595995, "cf_name": "cf02", "job": 44, "event": "table_file_creation", "file_number": 73, "file_size": 24869078, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 24311242, "index_size": 673101, "index_partitions": 83, "top_level_index_size": 3754, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 327243, "raw_key_size": 9793184, "raw_average_key_size": 61, "raw_value_size": 53284669, "raw_average_value_size": 331, "num_data_blocks": 14931, "num_entries": 160544, "num_filter_entries": 160544, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "cf02", "column_family_id": 2, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859818, "oldest_key_time": 1657859818, "file_creation_time": 1657859847, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 73}}
2022/07/15-12:37:27.596063 139706431497984 [/flush_job.cc:937] [cf02] [JOB 44] Level-0 flush table #73: 24869078 bytes OK
2022/07/15-12:37:27.596072 139706431497984 [/flush_job.cc:986] [cf02] [JOB 44] Flush lasted 197342 microseconds, and 186677 cpu microseconds.
2022/07/15-12:37:27.596830 139706431497984 (Original Log Time 2022/07/15-12:37:27.596076) [/memtable_list.cc:471] [cf02] Level-0 commit table #73 started
2022/07/15-12:37:27.596832 139706431497984 (Original Log Time 2022/07/15-12:37:27.596748) [/memtable_list.cc:675] [cf02] Level-0 commit table #73: memtable #1 done
2022/07/15-12:37:27.596834 139706431497984 (Original Log Time 2022/07/15-12:37:27.596771) EVENT_LOG_v1 {"time_micros": 1657859847596763, "job": 44, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 10, 3, 16], "immutable_memtables": 0}
2022/07/15-12:37:27.596835 139706431497984 (Original Log Time 2022/07/15-12:37:27.596804) [/db_impl/db_impl_compaction_flush.cc:264] [cf02] Level summary: base level 4 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 10 3 16] max score 1.00
2022/07/15-12:37:27.597589 139706058053376 (Original Log Time 2022/07/15-12:37:27.596862) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #73 to level-4 24869078 bytes
2022/07/15-12:37:27.597591 139706058053376 (Original Log Time 2022/07/15-12:37:27.597569) EVENT_LOG_v1 {"time_micros": 1657859847597566, "job": 45, "event": "trivial_move", "destination_level": 4, "files": 1, "total_files_size": 24869078}
2022/07/15-12:37:27.597592 139706058053376 (Original Log Time 2022/07/15-12:37:27.597573) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-4 24869078 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 11 3 16] max score 1.02
2022/07/15-12:37:27.598265 139706058053376 (Original Log Time 2022/07/15-12:37:27.597641) [/db_impl/db_impl_compaction_flush.cc:3208] [cf02] Moving #54 to level-5 24866854 bytes
2022/07/15-12:37:27.598269 139706058053376 (Original Log Time 2022/07/15-12:37:27.598240) EVENT_LOG_v1 {"time_micros": 1657859847598237, "job": 46, "event": "trivial_move", "destination_level": 5, "files": 1, "total_files_size": 24866854}
2022/07/15-12:37:27.598271 139706058053376 (Original Log Time 2022/07/15-12:37:27.598246) [/db_impl/db_impl_compaction_flush.cc:3238] [cf02] Moved #1 files to level-5 24866854 bytes OK: base level 4 level multiplier 10.00 max bytes base 268435456 files[3 0 0 0 10 4 16] max score 0.93
2022/07/15-12:37:31.933533 139706018649856 [/db_impl/db_impl_write.cc:1817] [default] New memtable created with log file: #5. Immutable memtables: 0.
2022/07/15-12:37:31.933602 139706431497984 (Original Log Time 2022/07/15-12:37:31.933584) [/db_impl/db_impl_compaction_flush.cc:2701] Calling FlushMemTableToOutputFile with column family [default], flush slots available 1, compaction slots available 1, flush slots scheduled 1, compaction slots scheduled 0
2022/07/15-12:37:31.933607 139706431497984 [/flush_job.cc:819] [default] [JOB 47] Flushing memtable with next log file: 5
2022/07/15-12:37:31.933624 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859851933620, "job": 47, "event": "flush_started", "num_memtables": 1, "num_entries": 688607, "num_deletes": 0, "total_data_size": 54376987, "memory_usage": 66849928, "flush_reason": "Write Buffer Full"}
2022/07/15-12:37:31.933626 139706431497984 [/flush_job.cc:848] [default] [JOB 47] Level-0 flush table #74: started
2022/07/15-12:37:32.219364 139706431497984 EVENT_LOG_v1 {"time_micros": 1657859852219321, "cf_name": "default", "job": 47, "event": "table_file_creation", "file_number": 74, "file_size": 11761092, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 10918417, "index_size": 199743, "index_partitions": 100, "top_level_index_size": 3599, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 751862, "raw_key_size": 13445496, "raw_average_key_size": 36, "raw_value_size": 15300527, "raw_average_value_size": 40, "num_data_blocks": 5488, "num_entries": 373486, "num_filter_entries": 373486, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657859726, "oldest_key_time": 1657859726, "file_creation_time": 1657859851, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 74}}
2022/07/15-12:37:32.219383 139706431497984 [/flush_job.cc:937] [default] [JOB 47] Level-0 flush table #74: 11761092 bytes OK
2022/07/15-12:37:32.219392 139706431497984 [/flush_job.cc:986] [default] [JOB 47] Flush lasted 285796 microseconds, and 281242 cpu microseconds.
2022/07/15-12:37:32.219423 139706431497984 [/version_set.cc:3746] More existing levels in DB than needed. max_bytes_for_level_multiplier may not be guaranteed.
2022/07/15-12:37:32.220199 139706431497984 (Original Log Time 2022/07/15-12:37:32.219396) [/memtable_list.cc:471] [default] Level-0 commit table #74 started
2022/07/15-12:37:32.220203 139706431497984 (Original Log Time 2022/07/15-12:37:32.220105) [/memtable_list.cc:675] [default] Level-0 commit table #74: memtable #1 done
2022/07/15-12:37:32.220206 139706431497984 (Original Log Time 2022/07/15-12:37:32.220130) EVENT_LOG_v1 {"time_micros": 1657859852220122, "job": 47, "event": "flush_finished", "output_compression": "LZ4", "lsm_state": [4, 0, 0, 0, 0, 0, 1], "immutable_memtables": 0}
2022/07/15-12:37:32.220208 139706431497984 (Original Log Time 2022/07/15-12:37:32.220170) [/db_impl/db_impl_compaction_flush.cc:264] [default] Level summary: base level 6 level multiplier 10.00 max bytes base 268435456 files[4 0 0 0 0 0 1] max score 1.00
2022/07/15-12:37:32.220257 139706441987840 [/compaction/compaction_job.cc:2334] [default] [JOB 48] Compacting 4@0 + 1@6 files to L6, score 1.00
2022/07/15-12:37:32.220272 139706441987840 [/compaction/compaction_job.cc:2338] [default] Compaction start summary: Base version 54 Base level 0, inputs: [74(11MB) 63(11MB) 57(11MB) 51(11MB)], [12(21MB)]
2022/07/15-12:37:32.220287 139706441987840 EVENT_LOG_v1 {"time_micros": 1657859852220279, "job": 48, "event": "compaction_started", "compaction_reason": "LevelL0FilesNum", "files_L0": [74, 63, 57, 51], "files_L6": [12], "score": 1, "input_data_size": 69355313}
2022/07/15-12:37:33.432295 139706441987840 [/compaction/compaction_job.cc:1942] [default] [JOB 48] Generated table #75: 995878 keys, 27136482 bytes
2022/07/15-12:37:33.432348 139706441987840 EVENT_LOG_v1 {"time_micros": 1657859853432321, "cf_name": "default", "job": 48, "event": "table_file_creation", "file_number": 75, "file_size": 27136482, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 25781315, "index_size": 675060, "index_partitions": 267, "top_level_index_size": 12799, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 1, "filter_size": 1018607, "raw_key_size": 35851608, "raw_average_key_size": 36, "raw_value_size": 40798120, "raw_average_value_size": 40, "num_data_blocks": 13824, "num_entries": 995878, "num_filter_entries": 498199, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "StringAppendOperator", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "LZ4", "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; ", "creation_time": 1657854227, "oldest_key_time": 0, "file_creation_time": 1657859852, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e81605f7-b4dc-4bb0-a0e2-424318082866", "db_session_id": "WIJBUZGZ8Z3ZE68SMEVP", "orig_file_number": 75}}
2022/07/15-12:37:33.435344 139706441987840 [/compaction/compaction_job.cc:2002] [default] [JOB 48] Compacted 4@0 + 1@6 files to L6 => 27136482 bytes
2022/07/15-12:37:33.436083 139706441987840 (Original Log Time 2022/07/15-12:37:33.436011) [/compaction/compaction_job.cc:962] [default] compacted to: base level 6 level multiplier 10.00 max bytes base 268435456 files[0 0 0 0 0 0 1] max score 0.00, MB/sec: 57.2 rd, 22.4 wr, level 6, files in(4, 1) out(1 +0 blob) MB in(44.8, 21.3 +0.0 blob) out(25.9 +0.0 blob), read-write-amplify(2.1) write-amplify(0.6) OK, records in: 2494331, records dropped: 1498453 output_compression: LZ4
2022/07/15-12:37:33.436088 139706441987840 (Original Log Time 2022/07/15-12:37:33.436035) EVENT_LOG_v1 {"time_micros": 1657859853436023, "job": 48, "event": "compaction_finished", "compaction_time_micros": 1212087, "compaction_time_cpu_micros": 1198650, "output_level": 6, "num_output_files": 1, "total_output_size": 27136482, "num_input_records": 2494331, "num_output_records": 995878, "num_subcompactions": 1, "output_compression": "LZ4", "num_single_delete_mismatches": 0, "num_single_delete_fallthrough": 0, "lsm_state": [0, 0, 0, 0, 0, 0, 1]}
2022/07/15-12:41:17.197684 139706274150144 [/db_impl/db_impl.cc:1005] ------- DUMPING STATS -------
2022/07/15-12:41:17.197744 139706274150144 [/db_impl/db_impl.cc:1006]
** DB Stats **
Uptime(secs): 6000.0 total, 600.0 interval
Cumulative writes: 2762K writes, 8288K keys, 2762K commit groups, 1.0 writes per commit group, ingest: 1.42 GB, 0.24 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: 2068K writes, 6204K keys, 2068K commit groups, 1.0 writes per commit group, ingest: 1089.55 MB, 1.82 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
** 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)
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
L0 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7 0.0 40.0 1.12 1.10 4 0.281 0 0 0.0 0.0
L6 1/0 25.88 MB 0.0 0.1 0.0 0.0 0.0 0.0 0.0 1.1 50.3 35.9 1.32 1.20 2 0.658 2494K 1498K 0.0 0.0
Sum 1/0 25.88 MB 0.0 0.1 0.0 0.0 0.1 0.1 0.0 1.4 27.1 37.7 2.44 2.30 6 0.406 2494K 1498K 0.0 0.0
Int 0/0 0.00 KB 0.0 0.1 0.0 0.0 0.1 0.0 0.0 1.8 32.2 28.9 2.06 2.03 4 0.514 2494K 1498K 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)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Low 0/0 0.00 KB 0.0 0.1 0.0 0.0 0.0 0.0 0.0 0.0 54.6 21.4 1.21 1.20 1 1.212 2494K 1498K 0.0 0.0
High 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 40.0 1.12 1.10 4 0.281 0 0 0.0 0.0
User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 205.5 0.10 0.00 1 0.104 0 0 0.0 0.0
Blob file count: 0, total size: 0.0 GB
Uptime(secs): 6000.0 total, 600.0 interval
Flush(GB): cumulative 0.044, interval 0.033
AddFile(GB): cumulative 0.021, interval 0.000
AddFile(Total Files): cumulative 1, interval 0
AddFile(L0 Files): cumulative 0, interval 0
AddFile(Keys): cumulative 1000003, interval 0
Cumulative compaction: 0.09 GB write, 0.02 MB/s write, 0.06 GB read, 0.01 MB/s read, 2.4 seconds
Interval compaction: 0.06 GB write, 0.10 MB/s write, 0.06 GB read, 0.11 MB/s read, 2.1 seconds
Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count
Block cache LRUCache@0x563031248ea0#22504 capacity: 8.00 MB collections: 11 last_copies: 0 last_secs: 0.000343 secs_since: 0
Block cache entry stats(count,size,portion): DataBlock(644,2.53 MB,31.5857%) FilterBlock(667,3.85 MB,48.087%) IndexBlock(667,1.43 MB,17.8713%) Misc(1,0.00 KB,0%)
** Compaction Stats [cf01] **
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 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.2 0.2 0.0 0.0 0.0 82.0 2.03 1.96 4 0.508 0 0 0.0 0.0
L4 4/0 165.61 MB 0.6 0.2 0.2 0.0 0.2 0.2 0.0 1.0 83.7 83.1 1.99 1.92 1 1.993 2666K 0 0.0 0.0
L6 17/0 7.64 GB 0.0 0.0 0.0 0.0 7.6 7.6 0.0 0.0 0.0 15.1 516.30 0.00 17 30.370 0 0 0.0 0.0
Sum 21/0 7.80 GB 0.0 0.2 0.2 0.0 8.0 8.0 0.0 1.0 0.3 15.7 520.32 3.88 22 23.651 2666K 0 0.0 0.0
Int 0/0 0.00 KB 0.0 0.2 0.2 0.0 0.3 0.3 0.0 2.3 48.3 84.2 3.45 3.33 4 0.863 2666K 0 0.0 0.0
** Compaction Stats [cf01] **
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)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Low 0/0 0.00 KB 0.0 0.2 0.2 0.0 0.2 0.2 0.0 0.0 83.7 83.1 1.99 1.92 1 1.993 2666K 0 0.0 0.0
High 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.2 0.2 0.0 0.0 0.0 82.0 2.03 1.96 4 0.508 0 0 0.0 0.0
User 0/0 0.00 KB 0.0 0.0 0.0 0.0 7.6 7.6 0.0 0.0 0.0 15.1 516.30 0.00 17 30.370 0 0 0.0 0.0
Blob file count: 0, total size: 0.0 GB
Uptime(secs): 6000.0 total, 600.0 interval
Flush(GB): cumulative 0.163, interval 0.122
AddFile(GB): cumulative 7.635, interval 0.000
AddFile(Total Files): cumulative 17, interval 0
AddFile(L0 Files): cumulative 0, interval 0
AddFile(Keys): cumulative 161212654, interval 0
Cumulative compaction: 7.96 GB write, 1.36 MB/s write, 0.16 GB read, 0.03 MB/s read, 520.3 seconds
Interval compaction: 0.28 GB write, 0.48 MB/s write, 0.16 GB read, 0.28 MB/s read, 3.5 seconds
Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count
Block cache LRUCache@0x563031252dd0#22504 capacity: 8.00 MB collections: 11 last_copies: 0 last_secs: 0.000308 secs_since: 0
Block cache entry stats(count,size,portion): FilterBlock(855,6.10 MB,76.2013%) IndexBlock(807,1.72 MB,21.5118%) Misc(1,0.00 KB,0%)
** Compaction Stats [cf02] **
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 71.17 MB 0.8 0.0 0.0 0.0 0.4 0.4 0.0 0.0 0.0 119.1 3.39 3.20 17 0.199 0 0 0.0 0.0
L4 10/0 237.21 MB 0.9 0.0 0.0 0.0 0.0 0.0 0.3 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0
L5 4/0 94.88 MB 0.0 0.0 0.0 0.0 0.0 0.0 0.1 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0
L6 16/0 21.06 GB 0.0 0.0 0.0 0.0 21.1 21.1 0.0 0.0 0.0 12.9 1675.04 0.00 16 104.690 0 0 0.0 0.0
Sum 33/0 21.45 GB 0.0 0.0 0.0 0.0 21.4 21.4 0.4 1.0 0.0 13.1 1678.43 3.20 33 50.861 0 0 0.0 0.0
Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.3 0.3 0.4 1.0 0.0 120.6 2.56 2.42 13 0.197 0 0 0.0 0.0
** Compaction Stats [cf02] **
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)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
High 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.4 0.4 0.0 0.0 0.0 119.1 3.39 3.20 17 0.199 0 0 0.0 0.0
User 0/0 0.00 KB 0.0 0.0 0.0 0.0 21.1 21.1 0.0 0.0 0.0 12.9 1675.04 0.00 16 104.690 0 0 0.0 0.0
Blob file count: 0, total size: 0.0 GB
Uptime(secs): 6000.0 total, 600.0 interval
Flush(GB): cumulative 0.394, interval 0.301
AddFile(GB): cumulative 21.055, interval 0.000
AddFile(Total Files): cumulative 16, interval 0
AddFile(L0 Files): cumulative 0, interval 0
AddFile(Keys): cumulative 157651417, interval 0
Cumulative compaction: 21.45 GB write, 3.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 1678.4 seconds
Interval compaction: 0.30 GB write, 0.51 MB/s write, 0.00 GB read, 0.00 MB/s read, 2.6 seconds
Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count
Block cache LRUCache@0x56303124b140#22504 capacity: 8.00 MB collections: 11 last_copies: 0 last_secs: 0.000437 secs_since: 0
Block cache entry stats(count,size,portion): FilterBlock(1411,5.31 MB,66.4201%) IndexBlock(1411,10.96 MB,136.964%) Misc(1,0.00 KB,0%)