-
Notifications
You must be signed in to change notification settings - Fork 3.9k
GH-38573: [Java][FlightRPC] Try all locations in JDBC driver #40104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| .maxTraceEvents(MAX_CHANNEL_TRACE_EVENTS) | ||
| .maxInboundMessageSize(maxInboundMessageSize); | ||
| .maxInboundMessageSize(maxInboundMessageSize) | ||
| .maxInboundMetadataSize(maxInboundMessageSize); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've noticed this is required for some implementations that try to return a relatively large error message. Without this, clients like DBeaver throw odd errors instead of giving the actual error message.
...jdbc-core/src/main/java/org/apache/arrow/driver/jdbc/client/ArrowFlightSqlClientHandler.java
Show resolved
Hide resolved
|
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit aa6b398. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 6 possible false positives for unstable benchmarks that are known to sometimes produce them. |
|
@github-actions crossbow submit java-jars |
|
Revision: ba56395 Submitted crossbow builds: ursacomputing/crossbow @ actions-ecf31db188
|
…pache#40104) ### Rationale for this change This brings the JDBC driver up to par with other Flight SQL clients. ### What changes are included in this PR? Try multiple locations for the Flight SQL driver. ### Are these changes tested? Yes ### Are there any user-facing changes? No * Closes: apache#38573 Authored-by: David Li <li.davidm96@gmail.com> Signed-off-by: David Li <li.davidm96@gmail.com>
Rationale for this change
This brings the JDBC driver up to par with other Flight SQL clients.
What changes are included in this PR?
Try multiple locations for the Flight SQL driver.
Are these changes tested?
Yes
Are there any user-facing changes?
No