v.24.5New Feature
Introduce Bulk Loading to EmbeddedRocksDB for Enhanced Import Speed
Introduce bulk loading toEmbeddedRocksDBby creating and ingesting SST file instead of relying on rocksdb build-in memtable. This help to increase importing speed, especially for long-running insert query to StorageEmbeddedRocksDB tables. Also, introduceEmbeddedRocksDBtable settings. #59163 #63324 (Duc Canh Le).
Why it matters
This feature addresses the performance bottleneck during long-running insert queries onStorageEmbeddedRocksDB tables by enabling bulk loading using SST files. This method increases importing speed and efficiency compared to the traditional memtable-based insertion approach.How to use it
Users can enable bulk loading onEmbeddedRocksDB tables by configuring the new EmbeddedRocksDB table settings introduced in this update. This involves adjusting table settings to allow SST file creation and ingestion for faster data import workflows.