Send data to a Flight server
Arguments
- client
pyarrow.flight.FlightClient
, as returned byflight_connect()
- data
data.frame
, RecordBatch, or Table to upload- path
string identifier to store the data under
- overwrite
logical: if
path
exists onclient
already, should we replace it with the contents ofdata
? Default isTRUE
; ifFALSE
andpath
exists, the function will error.- max_chunksize
integer: Maximum size for RecordBatch chunks when a
data.frame
is sent. Individual chunks may be smaller depending on the chunk layout of individual columns.