Send data to a Flight server
Arguments
- client
pyarrow.flight.FlightClient, as returned byflight_connect()- data
data.frame,RecordBatch, orTable to upload- path
string identifier to store the data under
- overwrite
logical: if
pathexists onclientalready, should wereplace it with the contents ofdata? Default isTRUE; ifFALSEandpathexists, the function will error.- max_chunksize
integer: Maximum number of rows for RecordBatch chunkswhen a
data.frameis sent.Individual chunks may be smaller depending on the chunk layout of individual columns.