Send data to a Flight server
flight_put(client, data, path, overwrite = TRUE)
pyarrow.flight.FlightClient
, as returned by flight_connect()
data.frame
, RecordBatch, or Table to upload
string identifier to store the data under
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.
client
, invisibly.