ProductDocumentationExamplesBlogRoadmapGitHubGet Started
Available

Table

krishiv table read — scan Parquet, Delta, or Hudi files from the command line.

krishiv table read is the fastest way to peek at a lakehouse file without starting a session.

Usage

krishiv table read --path /var/data/orders.parquet --format parquet --limit 20

krishiv table read --path s3://bucket/path/to/table/ --format delta --version 4

krishiv table read --path /var/hudi/orders/ --format hudi --hudi-query incremental --hudi-begin 20240101000000

Flags

FlagEffect
--path <PATH> (required)Path. Local filesystem or object-store URI (S3/ADLS/GCS).
--format <FORMAT> (required)parquet, delta, or hudi.
--version <N>(Delta) Specific version to read.
--hudi-query <snapshot|incremental>(Hudi) Default: snapshot.
--hudi-begin <INSTANT>(Hudi incremental) Begin instant.
--limit <N>Max rows to print. Default: unbounded (use Ctrl-C to stop).
Preview: Delta and Hudi read local filesystem paths only. S3 and remote catalog reads are in flight.

See also