thatstatsguy commented on code in PR #13267:
URL: https://github.com/apache/arrow/pull/13267#discussion_r942879894


##########
r/R/flight.R:
##########
@@ -72,6 +74,8 @@ flight_put <- function(client, data, path, overwrite = TRUE) {
   writer <- client$do_put(descriptor_for_path(path), py_data$schema)[[1]]
   if (inherits(data, "RecordBatch")) {
     writer$write_batch(py_data)
+  } else if (!is.null(max_chunksize)) {

Review Comment:
   The reason I didn't support this is due to the face that the underlying 
python method doesn't support chunking. More info on this specific method 
[here](https://arrow.apache.org/docs/python/generated/pyarrow.flight.FlightStreamWriter.html#pyarrow.flight.FlightStreamWriter.write_batch)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to