Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 991 Bytes

File metadata and controls

35 lines (24 loc) · 991 Bytes

Admintool

A command-line administration and debugging tool for TidesDB databases. The admintool provides interactive and scripted access to database operations, SSTable/WAL inspection, and integrity verification.

Features

  • Open, close, inspect, and backup TidesDB databases
  • Create, drop, rename, clone, list, and get statistics for column families
  • Put, get, delete, scan, range queries, and prefix searches
  • List, inspect, dump entries, show statistics, and list keys from SSTable files
  • List, inspect, dump entries, and verify integrity of WAL files
  • Trigger compaction, flush memtables, verify integrity

Building

The admintool is built as part of the TidesDB project:

cd tidesdb
mkdir build && cd build
cmake ..
make admintool

The binary will be located at build/admintool/admintool.

Usage

Interactive Mode

./admintool

To learn more go to the admintool reference on the TidesDB website.