Csehpi commented on issue #37172:
URL: https://github.com/apache/arrow/issues/37172#issuecomment-1705311536
I think this option is available only in writing mode on the Java side with
which I have no issue.
My issue happens when I would like to read data from Python side (server) to
Java side (client).
My code snippet is the following:
```JAVA
Ticket ticket = new
Ticket(FlightDescriptor.path(flightDescriptorPath).getPath().get(0).getBytes(StandardCharsets.UTF_8));
try (FlightStream flightStream = flightClient.getStream(ticket)) {
try (VectorSchemaRoot vectorSchemaRootReceived =
flightStream.getRoot()) {
while (flightStream.next()) {
```
--
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]