Skip to content

Example using the RecordBatchWriter from delta-rs

License

Notifications You must be signed in to change notification settings

buoyant-data/demo-recordbatch-writer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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')

About

Example using the RecordBatchWriter from delta-rs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages