Storage Benchmark Kit
This driver provides performance benchmarking capabilities for HaloDB, a high-performance embedded key-value store developed by Yahoo.
HaloDB is an embedded, persistent, log-structured key-value store written in Java. It’s designed for high throughput and low latency workloads, making it ideal for performance-critical applications.
The driver supports the following configuration options:
storageDirectory: Directory for database files (default: /tmp/halodb)maxFileSize: Maximum size of each data file in bytes (default: 1GB)maxTombstoneFileSize: Maximum size of tombstone files (default: 64MB)buildIndexThreads: Number of threads for index building (default: 8)flushDataSizeBytes: Data size threshold for flushing (default: 10MB)compactionThresholdPerFile: Compaction threshold per file (default: 0.7)compactionJobRate: Compaction job rate in bytes/sec (default: 50MB/sec)numberOfRecords: Expected number of records for optimization (default: 100M)cleanUpTombstonesDuringOpen: Clean tombstones during startup (default: true)cleanUpInMemoryIndexOnClose: Clean memory index on close (default: false)useMemoryPool: Use memory pool for allocations (default: true)memoryPoolChunkSize: Memory pool chunk size (default: 2MB)fixedKeySize: Fixed key size for optimization (default: 8 bytes)HaloDB excels in write-intensive workloads due to its log-structured design:
# High write throughput configuration
maxFileSize=2147483648 # 2GB files for better sequential writes
flushDataSizeBytes=20971520 # 20MB flush threshold
compactionThresholdPerFile=0.8 # Higher threshold to reduce compaction overhead
buildIndexThreads=16 # More threads for faster index building
HaloDB provides excellent read performance through its in-memory indexing:
# High read performance configuration
useMemoryPool=true # Enable memory pooling
memoryPoolChunkSize=4194304 # 4MB chunks for better cache utilization
cleanUpInMemoryIndexOnClose=false # Keep index in memory
fixedKeySize=8 # Fixed key size for faster comparisons
HaloDB’s memory management is crucial for performance tuning:
# Run benchmark with default settings
./sbk -class halodb -writers 4 -readers 4 -size 1024 -seconds 60
# High-performance write configuration
./sbk -class halodb -writers 8 -readers 2 -size 4096 -seconds 120 \
-storageDirectory /fast/ssd/halodb \
-maxFileSize 2147483648 \
-flushDataSizeBytes 20971520 \
-buildIndexThreads 16
# Read-optimized configuration
./sbk -class halodb -writers 2 -readers 8 -size 512 -seconds 120 \
-useMemoryPool true \
-memoryPoolChunkSize 4194304 \
-fixedKeySize 8
Customize default settings in HaloDB.properties:
# Storage Configuration
storageDirectory=/tmp/halodb
maxFileSize=1073741824
maxTombstoneFileSize=67108864
# Performance Tuning
buildIndexThreads=8
flushDataSizeBytes=10485760
compactionThresholdPerFile=0.7
compactionJobRate=52428800
# Memory Management
useMemoryPool=true
memoryPoolChunkSize=2097152
cleanUpInMemoryIndexOnClose=false
# Optimization
numberOfRecords=100000000
fixedKeySize=8
cleanUpTombstonesDuringOpen=true
kmg@Mac-Studio SBK % ./build/install/sbk/bin/sbk -class halodb -writers 1 -size 10 -time ns -seconds 300
2026-03-14 11:46:11 INFO Reflections took 453 ms to scan 51 urls, producing 27 keys and 163 values
2026-03-14 11:46:11 INFO Reflections took 8 ms to scan 1 urls, producing 19 keys and 21 values
2026-03-14 11:46:11 INFO
_____ ____ _ __
/ ____| | _ \ | | / /
| (___ | |_) | | |/ /
\___ \ | _ < | <
____) | | |_) | | |\ \
|_____/ |____/ |_| \_\
2026-03-14 11:46:11 INFO Storage Benchmark Kit
2026-03-14 11:46:11 INFO SBK Version: 9.0
2026-03-14 11:46:11 INFO SBK Website: https://github.com/kmgowda/SBK
2026-03-14 11:46:11 INFO Arguments List: [-class, halodb, -writers, 1, -size, 10, -time, ns, -seconds, 300]
2026-03-14 11:46:11 INFO Java Runtime Version: 25.0.2
2026-03-14 11:46:11 INFO SBP Version Major: 3, Minor: 0
2026-03-14 11:46:11 INFO Storage Drivers Package: io.sbk.driver
2026-03-14 11:46:11 INFO Logger Package: io.sbk.logger
2026-03-14 11:46:11 INFO sbk.applicationName: sbk
2026-03-14 11:46:11 INFO sbk.appHome: /Users/kmg/projects/SBK/build/install/sbk
2026-03-14 11:46:11 INFO sbk.className:
2026-03-14 11:46:11 INFO '-class': halodb
2026-03-14 11:46:11 INFO '-out':
2026-03-14 11:46:11 INFO Storage Classes in package 'io.sbk.driver': 51 [Activemq,
Artemis, AsyncFile, Atomicq, BookKeeper, Cassandra, CephS3, ConcurrentQ, Conqueue,
Couchbase, CouchDB, CSV, Db2, Derby, Dynamodb, Elasticsearch, Exasol, FdbRecord,
File, FileStream, FoundationDB, H2, HaloDB, HDFS, Hive, Jdbc, Kafka, LevelDB, Linkedbq,
MariaDB, Memcached, MinIO, MongoDB, MsSql, MySQL, Nats, NatsStream, Nsq, Null, OpenIO,
PostgreSQL, Pravega, Pulsar, RabbitMQ, Redis, RedPanda, RocketMQ, RocksDB, SeaweedS3,
SQLite, Syncq]
2026-03-14 11:46:11 INFO Logger Classes in package 'io.sbk.logger': 5 [CSVLogger,
GrpcLogger, PrometheusLogger, Sl4jLogger, SystemLogger]
2026-03-14 11:46:11 WARN The option '-out' is not supplied; default logger: SystemLogger
2026-03-14 11:46:11 INFO Arguments to Driver 'HaloDB' : [-writers, 1, -size, 10, -time, ns, -seconds, 300]
2026-03-14 11:46:11 INFO Action : Writing
2026-03-14 11:46:11 INFO Threads Type: Platform
2026-03-14 11:46:11 INFO Time Unit: NANOSECONDS
2026-03-14 11:46:11 INFO Minimum Latency: 0 ns
2026-03-14 11:46:11 INFO Maximum Latency: 180000000000 ns
2026-03-14 11:46:11 INFO Window Latency Store: HashMap, Size: 192 MB
2026-03-14 11:46:11 INFO Total Window Latency Store: HashMap, Size: 256 MB
2026-03-14 11:46:11 INFO Total Window Extension: None, Size: 0 MB
2026-03-14 11:46:11 INFO SBK Benchmark Started
2026-03-14 11:46:11 INFO OHC using Java8 Unsafe API
2026-03-14 11:46:11 INFO OHC using JNA OS native malloc/free
WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
WARNING: sun.misc.Unsafe::objectFieldOffset has been called by com.oath.halodb.Uns (file:/Users/kmg/projects/SBK/build/install/sbk/lib/halodb-0.5.6.jar)
WARNING: Please consider reporting this to the maintainers of class com.oath.halodb.Uns
WARNING: sun.misc.Unsafe::objectFieldOffset will be removed in a future release
WARNING: A restricted method in java.lang.System has been called
WARNING: java.lang.System::loadLibrary has been called by com.sun.jna.Native in an unnamed module (file:/Users/kmg/projects/SBK/build/install/sbk/lib/jna-4.2.2.jar)
WARNING: Use --enable-native-access=ALL-UNNAMED to avoid a warning for callers in this module
WARNING: Restricted methods will be blocked in a future release unless native access is enabled
2026-03-14 11:46:12 INFO Building index in parallel with 8 threads
2026-03-14 11:46:12 INFO About to scan 0 index files to construct index ...
2026-03-14 11:46:12 INFO Completed scanning all index files in 0s
2026-03-14 11:46:12 INFO About to scan 0 tombstone files ...
2026-03-14 11:46:12 INFO Completed scanning all tombstone files in 0s
2026-03-14 11:46:12 INFO Didn't find any existing records; initializing max sequence number to 1
2026-03-14 11:46:12 INFO Starting compaction thread ...
2026-03-14 11:46:12 INFO Opened HaloDB halodb
2026-03-14 11:46:12 INFO maxFileSize - 1073741824
2026-03-14 11:46:12 INFO About to merge 0 tombstone files ...
2026-03-14 11:46:12 INFO Tombstone files count, before merge:0, after merge:0
2026-03-14 11:46:12 INFO compactionThresholdPerFile - 0.7
2026-03-14 11:46:12 INFO CQueuePerl Start
2026-03-14 11:46:12 INFO PerformanceRecorderIdleBusyWait Started : 1000000 nanoseconds idle busy wait
2026-03-14 11:46:12 INFO SBK Benchmark initiated Writers
2026-03-14 11:46:12 INFO Writer 0 started , run seconds: 300
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 14.2 MB, 1492714 records, 298408.1 records/sec, 2.85 MB/sec, 3277.3 ns avg latency, 2416 ns min latency, 16010750 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 9; Latency Percentiles: 2625 ns 5th, 2667 ns 10th, 2708 ns 15th, 2709 ns 20th, 2750 ns 25th, 2750 ns 30th, 2792 ns 35th, 2833 ns 40th, 2834 ns 45th, 2875 ns 50th, 2916 ns 55th, 2959 ns 60th, 3083 ns 65th, 3208 ns 70th, 3291 ns 75th, 3375 ns 80th, 3500 ns 85th, 3708 ns 90th, 3833 ns 92.5th, 4000 ns 95th, 4458 ns 97.5th, 5208 ns 99th, 5708 ns 99.25th, 6375 ns 99.5th, 7667 ns 99.75th, 13209 ns 99.9th, 35167 ns 99.95th, 359541 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 13.8 MB, 1445829 records, 289065.7 records/sec, 2.76 MB/sec, 3417.5 ns avg latency, 2375 ns min latency, 8516583 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 2625 ns 5th, 2667 ns 10th, 2709 ns 15th, 2791 ns 20th, 2833 ns 25th, 2958 ns 30th, 3083 ns 35th, 3125 ns 40th, 3167 ns 45th, 3209 ns 50th, 3291 ns 55th, 3333 ns 60th, 3417 ns 65th, 3583 ns 70th, 3666 ns 75th, 3750 ns 80th, 3875 ns 85th, 4083 ns 90th, 4333 ns 92.5th, 4541 ns 95th, 4917 ns 97.5th, 5792 ns 99th, 6333 ns 99.25th, 6833 ns 99.5th, 7875 ns 99.75th, 10500 ns 99.9th, 13458 ns 99.95th, 31625 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1333490 records, 266577.8 records/sec, 2.54 MB/sec, 3713.1 ns avg latency, 2416 ns min latency, 7749583 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 3042 ns 5th, 3125 ns 10th, 3166 ns 15th, 3208 ns 20th, 3250 ns 25th, 3291 ns 30th, 3333 ns 35th, 3458 ns 40th, 3541 ns 45th, 3583 ns 50th, 3625 ns 55th, 3666 ns 60th, 3708 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 3959 ns 85th, 4250 ns 90th, 4500 ns 92.5th, 4791 ns 95th, 5125 ns 97.5th, 5875 ns 99th, 6542 ns 99.25th, 7125 ns 99.5th, 8708 ns 99.75th, 11750 ns 99.9th, 14750 ns 99.95th, 33958 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1327452 records, 265432.6 records/sec, 2.53 MB/sec, 3732.7 ns avg latency, 2500 ns min latency, 7211459 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3083 ns 5th, 3166 ns 10th, 3208 ns 15th, 3250 ns 20th, 3333 ns 25th, 3416 ns 30th, 3500 ns 35th, 3583 ns 40th, 3625 ns 45th, 3666 ns 50th, 3667 ns 55th, 3708 ns 60th, 3750 ns 65th, 3791 ns 70th, 3833 ns 75th, 3875 ns 80th, 3958 ns 85th, 4208 ns 90th, 4500 ns 92.5th, 4708 ns 95th, 5125 ns 97.5th, 5375 ns 99th, 5584 ns 99.25th, 6458 ns 99.5th, 7500 ns 99.75th, 10291 ns 99.9th, 12916 ns 99.95th, 23334 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.8 MB, 1346799 records, 269288.3 records/sec, 2.57 MB/sec, 3680.4 ns avg latency, 2459 ns min latency, 7498750 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2833 ns 5th, 3125 ns 10th, 3167 ns 15th, 3250 ns 20th, 3292 ns 25th, 3375 ns 30th, 3500 ns 35th, 3583 ns 40th, 3584 ns 45th, 3625 ns 50th, 3666 ns 55th, 3667 ns 60th, 3708 ns 65th, 3750 ns 70th, 3791 ns 75th, 3833 ns 80th, 3875 ns 85th, 4041 ns 90th, 4250 ns 92.5th, 4583 ns 95th, 5083 ns 97.5th, 5292 ns 99th, 5417 ns 99.25th, 6125 ns 99.5th, 7292 ns 99.75th, 9375 ns 99.9th, 11875 ns 99.95th, 19708 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 13.2 MB, 1380691 records, 276082.9 records/sec, 2.63 MB/sec, 3588.9 ns avg latency, 2458 ns min latency, 7371333 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2875 ns 5th, 3083 ns 10th, 3125 ns 15th, 3167 ns 20th, 3208 ns 25th, 3250 ns 30th, 3292 ns 35th, 3416 ns 40th, 3459 ns 45th, 3541 ns 50th, 3542 ns 55th, 3583 ns 60th, 3625 ns 65th, 3666 ns 70th, 3708 ns 75th, 3750 ns 80th, 3792 ns 85th, 3958 ns 90th, 4166 ns 92.5th, 4458 ns 95th, 4917 ns 97.5th, 5208 ns 99th, 5333 ns 99.25th, 5958 ns 99.5th, 7167 ns 99.75th, 9083 ns 99.9th, 11333 ns 99.95th, 18875 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.6 MB, 1323065 records, 264559.9 records/sec, 2.52 MB/sec, 3745.3 ns avg latency, 2875 ns min latency, 6058292 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3167 ns 10th, 3250 ns 15th, 3291 ns 20th, 3333 ns 25th, 3417 ns 30th, 3542 ns 35th, 3584 ns 40th, 3625 ns 45th, 3666 ns 50th, 3708 ns 55th, 3709 ns 60th, 3750 ns 65th, 3791 ns 70th, 3833 ns 75th, 3875 ns 80th, 3917 ns 85th, 4083 ns 90th, 4333 ns 92.5th, 4625 ns 95th, 5084 ns 97.5th, 5334 ns 99th, 5458 ns 99.25th, 5959 ns 99.5th, 7209 ns 99.75th, 8833 ns 99.9th, 11000 ns 99.95th, 18875 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.9 MB, 1351331 records, 270206.6 records/sec, 2.58 MB/sec, 3667.0 ns avg latency, 2833 ns min latency, 7070875 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3166 ns 10th, 3208 ns 15th, 3250 ns 20th, 3291 ns 25th, 3333 ns 30th, 3375 ns 35th, 3459 ns 40th, 3542 ns 45th, 3583 ns 50th, 3625 ns 55th, 3625 ns 60th, 3667 ns 65th, 3708 ns 70th, 3750 ns 75th, 3792 ns 80th, 3875 ns 85th, 4041 ns 90th, 4209 ns 92.5th, 4500 ns 95th, 4958 ns 97.5th, 5250 ns 99th, 5375 ns 99.25th, 5875 ns 99.5th, 7208 ns 99.75th, 9042 ns 99.9th, 11666 ns 99.95th, 25750 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.5 MB, 1313872 records, 262721.8 records/sec, 2.51 MB/sec, 3774.4 ns avg latency, 2458 ns min latency, 6587542 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2791 ns 5th, 3084 ns 10th, 3167 ns 15th, 3250 ns 20th, 3333 ns 25th, 3500 ns 30th, 3583 ns 35th, 3625 ns 40th, 3625 ns 45th, 3667 ns 50th, 3708 ns 55th, 3709 ns 60th, 3750 ns 65th, 3792 ns 70th, 3834 ns 75th, 3916 ns 80th, 4041 ns 85th, 4333 ns 90th, 4583 ns 92.5th, 4917 ns 95th, 5209 ns 97.5th, 5959 ns 99th, 6542 ns 99.25th, 7084 ns 99.5th, 8583 ns 99.75th, 11667 ns 99.9th, 14292 ns 99.95th, 35667 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1327459 records, 265437.5 records/sec, 2.53 MB/sec, 3734.6 ns avg latency, 2875 ns min latency, 6688250 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3167 ns 10th, 3208 ns 15th, 3250 ns 20th, 3333 ns 25th, 3458 ns 30th, 3541 ns 35th, 3583 ns 40th, 3584 ns 45th, 3625 ns 50th, 3667 ns 55th, 3708 ns 60th, 3709 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 3959 ns 85th, 4167 ns 90th, 4375 ns 92.5th, 4584 ns 95th, 5083 ns 97.5th, 5458 ns 99th, 5958 ns 99.25th, 6750 ns 99.5th, 7666 ns 99.75th, 9583 ns 99.9th, 12083 ns 99.95th, 26042 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.9 MB, 1357556 records, 271456.5 records/sec, 2.59 MB/sec, 3651.9 ns avg latency, 2458 ns min latency, 6710792 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2708 ns 5th, 2792 ns 10th, 3000 ns 15th, 3125 ns 20th, 3209 ns 25th, 3292 ns 30th, 3500 ns 35th, 3583 ns 40th, 3625 ns 45th, 3666 ns 50th, 3667 ns 55th, 3708 ns 60th, 3750 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 3917 ns 85th, 4083 ns 90th, 4250 ns 92.5th, 4583 ns 95th, 5125 ns 97.5th, 5375 ns 99th, 5542 ns 99.25th, 6250 ns 99.5th, 7292 ns 99.75th, 9083 ns 99.9th, 11583 ns 99.95th, 22625 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.5 MB, 1309932 records, 261934.0 records/sec, 2.50 MB/sec, 3781.8 ns avg latency, 2833 ns min latency, 8019958 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 3125 ns 5th, 3167 ns 10th, 3209 ns 15th, 3291 ns 20th, 3334 ns 25th, 3458 ns 30th, 3541 ns 35th, 3583 ns 40th, 3625 ns 45th, 3625 ns 50th, 3667 ns 55th, 3708 ns 60th, 3750 ns 65th, 3791 ns 70th, 3833 ns 75th, 3916 ns 80th, 4000 ns 85th, 4250 ns 90th, 4459 ns 92.5th, 4750 ns 95th, 5167 ns 97.5th, 6208 ns 99th, 6666 ns 99.25th, 7250 ns 99.5th, 8958 ns 99.75th, 12166 ns 99.9th, 14833 ns 99.95th, 42042 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1335271 records, 267000.3 records/sec, 2.55 MB/sec, 3708.9 ns avg latency, 2458 ns min latency, 6305500 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2875 ns 5th, 3125 ns 10th, 3167 ns 15th, 3209 ns 20th, 3292 ns 25th, 3375 ns 30th, 3458 ns 35th, 3541 ns 40th, 3583 ns 45th, 3625 ns 50th, 3666 ns 55th, 3667 ns 60th, 3709 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 3958 ns 85th, 4125 ns 90th, 4334 ns 92.5th, 4584 ns 95th, 5083 ns 97.5th, 5375 ns 99th, 5583 ns 99.25th, 6459 ns 99.5th, 7750 ns 99.75th, 11208 ns 99.9th, 13958 ns 99.95th, 35291 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.5 MB, 1314044 records, 262755.2 records/sec, 2.51 MB/sec, 3767.9 ns avg latency, 2875 ns min latency, 6570208 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3167 ns 10th, 3209 ns 15th, 3291 ns 20th, 3375 ns 25th, 3459 ns 30th, 3542 ns 35th, 3625 ns 40th, 3666 ns 45th, 3667 ns 50th, 3708 ns 55th, 3750 ns 60th, 3791 ns 65th, 3833 ns 70th, 3875 ns 75th, 3917 ns 80th, 4000 ns 85th, 4167 ns 90th, 4375 ns 92.5th, 4666 ns 95th, 5125 ns 97.5th, 5417 ns 99th, 5542 ns 99.25th, 6291 ns 99.5th, 7541 ns 99.75th, 10250 ns 99.9th, 12750 ns 99.95th, 19834 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.9 MB, 1351663 records, 270278.5 records/sec, 2.58 MB/sec, 3664.7 ns avg latency, 2458 ns min latency, 6463917 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2833 ns 5th, 3083 ns 10th, 3125 ns 15th, 3167 ns 20th, 3209 ns 25th, 3291 ns 30th, 3334 ns 35th, 3458 ns 40th, 3542 ns 45th, 3584 ns 50th, 3625 ns 55th, 3667 ns 60th, 3708 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 3958 ns 85th, 4125 ns 90th, 4375 ns 92.5th, 4708 ns 95th, 5083 ns 97.5th, 5500 ns 99th, 5875 ns 99.25th, 6583 ns 99.5th, 7625 ns 99.75th, 10250 ns 99.9th, 12583 ns 99.95th, 21125 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1327049 records, 265355.9 records/sec, 2.53 MB/sec, 3732.8 ns avg latency, 2875 ns min latency, 6354667 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3167 ns 10th, 3208 ns 15th, 3250 ns 20th, 3292 ns 25th, 3375 ns 30th, 3458 ns 35th, 3541 ns 40th, 3583 ns 45th, 3625 ns 50th, 3666 ns 55th, 3708 ns 60th, 3750 ns 65th, 3791 ns 70th, 3833 ns 75th, 3916 ns 80th, 4000 ns 85th, 4208 ns 90th, 4375 ns 92.5th, 4625 ns 95th, 5083 ns 97.5th, 5542 ns 99th, 6209 ns 99.25th, 6834 ns 99.5th, 7916 ns 99.75th, 10750 ns 99.9th, 14125 ns 99.95th, 22833 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.8 MB, 1343881 records, 268722.0 records/sec, 2.56 MB/sec, 3686.7 ns avg latency, 2416 ns min latency, 6808458 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2834 ns 5th, 3125 ns 10th, 3208 ns 15th, 3250 ns 20th, 3333 ns 25th, 3417 ns 30th, 3500 ns 35th, 3542 ns 40th, 3583 ns 45th, 3625 ns 50th, 3666 ns 55th, 3667 ns 60th, 3708 ns 65th, 3750 ns 70th, 3792 ns 75th, 3834 ns 80th, 3917 ns 85th, 4083 ns 90th, 4291 ns 92.5th, 4583 ns 95th, 5041 ns 97.5th, 5333 ns 99th, 5459 ns 99.25th, 6209 ns 99.5th, 7250 ns 99.75th, 9083 ns 99.9th, 11208 ns 99.95th, 20292 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.5 MB, 1309447 records, 261836.9 records/sec, 2.50 MB/sec, 3783.1 ns avg latency, 2917 ns min latency, 6679500 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3167 ns 5th, 3209 ns 10th, 3291 ns 15th, 3333 ns 20th, 3375 ns 25th, 3417 ns 30th, 3500 ns 35th, 3583 ns 40th, 3625 ns 45th, 3667 ns 50th, 3708 ns 55th, 3750 ns 60th, 3750 ns 65th, 3792 ns 70th, 3875 ns 75th, 3917 ns 80th, 4000 ns 85th, 4167 ns 90th, 4375 ns 92.5th, 4625 ns 95th, 5125 ns 97.5th, 5542 ns 99th, 6166 ns 99.25th, 6583 ns 99.5th, 7416 ns 99.75th, 9333 ns 99.9th, 11292 ns 99.95th, 24166 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.1 MB, 1267566 records, 253462.3 records/sec, 2.42 MB/sec, 3910.2 ns avg latency, 2500 ns min latency, 6737750 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3167 ns 5th, 3291 ns 10th, 3375 ns 15th, 3458 ns 20th, 3584 ns 25th, 3666 ns 30th, 3708 ns 35th, 3709 ns 40th, 3750 ns 45th, 3792 ns 50th, 3833 ns 55th, 3834 ns 60th, 3875 ns 65th, 3917 ns 70th, 4000 ns 75th, 4042 ns 80th, 4167 ns 85th, 4416 ns 90th, 4625 ns 92.5th, 4959 ns 95th, 5375 ns 97.5th, 6167 ns 99th, 6792 ns 99.25th, 7458 ns 99.5th, 8708 ns 99.75th, 10625 ns 99.9th, 12875 ns 99.95th, 23541 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.3 MB, 1294968 records, 258941.8 records/sec, 2.47 MB/sec, 3826.3 ns avg latency, 2416 ns min latency, 7919667 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 3042 ns 5th, 3125 ns 10th, 3208 ns 15th, 3250 ns 20th, 3292 ns 25th, 3375 ns 30th, 3417 ns 35th, 3500 ns 40th, 3542 ns 45th, 3584 ns 50th, 3625 ns 55th, 3708 ns 60th, 3750 ns 65th, 3792 ns 70th, 3875 ns 75th, 4000 ns 80th, 4125 ns 85th, 4458 ns 90th, 4666 ns 92.5th, 5041 ns 95th, 5750 ns 97.5th, 8500 ns 99th, 9125 ns 99.25th, 9875 ns 99.5th, 11542 ns 99.75th, 13916 ns 99.9th, 16458 ns 99.95th, 40458 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.4 MB, 1302007 records, 260349.0 records/sec, 2.48 MB/sec, 3806.2 ns avg latency, 2375 ns min latency, 6364834 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 2792 ns 5th, 3125 ns 10th, 3208 ns 15th, 3333 ns 20th, 3500 ns 25th, 3542 ns 30th, 3583 ns 35th, 3625 ns 40th, 3625 ns 45th, 3667 ns 50th, 3708 ns 55th, 3750 ns 60th, 3791 ns 65th, 3833 ns 70th, 3875 ns 75th, 4000 ns 80th, 4125 ns 85th, 4375 ns 90th, 4625 ns 92.5th, 4917 ns 95th, 5208 ns 97.5th, 5917 ns 99th, 6583 ns 99.25th, 7125 ns 99.5th, 8916 ns 99.75th, 12333 ns 99.9th, 14583 ns 99.95th, 37708 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1327408 records, 265427.9 records/sec, 2.53 MB/sec, 3732.8 ns avg latency, 2417 ns min latency, 6101708 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2750 ns 5th, 3042 ns 10th, 3125 ns 15th, 3208 ns 20th, 3250 ns 25th, 3334 ns 30th, 3458 ns 35th, 3541 ns 40th, 3583 ns 45th, 3625 ns 50th, 3666 ns 55th, 3708 ns 60th, 3750 ns 65th, 3792 ns 70th, 3834 ns 75th, 3917 ns 80th, 4042 ns 85th, 4333 ns 90th, 4541 ns 92.5th, 4875 ns 95th, 5250 ns 97.5th, 6458 ns 99th, 7000 ns 99.25th, 8000 ns 99.5th, 9709 ns 99.75th, 12458 ns 99.9th, 14333 ns 99.95th, 28292 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 14.0 MB, 1470933 records, 294127.0 records/sec, 2.81 MB/sec, 3365.0 ns avg latency, 2375 ns min latency, 20364375 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 2625 ns 5th, 2666 ns 10th, 2708 ns 15th, 2750 ns 20th, 2791 ns 25th, 2833 ns 30th, 2917 ns 35th, 3041 ns 40th, 3125 ns 45th, 3167 ns 50th, 3291 ns 55th, 3375 ns 60th, 3541 ns 65th, 3625 ns 70th, 3667 ns 75th, 3750 ns 80th, 3833 ns 85th, 3958 ns 90th, 4083 ns 92.5th, 4292 ns 95th, 4750 ns 97.5th, 5292 ns 99th, 5458 ns 99.25th, 6083 ns 99.5th, 7417 ns 99.75th, 10333 ns 99.9th, 12625 ns 99.95th, 24417 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 14.8 MB, 1555748 records, 311087.2 records/sec, 2.97 MB/sec, 3180.6 ns avg latency, 2416 ns min latency, 9876667 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 2625 ns 5th, 2625 ns 10th, 2667 ns 15th, 2708 ns 20th, 2750 ns 25th, 2791 ns 30th, 2833 ns 35th, 2875 ns 40th, 2958 ns 45th, 3041 ns 50th, 3083 ns 55th, 3125 ns 60th, 3167 ns 65th, 3250 ns 70th, 3292 ns 75th, 3417 ns 80th, 3542 ns 85th, 3750 ns 90th, 3875 ns 92.5th, 4042 ns 95th, 4458 ns 97.5th, 4875 ns 99th, 5083 ns 99.25th, 5458 ns 99.5th, 6458 ns 99.75th, 8333 ns 99.9th, 10500 ns 99.95th, 25084 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.8 MB, 1344425 records, 268831.1 records/sec, 2.56 MB/sec, 3684.7 ns avg latency, 2416 ns min latency, 7042917 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2875 ns 5th, 3083 ns 10th, 3125 ns 15th, 3208 ns 20th, 3250 ns 25th, 3375 ns 30th, 3417 ns 35th, 3500 ns 40th, 3541 ns 45th, 3583 ns 50th, 3584 ns 55th, 3625 ns 60th, 3667 ns 65th, 3709 ns 70th, 3791 ns 75th, 3875 ns 80th, 3958 ns 85th, 4167 ns 90th, 4416 ns 92.5th, 4708 ns 95th, 5125 ns 97.5th, 6083 ns 99th, 6500 ns 99.25th, 7208 ns 99.5th, 9416 ns 99.75th, 12417 ns 99.9th, 14583 ns 99.95th, 30291 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.9 MB, 1347616 records, 269469.2 records/sec, 2.57 MB/sec, 3676.5 ns avg latency, 2833 ns min latency, 6598000 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3083 ns 5th, 3125 ns 10th, 3166 ns 15th, 3208 ns 20th, 3250 ns 25th, 3333 ns 30th, 3416 ns 35th, 3459 ns 40th, 3500 ns 45th, 3542 ns 50th, 3584 ns 55th, 3625 ns 60th, 3667 ns 65th, 3708 ns 70th, 3750 ns 75th, 3833 ns 80th, 3917 ns 85th, 4083 ns 90th, 4250 ns 92.5th, 4500 ns 95th, 4958 ns 97.5th, 5333 ns 99th, 5500 ns 99.25th, 6542 ns 99.5th, 8292 ns 99.75th, 11625 ns 99.9th, 13625 ns 99.95th, 20583 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.6 MB, 1316866 records, 263320.5 records/sec, 2.51 MB/sec, 3764.1 ns avg latency, 2458 ns min latency, 6777500 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2750 ns 5th, 3083 ns 10th, 3209 ns 15th, 3417 ns 20th, 3500 ns 25th, 3542 ns 30th, 3583 ns 35th, 3625 ns 40th, 3625 ns 45th, 3667 ns 50th, 3708 ns 55th, 3709 ns 60th, 3750 ns 65th, 3792 ns 70th, 3875 ns 75th, 3917 ns 80th, 4041 ns 85th, 4250 ns 90th, 4541 ns 92.5th, 4875 ns 95th, 5125 ns 97.5th, 5500 ns 99th, 5750 ns 99.25th, 6542 ns 99.5th, 7833 ns 99.75th, 10875 ns 99.9th, 13416 ns 99.95th, 21917 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.3 MB, 1294465 records, 258841.1 records/sec, 2.47 MB/sec, 3827.5 ns avg latency, 2875 ns min latency, 7936917 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 3125 ns 5th, 3166 ns 10th, 3208 ns 15th, 3250 ns 20th, 3333 ns 25th, 3416 ns 30th, 3500 ns 35th, 3542 ns 40th, 3583 ns 45th, 3625 ns 50th, 3667 ns 55th, 3708 ns 60th, 3750 ns 65th, 3792 ns 70th, 3875 ns 75th, 4000 ns 80th, 4125 ns 85th, 4375 ns 90th, 4541 ns 92.5th, 4875 ns 95th, 5333 ns 97.5th, 6792 ns 99th, 7250 ns 99.25th, 8292 ns 99.5th, 10416 ns 99.75th, 14333 ns 99.9th, 18959 ns 99.95th, 61125 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.9 MB, 1356563 records, 271258.1 records/sec, 2.59 MB/sec, 3652.5 ns avg latency, 2416 ns min latency, 6616208 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 3000 ns 5th, 3083 ns 10th, 3125 ns 15th, 3166 ns 20th, 3208 ns 25th, 3291 ns 30th, 3375 ns 35th, 3458 ns 40th, 3500 ns 45th, 3542 ns 50th, 3583 ns 55th, 3625 ns 60th, 3666 ns 65th, 3708 ns 70th, 3750 ns 75th, 3834 ns 80th, 3958 ns 85th, 4125 ns 90th, 4333 ns 92.5th, 4583 ns 95th, 5042 ns 97.5th, 5708 ns 99th, 6417 ns 99.25th, 7459 ns 99.5th, 10459 ns 99.75th, 13667 ns 99.9th, 14583 ns 99.95th, 30375 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.8 MB, 1338427 records, 267631.9 records/sec, 2.55 MB/sec, 3701.1 ns avg latency, 2458 ns min latency, 6205625 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3083 ns 5th, 3125 ns 10th, 3167 ns 15th, 3250 ns 20th, 3292 ns 25th, 3375 ns 30th, 3459 ns 35th, 3500 ns 40th, 3542 ns 45th, 3583 ns 50th, 3625 ns 55th, 3666 ns 60th, 3708 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 4000 ns 85th, 4167 ns 90th, 4375 ns 92.5th, 4625 ns 95th, 5042 ns 97.5th, 5458 ns 99th, 5750 ns 99.25th, 6916 ns 99.5th, 9416 ns 99.75th, 13416 ns 99.9th, 14375 ns 99.95th, 22625 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.8 MB, 1345733 records, 269092.7 records/sec, 2.57 MB/sec, 3681.5 ns avg latency, 2416 ns min latency, 6816667 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2750 ns 5th, 3042 ns 10th, 3125 ns 15th, 3209 ns 20th, 3333 ns 25th, 3417 ns 30th, 3500 ns 35th, 3542 ns 40th, 3583 ns 45th, 3584 ns 50th, 3625 ns 55th, 3667 ns 60th, 3708 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 3958 ns 85th, 4125 ns 90th, 4292 ns 92.5th, 4542 ns 95th, 5041 ns 97.5th, 5375 ns 99th, 5542 ns 99.25th, 6584 ns 99.5th, 8625 ns 99.75th, 12625 ns 99.9th, 13875 ns 99.95th, 17958 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1335966 records, 267139.6 records/sec, 2.55 MB/sec, 3708.2 ns avg latency, 2416 ns min latency, 7008291 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 3041 ns 5th, 3084 ns 10th, 3166 ns 15th, 3208 ns 20th, 3250 ns 25th, 3334 ns 30th, 3417 ns 35th, 3500 ns 40th, 3541 ns 45th, 3542 ns 50th, 3584 ns 55th, 3625 ns 60th, 3667 ns 65th, 3750 ns 70th, 3792 ns 75th, 3875 ns 80th, 4000 ns 85th, 4209 ns 90th, 4416 ns 92.5th, 4667 ns 95th, 5083 ns 97.5th, 5917 ns 99th, 6667 ns 99.25th, 7500 ns 99.5th, 10917 ns 99.75th, 13959 ns 99.9th, 14958 ns 99.95th, 37916 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.6 MB, 1321465 records, 264240.1 records/sec, 2.52 MB/sec, 3750.1 ns avg latency, 2417 ns min latency, 6176541 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 2750 ns 5th, 2875 ns 10th, 3083 ns 15th, 3167 ns 20th, 3292 ns 25th, 3458 ns 30th, 3500 ns 35th, 3583 ns 40th, 3625 ns 45th, 3625 ns 50th, 3667 ns 55th, 3709 ns 60th, 3791 ns 65th, 3833 ns 70th, 3875 ns 75th, 3959 ns 80th, 4083 ns 85th, 4333 ns 90th, 4583 ns 92.5th, 4917 ns 95th, 5250 ns 97.5th, 5916 ns 99th, 6417 ns 99.25th, 7500 ns 99.5th, 10708 ns 99.75th, 13667 ns 99.9th, 14583 ns 99.95th, 32375 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.4 MB, 1297349 records, 259417.8 records/sec, 2.47 MB/sec, 3821.1 ns avg latency, 2916 ns min latency, 6972792 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3167 ns 5th, 3209 ns 10th, 3291 ns 15th, 3334 ns 20th, 3458 ns 25th, 3541 ns 30th, 3583 ns 35th, 3625 ns 40th, 3625 ns 45th, 3667 ns 50th, 3708 ns 55th, 3750 ns 60th, 3792 ns 65th, 3834 ns 70th, 3916 ns 75th, 3959 ns 80th, 4083 ns 85th, 4250 ns 90th, 4458 ns 92.5th, 4709 ns 95th, 5166 ns 97.5th, 5500 ns 99th, 5667 ns 99.25th, 6375 ns 99.5th, 8416 ns 99.75th, 12542 ns 99.9th, 14375 ns 99.95th, 25417 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.6 MB, 1318341 records, 263615.4 records/sec, 2.51 MB/sec, 3759.3 ns avg latency, 2500 ns min latency, 6848833 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3083 ns 5th, 3166 ns 10th, 3208 ns 15th, 3250 ns 20th, 3333 ns 25th, 3375 ns 30th, 3459 ns 35th, 3542 ns 40th, 3584 ns 45th, 3625 ns 50th, 3667 ns 55th, 3708 ns 60th, 3750 ns 65th, 3792 ns 70th, 3875 ns 75th, 3958 ns 80th, 4042 ns 85th, 4250 ns 90th, 4458 ns 92.5th, 4708 ns 95th, 5208 ns 97.5th, 6208 ns 99th, 6542 ns 99.25th, 7458 ns 99.5th, 10666 ns 99.75th, 13584 ns 99.9th, 14292 ns 99.95th, 27916 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.4 MB, 1299540 records, 259855.9 records/sec, 2.48 MB/sec, 3813.1 ns avg latency, 2500 ns min latency, 6619583 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 3125 ns 5th, 3167 ns 10th, 3250 ns 15th, 3292 ns 20th, 3375 ns 25th, 3458 ns 30th, 3541 ns 35th, 3583 ns 40th, 3625 ns 45th, 3666 ns 50th, 3708 ns 55th, 3750 ns 60th, 3791 ns 65th, 3833 ns 70th, 3916 ns 75th, 4000 ns 80th, 4125 ns 85th, 4333 ns 90th, 4500 ns 92.5th, 4792 ns 95th, 5250 ns 97.5th, 6542 ns 99th, 7042 ns 99.25th, 8292 ns 99.5th, 11500 ns 99.75th, 14250 ns 99.9th, 15458 ns 99.95th, 40542 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.2 MB, 1281337 records, 256214.8 records/sec, 2.44 MB/sec, 3867.6 ns avg latency, 2459 ns min latency, 11898958 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3208 ns 10th, 3292 ns 15th, 3375 ns 20th, 3541 ns 25th, 3583 ns 30th, 3625 ns 35th, 3666 ns 40th, 3667 ns 45th, 3709 ns 50th, 3750 ns 55th, 3792 ns 60th, 3834 ns 65th, 3875 ns 70th, 3958 ns 75th, 4041 ns 80th, 4125 ns 85th, 4334 ns 90th, 4542 ns 92.5th, 4875 ns 95th, 5250 ns 97.5th, 5666 ns 99th, 5917 ns 99.25th, 7292 ns 99.5th, 10750 ns 99.75th, 13833 ns 99.9th, 14500 ns 99.95th, 22875 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.7 MB, 1331726 records, 266290.3 records/sec, 2.54 MB/sec, 3720.3 ns avg latency, 2458 ns min latency, 5890083 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2791 ns 5th, 3083 ns 10th, 3166 ns 15th, 3208 ns 20th, 3250 ns 25th, 3334 ns 30th, 3417 ns 35th, 3541 ns 40th, 3584 ns 45th, 3625 ns 50th, 3667 ns 55th, 3709 ns 60th, 3791 ns 65th, 3833 ns 70th, 3916 ns 75th, 3959 ns 80th, 4083 ns 85th, 4250 ns 90th, 4458 ns 92.5th, 4708 ns 95th, 5167 ns 97.5th, 5625 ns 99th, 5958 ns 99.25th, 6959 ns 99.5th, 9750 ns 99.75th, 13208 ns 99.9th, 14500 ns 99.95th, 22750 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.3 MB, 1294741 records, 258896.3 records/sec, 2.47 MB/sec, 3828.0 ns avg latency, 2500 ns min latency, 6226458 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3208 ns 10th, 3250 ns 15th, 3333 ns 20th, 3375 ns 25th, 3500 ns 30th, 3583 ns 35th, 3625 ns 40th, 3667 ns 45th, 3708 ns 50th, 3750 ns 55th, 3792 ns 60th, 3833 ns 65th, 3875 ns 70th, 3958 ns 75th, 4041 ns 80th, 4125 ns 85th, 4334 ns 90th, 4583 ns 92.5th, 4875 ns 95th, 5250 ns 97.5th, 5625 ns 99th, 5792 ns 99.25th, 6500 ns 99.5th, 7709 ns 99.75th, 10542 ns 99.9th, 12625 ns 99.95th, 20959 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.1 MB, 1273020 records, 254552.9 records/sec, 2.43 MB/sec, 3894.0 ns avg latency, 2500 ns min latency, 6790542 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 3166 ns 5th, 3250 ns 10th, 3292 ns 15th, 3375 ns 20th, 3458 ns 25th, 3542 ns 30th, 3625 ns 35th, 3666 ns 40th, 3708 ns 45th, 3750 ns 50th, 3791 ns 55th, 3833 ns 60th, 3875 ns 65th, 3917 ns 70th, 4000 ns 75th, 4083 ns 80th, 4167 ns 85th, 4375 ns 90th, 4583 ns 92.5th, 4875 ns 95th, 5333 ns 97.5th, 6167 ns 99th, 6708 ns 99.25th, 7334 ns 99.5th, 9292 ns 99.75th, 12417 ns 99.9th, 15000 ns 99.95th, 41000 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.3 MB, 1292828 records, 258513.9 records/sec, 2.47 MB/sec, 3834.7 ns avg latency, 2458 ns min latency, 6370958 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3125 ns 5th, 3208 ns 10th, 3250 ns 15th, 3333 ns 20th, 3375 ns 25th, 3459 ns 30th, 3542 ns 35th, 3625 ns 40th, 3667 ns 45th, 3709 ns 50th, 3750 ns 55th, 3792 ns 60th, 3875 ns 65th, 3917 ns 70th, 4000 ns 75th, 4083 ns 80th, 4167 ns 85th, 4375 ns 90th, 4583 ns 92.5th, 4834 ns 95th, 5250 ns 97.5th, 5708 ns 99th, 6083 ns 99.25th, 6917 ns 99.5th, 8250 ns 99.75th, 11500 ns 99.9th, 13917 ns 99.95th, 34500 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.2 MB, 1280141 records, 255976.1 records/sec, 2.44 MB/sec, 3872.4 ns avg latency, 2458 ns min latency, 7353750 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 2792 ns 5th, 3084 ns 10th, 3208 ns 15th, 3292 ns 20th, 3416 ns 25th, 3541 ns 30th, 3625 ns 35th, 3667 ns 40th, 3708 ns 45th, 3750 ns 50th, 3792 ns 55th, 3834 ns 60th, 3916 ns 65th, 3959 ns 70th, 4042 ns 75th, 4125 ns 80th, 4291 ns 85th, 4500 ns 90th, 4666 ns 92.5th, 5000 ns 95th, 5375 ns 97.5th, 6333 ns 99th, 6875 ns 99.25th, 7542 ns 99.5th, 9417 ns 99.75th, 12917 ns 99.9th, 16000 ns 99.95th, 44834 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.2 MB, 1282877 records, 256523.9 records/sec, 2.45 MB/sec, 3863.5 ns avg latency, 2916 ns min latency, 6536500 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3166 ns 5th, 3208 ns 10th, 3291 ns 15th, 3375 ns 20th, 3458 ns 25th, 3542 ns 30th, 3625 ns 35th, 3666 ns 40th, 3708 ns 45th, 3750 ns 50th, 3750 ns 55th, 3833 ns 60th, 3875 ns 65th, 3917 ns 70th, 3959 ns 75th, 4042 ns 80th, 4166 ns 85th, 4334 ns 90th, 4541 ns 92.5th, 4792 ns 95th, 5250 ns 97.5th, 5667 ns 99th, 6000 ns 99.25th, 6958 ns 99.5th, 8459 ns 99.75th, 10875 ns 99.9th, 13000 ns 99.95th, 21334 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.6 MB, 1321517 records, 264250.4 records/sec, 2.52 MB/sec, 3750.5 ns avg latency, 2416 ns min latency, 6782375 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2750 ns 5th, 2875 ns 10th, 3125 ns 15th, 3208 ns 20th, 3292 ns 25th, 3417 ns 30th, 3542 ns 35th, 3625 ns 40th, 3666 ns 45th, 3708 ns 50th, 3750 ns 55th, 3791 ns 60th, 3833 ns 65th, 3875 ns 70th, 3958 ns 75th, 4000 ns 80th, 4125 ns 85th, 4291 ns 90th, 4458 ns 92.5th, 4750 ns 95th, 5209 ns 97.5th, 5708 ns 99th, 6000 ns 99.25th, 6708 ns 99.5th, 7792 ns 99.75th, 10625 ns 99.9th, 13000 ns 99.95th, 24625 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.2 MB, 1275107 records, 254970.3 records/sec, 2.43 MB/sec, 3887.8 ns avg latency, 2500 ns min latency, 16535792 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3000 ns 5th, 3209 ns 10th, 3292 ns 15th, 3375 ns 20th, 3500 ns 25th, 3583 ns 30th, 3625 ns 35th, 3667 ns 40th, 3709 ns 45th, 3750 ns 50th, 3792 ns 55th, 3834 ns 60th, 3916 ns 65th, 3958 ns 70th, 4041 ns 75th, 4125 ns 80th, 4250 ns 85th, 4458 ns 90th, 4625 ns 92.5th, 4917 ns 95th, 5291 ns 97.5th, 5667 ns 99th, 5875 ns 99.25th, 6459 ns 99.5th, 7583 ns 99.75th, 10209 ns 99.9th, 12500 ns 99.95th, 21250 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 14.9 MB, 1567278 records, 313392.3 records/sec, 2.99 MB/sec, 3158.0 ns avg latency, 2458 ns min latency, 6812625 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 2708 ns 5th, 2709 ns 10th, 2750 ns 15th, 2791 ns 20th, 2792 ns 25th, 2834 ns 30th, 2875 ns 35th, 2917 ns 40th, 2958 ns 45th, 3000 ns 50th, 3041 ns 55th, 3083 ns 60th, 3125 ns 65th, 3208 ns 70th, 3250 ns 75th, 3333 ns 80th, 3458 ns 85th, 3625 ns 90th, 3791 ns 92.5th, 3958 ns 95th, 4208 ns 97.5th, 4667 ns 99th, 4834 ns 99.25th, 5250 ns 99.5th, 6625 ns 99.75th, 8958 ns 99.9th, 11292 ns 99.95th, 16542 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 13.3 MB, 1390621 records, 278068.4 records/sec, 2.65 MB/sec, 3561.4 ns avg latency, 2500 ns min latency, 6656375 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2791 ns 5th, 2916 ns 10th, 3042 ns 15th, 3125 ns 20th, 3208 ns 25th, 3250 ns 30th, 3291 ns 35th, 3333 ns 40th, 3375 ns 45th, 3417 ns 50th, 3459 ns 55th, 3541 ns 60th, 3583 ns 65th, 3625 ns 70th, 3708 ns 75th, 3791 ns 80th, 3875 ns 85th, 4042 ns 90th, 4208 ns 92.5th, 4459 ns 95th, 4833 ns 97.5th, 5333 ns 99th, 5541 ns 99.25th, 5959 ns 99.5th, 7000 ns 99.75th, 9208 ns 99.9th, 11791 ns 99.95th, 19416 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.3 MB, 1284679 records, 256884.3 records/sec, 2.45 MB/sec, 3858.8 ns avg latency, 2541 ns min latency, 7511500 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3166 ns 5th, 3250 ns 10th, 3333 ns 15th, 3417 ns 20th, 3500 ns 25th, 3583 ns 30th, 3625 ns 35th, 3667 ns 40th, 3708 ns 45th, 3750 ns 50th, 3792 ns 55th, 3833 ns 60th, 3875 ns 65th, 3917 ns 70th, 4000 ns 75th, 4083 ns 80th, 4167 ns 85th, 4334 ns 90th, 4541 ns 92.5th, 4792 ns 95th, 5209 ns 97.5th, 5583 ns 99th, 5708 ns 99.25th, 6000 ns 99.5th, 7416 ns 99.75th, 10041 ns 99.9th, 12500 ns 99.95th, 19667 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.1 MB, 1265382 records, 253025.2 records/sec, 2.41 MB/sec, 3917.4 ns avg latency, 2541 ns min latency, 6831625 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3209 ns 5th, 3292 ns 10th, 3375 ns 15th, 3500 ns 20th, 3583 ns 25th, 3625 ns 30th, 3667 ns 35th, 3708 ns 40th, 3750 ns 45th, 3792 ns 50th, 3833 ns 55th, 3875 ns 60th, 3917 ns 65th, 3959 ns 70th, 4041 ns 75th, 4125 ns 80th, 4208 ns 85th, 4375 ns 90th, 4583 ns 92.5th, 4834 ns 95th, 5291 ns 97.5th, 5667 ns 99th, 5875 ns 99.25th, 6459 ns 99.5th, 7584 ns 99.75th, 10583 ns 99.9th, 12833 ns 99.95th, 18542 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.3 MB, 1291759 records, 258300.0 records/sec, 2.46 MB/sec, 3835.7 ns avg latency, 2500 ns min latency, 6932542 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 2875 ns 5th, 3125 ns 10th, 3209 ns 15th, 3292 ns 20th, 3375 ns 25th, 3458 ns 30th, 3542 ns 35th, 3625 ns 40th, 3667 ns 45th, 3709 ns 50th, 3791 ns 55th, 3833 ns 60th, 3875 ns 65th, 3958 ns 70th, 4000 ns 75th, 4084 ns 80th, 4208 ns 85th, 4417 ns 90th, 4583 ns 92.5th, 4875 ns 95th, 5333 ns 97.5th, 6084 ns 99th, 6667 ns 99.25th, 7291 ns 99.5th, 8667 ns 99.75th, 11958 ns 99.9th, 14708 ns 99.95th, 38375 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.2 MB, 1274217 records, 254792.3 records/sec, 2.43 MB/sec, 3890.0 ns avg latency, 2541 ns min latency, 6322084 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 3167 ns 5th, 3250 ns 10th, 3292 ns 15th, 3375 ns 20th, 3458 ns 25th, 3541 ns 30th, 3584 ns 35th, 3666 ns 40th, 3708 ns 45th, 3750 ns 50th, 3792 ns 55th, 3833 ns 60th, 3875 ns 65th, 3958 ns 70th, 4000 ns 75th, 4084 ns 80th, 4209 ns 85th, 4458 ns 90th, 4666 ns 92.5th, 4958 ns 95th, 5333 ns 97.5th, 5916 ns 99th, 6416 ns 99.25th, 6958 ns 99.5th, 7792 ns 99.75th, 10000 ns 99.9th, 12833 ns 99.95th, 28541 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.1 MB, 1273948 records, 254738.6 records/sec, 2.43 MB/sec, 3890.1 ns avg latency, 2458 ns min latency, 7167541 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3166 ns 5th, 3250 ns 10th, 3333 ns 15th, 3417 ns 20th, 3541 ns 25th, 3625 ns 30th, 3667 ns 35th, 3708 ns 40th, 3750 ns 45th, 3792 ns 50th, 3833 ns 55th, 3875 ns 60th, 3917 ns 65th, 3959 ns 70th, 4041 ns 75th, 4084 ns 80th, 4208 ns 85th, 4375 ns 90th, 4542 ns 92.5th, 4792 ns 95th, 5250 ns 97.5th, 5667 ns 99th, 5875 ns 99.25th, 6709 ns 99.5th, 7667 ns 99.75th, 9542 ns 99.9th, 11917 ns 99.95th, 26125 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.3 MB, 1287420 records, 257431.9 records/sec, 2.46 MB/sec, 3849.9 ns avg latency, 2500 ns min latency, 6136458 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 3125 ns 5th, 3209 ns 10th, 3291 ns 15th, 3334 ns 20th, 3417 ns 25th, 3500 ns 30th, 3542 ns 35th, 3625 ns 40th, 3666 ns 45th, 3708 ns 50th, 3750 ns 55th, 3792 ns 60th, 3833 ns 65th, 3916 ns 70th, 3958 ns 75th, 4042 ns 80th, 4166 ns 85th, 4375 ns 90th, 4542 ns 92.5th, 4833 ns 95th, 5291 ns 97.5th, 6209 ns 99th, 6708 ns 99.25th, 7208 ns 99.5th, 8375 ns 99.75th, 10916 ns 99.9th, 13750 ns 99.95th, 60459 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.2 MB, 1280087 records, 255966.1 records/sec, 2.44 MB/sec, 3871.8 ns avg latency, 2458 ns min latency, 7331000 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2792 ns 5th, 3042 ns 10th, 3208 ns 15th, 3333 ns 20th, 3458 ns 25th, 3542 ns 30th, 3625 ns 35th, 3667 ns 40th, 3750 ns 45th, 3791 ns 50th, 3833 ns 55th, 3875 ns 60th, 3917 ns 65th, 4000 ns 70th, 4042 ns 75th, 4125 ns 80th, 4250 ns 85th, 4417 ns 90th, 4584 ns 92.5th, 4875 ns 95th, 5333 ns 97.5th, 6042 ns 99th, 6667 ns 99.25th, 7209 ns 99.5th, 8583 ns 99.75th, 11375 ns 99.9th, 13958 ns 99.95th, 35250 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.0 MB, 1261675 records, 252284.3 records/sec, 2.41 MB/sec, 3927.2 ns avg latency, 2875 ns min latency, 7738375 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 3167 ns 5th, 3250 ns 10th, 3334 ns 15th, 3458 ns 20th, 3541 ns 25th, 3583 ns 30th, 3625 ns 35th, 3666 ns 40th, 3708 ns 45th, 3750 ns 50th, 3791 ns 55th, 3833 ns 60th, 3875 ns 65th, 3958 ns 70th, 4000 ns 75th, 4084 ns 80th, 4209 ns 85th, 4458 ns 90th, 4625 ns 92.5th, 4958 ns 95th, 5333 ns 97.5th, 6292 ns 99th, 6875 ns 99.25th, 7708 ns 99.5th, 9625 ns 99.75th, 13417 ns 99.9th, 17167 ns 99.95th, 47083 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.1 MB, 1272313 records, 254411.6 records/sec, 2.43 MB/sec, 3895.1 ns avg latency, 2375 ns min latency, 7729375 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 2750 ns 5th, 2959 ns 10th, 3166 ns 15th, 3250 ns 20th, 3375 ns 25th, 3500 ns 30th, 3584 ns 35th, 3667 ns 40th, 3708 ns 45th, 3750 ns 50th, 3792 ns 55th, 3875 ns 60th, 3917 ns 65th, 4000 ns 70th, 4083 ns 75th, 4167 ns 80th, 4292 ns 85th, 4542 ns 90th, 4791 ns 92.5th, 5125 ns 95th, 5542 ns 97.5th, 6833 ns 99th, 7375 ns 99.25th, 8416 ns 99.5th, 10250 ns 99.75th, 14000 ns 99.9th, 18042 ns 99.95th, 52334 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 11.7 MB, 1227742 records, 245499.1 records/sec, 2.34 MB/sec, 4036.5 ns avg latency, 2875 ns min latency, 8871875 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 3208 ns 5th, 3292 ns 10th, 3417 ns 15th, 3541 ns 20th, 3584 ns 25th, 3625 ns 30th, 3667 ns 35th, 3709 ns 40th, 3750 ns 45th, 3792 ns 50th, 3875 ns 55th, 3917 ns 60th, 3959 ns 65th, 4042 ns 70th, 4125 ns 75th, 4209 ns 80th, 4375 ns 85th, 4666 ns 90th, 4875 ns 92.5th, 5166 ns 95th, 5541 ns 97.5th, 6500 ns 99th, 6917 ns 99.25th, 7708 ns 99.5th, 9833 ns 99.75th, 13875 ns 99.9th, 18333 ns 99.95th, 61209 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.4 MB, 1300328 records, 260013.5 records/sec, 2.48 MB/sec, 3810.1 ns avg latency, 2375 ns min latency, 7194500 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 3042 ns 5th, 3125 ns 10th, 3208 ns 15th, 3291 ns 20th, 3334 ns 25th, 3417 ns 30th, 3500 ns 35th, 3583 ns 40th, 3625 ns 45th, 3667 ns 50th, 3709 ns 55th, 3791 ns 60th, 3833 ns 65th, 3916 ns 70th, 3959 ns 75th, 4042 ns 80th, 4167 ns 85th, 4375 ns 90th, 4541 ns 92.5th, 4792 ns 95th, 5250 ns 97.5th, 6041 ns 99th, 6458 ns 99.25th, 7125 ns 99.5th, 9125 ns 99.75th, 12541 ns 99.9th, 15791 ns 99.95th, 47708 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 12.4 MB, 1302938 records, 260535.4 records/sec, 2.48 MB/sec, 3804.4 ns avg latency, 2458 ns min latency, 7559209 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 3042 ns 5th, 3125 ns 10th, 3209 ns 15th, 3333 ns 20th, 3417 ns 25th, 3500 ns 30th, 3542 ns 35th, 3583 ns 40th, 3625 ns 45th, 3667 ns 50th, 3708 ns 55th, 3750 ns 60th, 3792 ns 65th, 3834 ns 70th, 3917 ns 75th, 4000 ns 80th, 4083 ns 85th, 4291 ns 90th, 4458 ns 92.5th, 4708 ns 95th, 5125 ns 97.5th, 5583 ns 99th, 5875 ns 99.25th, 6792 ns 99.5th, 8042 ns 99.75th, 11084 ns 99.9th, 13750 ns 99.95th, 33959 ns 99.99th
Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 4 seconds, 12.3 MB, 1293787 records, 262062.8 records/sec, 2.50 MB/sec, 3780.3 ns avg latency, 2375 ns min latency, 10934750 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2958 ns 5th, 3084 ns 10th, 3167 ns 15th, 3291 ns 20th, 3375 ns 25th, 3458 ns 30th, 3500 ns 35th, 3542 ns 40th, 3625 ns 45th, 3666 ns 50th, 3708 ns 55th, 3750 ns 60th, 3792 ns 65th, 3875 ns 70th, 3917 ns 75th, 4000 ns 80th, 4125 ns 85th, 4333 ns 90th, 4500 ns 92.5th, 4792 ns 95th, 5208 ns 97.5th, 6250 ns 99th, 6708 ns 99.25th, 7250 ns 99.5th, 8541 ns 99.75th, 11333 ns 99.9th, 14083 ns 99.95th, 32875 ns 99.99th
Total Halodb Writing 1 writers, 0 readers, 1 max writers, 0 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 300 seconds, 759.5 MB, 79634399 records, 265448.0 records/sec, 2.53 MB/sec, 3731.6 ns avg latency, 2375 ns min latency, 20364375 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 1; Latency Percentiles: 2792 ns 5th, 3042 ns 10th, 3166 ns 15th, 3208 ns 20th, 3291 ns 25th, 3375 ns 30th, 3458 ns 35th, 3541 ns 40th, 3583 ns 45th, 3625 ns 50th, 3667 ns 55th, 3708 ns 60th, 3750 ns 65th, 3792 ns 70th, 3875 ns 75th, 3958 ns 80th, 4083 ns 85th, 4250 ns 90th, 4458 ns 92.5th, 4709 ns 95th, 5167 ns 97.5th, 5709 ns 99th, 6250 ns 99.25th, 7000 ns 99.5th, 8542 ns 99.75th, 11792 ns 99.9th, 14125 ns 99.95th, 33084 ns 99.99th
2026-03-14 11:51:12 INFO PerformanceRecorderIdleBusyWait Exited
2026-03-14 11:51:12 INFO CQueuePerl Shutdown
2026-03-14 11:51:12 INFO Writer 0 exited
2026-03-14 11:51:12 INFO Compaction thread stopped.
2026-03-14 11:51:13 INFO SBK Benchmark Shutdown
kmg@Mac-Studio SBK % ./build/install/sbk/bin/sbk -class halodb -readers 1 -size 10 -time ns -seconds 30
2026-03-14 11:51:46 INFO Reflections took 432 ms to scan 51 urls, producing 27 keys and 163 values
2026-03-14 11:51:46 INFO Reflections took 14 ms to scan 1 urls, producing 19 keys and 21 values
2026-03-14 11:51:46 INFO
_____ ____ _ __
/ ____| | _ \ | | / /
| (___ | |_) | | |/ /
\___ \ | _ < | <
____) | | |_) | | |\ \
|_____/ |____/ |_| \_\
2026-03-14 11:51:46 INFO Storage Benchmark Kit
2026-03-14 11:51:46 INFO SBK Version: 9.0
2026-03-14 11:51:46 INFO SBK Website: https://github.com/kmgowda/SBK
2026-03-14 11:51:46 INFO Arguments List: [-class, halodb, -readers, 1, -size, 10, -time, ns, -seconds, 30]
2026-03-14 11:51:46 INFO Java Runtime Version: 25.0.2
2026-03-14 11:51:46 INFO SBP Version Major: 3, Minor: 0
2026-03-14 11:51:46 INFO Storage Drivers Package: io.sbk.driver
2026-03-14 11:51:46 INFO Logger Package: io.sbk.logger
2026-03-14 11:51:46 INFO sbk.applicationName: sbk
2026-03-14 11:51:46 INFO sbk.appHome: /Users/kmg/projects/SBK/build/install/sbk
2026-03-14 11:51:46 INFO sbk.className:
2026-03-14 11:51:46 INFO '-class': halodb
2026-03-14 11:51:46 INFO '-out':
2026-03-14 11:51:46 INFO Storage Classes in package 'io.sbk.driver': 51 [Activemq,
Artemis, AsyncFile, Atomicq, BookKeeper, Cassandra, CephS3, ConcurrentQ, Conqueue,
Couchbase, CouchDB, CSV, Db2, Derby, Dynamodb, Elasticsearch, Exasol, FdbRecord,
File, FileStream, FoundationDB, H2, HaloDB, HDFS, Hive, Jdbc, Kafka, LevelDB, Linkedbq,
MariaDB, Memcached, MinIO, MongoDB, MsSql, MySQL, Nats, NatsStream, Nsq, Null, OpenIO,
PostgreSQL, Pravega, Pulsar, RabbitMQ, Redis, RedPanda, RocketMQ, RocksDB, SeaweedS3,
SQLite, Syncq]
2026-03-14 11:51:46 INFO Logger Classes in package 'io.sbk.logger': 5 [CSVLogger,
GrpcLogger, PrometheusLogger, Sl4jLogger, SystemLogger]
2026-03-14 11:51:46 WARN The option '-out' is not supplied; default logger: SystemLogger
2026-03-14 11:51:46 INFO Arguments to Driver 'HaloDB' : [-readers, 1, -size, 10, -time, ns, -seconds, 30]
2026-03-14 11:51:46 INFO Action : Reading
2026-03-14 11:51:46 INFO Threads Type: Platform
2026-03-14 11:51:46 INFO Time Unit: NANOSECONDS
2026-03-14 11:51:46 INFO Minimum Latency: 0 ns
2026-03-14 11:51:46 INFO Maximum Latency: 180000000000 ns
2026-03-14 11:51:46 INFO Window Latency Store: HashMap, Size: 192 MB
2026-03-14 11:51:46 INFO Total Window Latency Store: HashMap, Size: 256 MB
2026-03-14 11:51:46 INFO Total Window Extension: None, Size: 0 MB
2026-03-14 11:51:46 INFO SBK Benchmark Started
2026-03-14 11:51:46 INFO OHC using Java8 Unsafe API
2026-03-14 11:51:46 INFO OHC using JNA OS native malloc/free
WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
WARNING: sun.misc.Unsafe::objectFieldOffset has been called by com.oath.halodb.Uns (file:/Users/kmg/projects/SBK/build/install/sbk/lib/halodb-0.5.6.jar)
WARNING: Please consider reporting this to the maintainers of class com.oath.halodb.Uns
WARNING: sun.misc.Unsafe::objectFieldOffset will be removed in a future release
WARNING: A restricted method in java.lang.System has been called
WARNING: java.lang.System::loadLibrary has been called by com.sun.jna.Native in an unnamed module (file:/Users/kmg/projects/SBK/build/install/sbk/lib/jna-4.2.2.jar)
WARNING: Use --enable-native-access=ALL-UNNAMED to avoid a warning for callers in this module
WARNING: Restricted methods will be blocked in a future release unless native access is enabled
2026-03-14 11:51:47 INFO Building index in parallel with 8 threads
2026-03-14 11:51:47 INFO About to scan 3 index files to construct index ...
2026-03-14 11:51:55 INFO Completed scanning all index files in 8s
2026-03-14 11:51:55 INFO About to scan 0 tombstone files ...
2026-03-14 11:51:55 INFO Completed scanning all tombstone files in 0s
2026-03-14 11:51:55 INFO Found max sequence number 79641267, now starting from 79641367
2026-03-14 11:51:55 INFO Starting compaction thread ...
2026-03-14 11:51:55 INFO Opened HaloDB halodb
2026-03-14 11:51:55 INFO maxFileSize - 1073741824
2026-03-14 11:51:55 INFO About to merge 0 tombstone files ...
2026-03-14 11:51:55 INFO compactionThresholdPerFile - 0.7
2026-03-14 11:51:55 INFO Tombstone files count, before merge:0, after merge:0
2026-03-14 11:51:56 INFO CQueuePerl Start
2026-03-14 11:51:56 INFO PerformanceRecorderIdleBusyWait Started : 1000000 nanoseconds idle busy wait
2026-03-14 11:51:56 INFO SBK Benchmark initiated Readers
2026-03-14 11:51:56 INFO Reader 0 started , run seconds: 30
Halodb Reading 0 writers, 1 readers, 0 max writers, 1 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 62.8 MB, 6585832 records, 1316749.2 records/sec, 12.56 MB/sec, 720.7 ns avg latency, 375 ns min latency, 10157833 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 541 ns 5th, 542 ns 10th, 583 ns 15th, 583 ns 20th, 583 ns 25th, 583 ns 30th, 584 ns 35th, 625 ns 40th, 625 ns 45th, 666 ns 50th, 708 ns 55th, 708 ns 60th, 750 ns 65th, 750 ns 70th, 792 ns 75th, 833 ns 80th, 834 ns 85th, 917 ns 90th, 958 ns 92.5th, 1000 ns 95th, 1084 ns 97.5th, 1209 ns 99th, 1291 ns 99.25th, 1334 ns 99.5th, 1541 ns 99.75th, 3542 ns 99.9th, 4125 ns 99.95th, 11000 ns 99.99th
Halodb Reading 0 writers, 1 readers, 0 max writers, 1 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 68.4 MB, 7169839 records, 1433618.0 records/sec, 13.67 MB/sec, 667.7 ns avg latency, 375 ns min latency, 4049292 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 541 ns 5th, 542 ns 10th, 542 ns 15th, 542 ns 20th, 583 ns 25th, 583 ns 30th, 583 ns 35th, 583 ns 40th, 584 ns 45th, 584 ns 50th, 625 ns 55th, 666 ns 60th, 708 ns 65th, 708 ns 70th, 750 ns 75th, 750 ns 80th, 792 ns 85th, 834 ns 90th, 875 ns 92.5th, 917 ns 95th, 1000 ns 97.5th, 1084 ns 99th, 1125 ns 99.25th, 1167 ns 99.5th, 1250 ns 99.75th, 1417 ns 99.9th, 3416 ns 99.95th, 7750 ns 99.99th
Halodb Reading 0 writers, 1 readers, 0 max writers, 1 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 70.7 MB, 7416137 records, 1482930.8 records/sec, 14.14 MB/sec, 644.3 ns avg latency, 375 ns min latency, 6954792 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 541 ns 5th, 541 ns 10th, 542 ns 15th, 542 ns 20th, 542 ns 25th, 583 ns 30th, 583 ns 35th, 583 ns 40th, 583 ns 45th, 584 ns 50th, 584 ns 55th, 625 ns 60th, 625 ns 65th, 667 ns 70th, 708 ns 75th, 709 ns 80th, 750 ns 85th, 792 ns 90th, 833 ns 92.5th, 875 ns 95th, 958 ns 97.5th, 1042 ns 99th, 1083 ns 99.25th, 1125 ns 99.5th, 1250 ns 99.75th, 1834 ns 99.9th, 3708 ns 99.95th, 8334 ns 99.99th
Halodb Reading 0 writers, 1 readers, 0 max writers, 1 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 76.4 MB, 8012312 records, 1602141.6 records/sec, 15.28 MB/sec, 595.9 ns avg latency, 375 ns min latency, 2997625 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 1, SLC-2: 2; Latency Percentiles: 500 ns 5th, 541 ns 10th, 541 ns 15th, 542 ns 20th, 542 ns 25th, 542 ns 30th, 542 ns 35th, 542 ns 40th, 583 ns 45th, 583 ns 50th, 583 ns 55th, 583 ns 60th, 583 ns 65th, 584 ns 70th, 584 ns 75th, 625 ns 80th, 667 ns 85th, 708 ns 90th, 750 ns 92.5th, 750 ns 95th, 792 ns 97.5th, 875 ns 99th, 916 ns 99.25th, 958 ns 99.5th, 1041 ns 99.75th, 1667 ns 99.9th, 3583 ns 99.95th, 5458 ns 99.99th
Halodb Reading 0 writers, 1 readers, 0 max writers, 1 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 5 seconds, 67.9 MB, 7115478 records, 1422810.9 records/sec, 13.57 MB/sec, 674.5 ns avg latency, 375 ns min latency, 7251416 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 541 ns 5th, 541 ns 10th, 542 ns 15th, 542 ns 20th, 542 ns 25th, 583 ns 30th, 583 ns 35th, 583 ns 40th, 584 ns 45th, 625 ns 50th, 625 ns 55th, 667 ns 60th, 708 ns 65th, 709 ns 70th, 750 ns 75th, 791 ns 80th, 792 ns 85th, 875 ns 90th, 917 ns 92.5th, 959 ns 95th, 1042 ns 97.5th, 1167 ns 99th, 1208 ns 99.25th, 1250 ns 99.5th, 1375 ns 99.75th, 2084 ns 99.9th, 3667 ns 99.95th, 5792 ns 99.99th
Halodb Reading 0 writers, 1 readers, 0 max writers, 1 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 4 seconds, 69.3 MB, 7271586 records, 1455939.1 records/sec, 13.88 MB/sec, 659.1 ns avg latency, 375 ns min latency, 1928167 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 1; Latency Percentiles: 541 ns 5th, 541 ns 10th, 542 ns 15th, 542 ns 20th, 542 ns 25th, 583 ns 30th, 583 ns 35th, 583 ns 40th, 584 ns 45th, 584 ns 50th, 625 ns 55th, 666 ns 60th, 667 ns 65th, 708 ns 70th, 750 ns 75th, 750 ns 80th, 792 ns 85th, 833 ns 90th, 875 ns 92.5th, 917 ns 95th, 1000 ns 97.5th, 1084 ns 99th, 1125 ns 99.25th, 1167 ns 99.5th, 1250 ns 99.75th, 1375 ns 99.9th, 1625 ns 99.95th, 5375 ns 99.99th
Total Halodb Reading 0 writers, 1 readers, 0 max writers, 1 max readers, 0.0 write request MB, 0 write request records, 0.0 write request records/sec, 0.00 write request MB/sec, 0.0 read request MB, 0 read request records, 0.0 read request records/sec, 0.00 read request MB/sec, 0.00 write response pending MB, 0 write response pending records, 0.00 read response pending MB, 0 read response pending records, 0.00 write read request pending MB, 0 write read request pending records, 0 write timeout events, 0.00 write timeout events/sec, 0 read timeout events, 0.00 read timeout events/sec, 30 seconds, 415.5 MB, 43571184 records, 1452361.4 records/sec, 13.85 MB/sec, 658.2 ns avg latency, 375 ns min latency, 10157833 ns max latency; 0 invalid latencies; Discarded Latencies: 0 lower, 0 higher; SLC-1: 0, SLC-2: 2; Latency Percentiles: 541 ns 5th, 541 ns 10th, 542 ns 15th, 542 ns 20th, 542 ns 25th, 583 ns 30th, 583 ns 35th, 583 ns 40th, 583 ns 45th, 584 ns 50th, 625 ns 55th, 625 ns 60th, 667 ns 65th, 708 ns 70th, 709 ns 75th, 750 ns 80th, 792 ns 85th, 833 ns 90th, 875 ns 92.5th, 917 ns 95th, 1000 ns 97.5th, 1125 ns 99th, 1166 ns 99.25th, 1208 ns 99.5th, 1333 ns 99.75th, 1750 ns 99.9th, 3625 ns 99.95th, 6750 ns 99.99th
2026-03-14 11:52:26 INFO PerformanceRecorderIdleBusyWait Exited
2026-03-14 11:52:26 INFO CQueuePerl Shutdown
2026-03-14 11:52:26 INFO Reader 0 exited
2026-03-14 11:52:26 INFO Compaction thread stopped.
2026-03-14 11:52:27 INFO SBK Benchmark Shutdown
com.oath.halodb:halodb:0.5.6 - HaloDB core librarytools.jackson - JSON processing for configurationThis driver is licensed under the Apache License 2.0, same as the SBK framework.