-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[fix](arrow-flight-sql) Fix get Schema failed when enable_parallel_result_sink
is false
#37779
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 40115 ms
|
TPC-DS: Total hot run time: 172184 ms
|
ClickBench: Total hot run time: 30.45 s
|
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 39646 ms
|
TPC-DS: Total hot run time: 172209 ms
|
ClickBench: Total hot run time: 31.23 s
|
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 40294 ms
|
TPC-DS: Total hot run time: 172138 ms
|
ClickBench: Total hot run time: 30.5 s
|
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 39674 ms
|
TPC-DS: Total hot run time: 173942 ms
|
ClickBench: Total hot run time: 31.08 s
|
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.
LGTM
…esult_sink` is false (apache#37779) if `enable_parallel_result_sink` is true, use queryID to get Schema and fetch Result. if `enable_parallel_result_sink` is false, use fragment 0 instance ID to get Schema and fetch Result. ``` Caused by: cfjd.org.apache.arrow.flight.FlightRuntimeException: not found arrow flight schema, maybe query has been canceled, queryid: cef21a3bd35e40c5-bd25643a1e02dbb7 at cfjd.org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:131) at cfjd.org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:164) at cfjd.org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:185) at cfjd.org.apache.arrow.flight.FlightStream$Observer.onError(FlightStream.java:456) ```
…esult_sink` is false (#37779) if `enable_parallel_result_sink` is true, use queryID to get Schema and fetch Result. if `enable_parallel_result_sink` is false, use fragment 0 instance ID to get Schema and fetch Result. ``` Caused by: cfjd.org.apache.arrow.flight.FlightRuntimeException: not found arrow flight schema, maybe query has been canceled, queryid: cef21a3bd35e40c5-bd25643a1e02dbb7 at cfjd.org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:131) at cfjd.org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:164) at cfjd.org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:185) at cfjd.org.apache.arrow.flight.FlightStream$Observer.onError(FlightStream.java:456) ```
if
enable_parallel_result_sink
is true, use queryID to get Schema and fetch Result.if
enable_parallel_result_sink
is false, use fragment 0 instance ID to get Schema and fetch Result.