Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.
Original topic: TiDB会支持类似Archive引擎的压缩机制吗?
Will TiDB support compression similar to the Archive engine?
From what I understand, TiDB’s architecture is abstracted into a B+Tree, abstracted for the InnoDB engine. Will there be an addition of engines like Archive in the future? Because it feels like TiDB’s storage cost is a bit high.
Subsequent support for compression is expected, allowing for the configuration of compression mechanisms to enable compressed storage, though it will consume CPU resources. A neighboring competitor’s compression algorithm reduced storage costs by 40%. Since both use LSM Tree engines, it should definitely be possible.
The high storage cost is mainly due to multiple replicas. RocksDB has compression enabled by default, and if you feel the compression ratio is not sufficient, you can adjust the compression-per-level configuration.
Which competitor are you referring to?
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.