flight_put {arrow} | R Documentation |
Send data to a Flight server
Description
Send data to a Flight server
Usage
flight_put(client, data, path, overwrite = TRUE, max_chunksize = NULL)
Arguments
client |
pyarrow.flight.FlightClient , as returned by flight_connect()
|
data |
data.frame , RecordBatch, or Table to upload
|
path |
string identifier to store the data under
|
overwrite |
logical: if path exists on client already, should we
replace it with the contents of data ? Default is TRUE ; if FALSE and
path 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.
|
Value
client
, invisibly.
[Package
arrow version 13.0.0
Index]