Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 606 Bytes

README.adoc

File metadata and controls

22 lines (17 loc) · 606 Bytes

Rust RecordBatch Writer Demo

This repository contains a simple open source bit of example code for writing rows in a Delta table with the Delta Rust bindings.

You can run this code with:

TABLE_URI=demo-tables/wx cargo run

This will write five data points to the delta table stored in the wx directory. You can query this with the deltalake Python module, for example:

from deltalake import DeltaTable
dt = DeltaTable('demo-tables/wx')
df = dt.to_pandas()
df.query('temp > 0')