Skip to content
Discussion options

You must be logged in to vote

Here are some ideas

Insert into the MemTable

If you have a MemTable already, you can use the MemTable::insert_into API to add new batches

This is the API that gets used to implement SQL INSERT INTO <table> SELECT .... type queries

Directory of Files

If your data is in files in a directory, you can write new files into that same directory and they will be picked up on the next read (aka "hive" style) using ListingTable (e.g. read_csv with a path to a directory)

Make your own TableProvider

Depending on where your data is coming from, rather than creating a new MemTable for it, you could potentially implement your own TableProvider that would return the data on demand -- depending on what yo…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Jefffrey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants