mix bedrock.analyze_index (bedrock v0.6.0)

View Source

Analyzes an Olivine index file and provides detailed statistics.

Usage

mix bedrock.analyze_index --path /path/to/storage [options]

Options

  • --path PATH - Path to the storage directory (required)
  • --verbose - Show detailed page-by-page analysis
  • --histogram - Show visual histogram of key distribution
  • --limit N - Limit verbose output to first N pages

Examples

# Basic analysis
mix bedrock.analyze_index --path /tmp/bedrock_storage

# Detailed analysis with histogram
mix bedrock.analyze_index --path /tmp/bedrock_storage --histogram

# Verbose output showing first 100 pages
mix bedrock.analyze_index --path /tmp/bedrock_storage --verbose --limit 100