Skip to content

ToplingFastTable

ZengJingtao edited this page Jan 30, 2023 · 2 revisions

Introduction

ToplingFastTable uses CSPPTrie to store indexes and data without performing any compression. The purpose is to provide the highest read and write performance. It is mainly configured on the upper layer of LSM through DispatchTable, and the corresponding Flush/Compact is executed on the DB node.

Configuration

ToplingFastTable is configured through SidePlugin. In the (yaml) configuration file, an example is as follows:

  fast: ToplingFastTable # Simplified configuration syntax for simple configuration
  fast2: # Full version configuration syntax
    class: ToplingFastTable
    params: # Even with the full configuration syntax, params can be omitted

For complete configuration, please refer to lcompact_enterprise.yaml