-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-44526: [C++][Acero] Fix crash when thread in asof_join is not running #44584
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
|
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose Opening GitHub issues ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename the pull request title in the following format? or In the case of PARQUET issues on JIRA the title also supports: See also: |
|
|
|
Hi @mroz45 , thanks for fixing this! I think we still need a reproducible C++ UT. If you have any difficulties on that, please let me know. |
|
@zanmato1984 |
Thank you for the update. The test should suffice at my first glance. I'll take a deeper look soon. |
zanmato1984
left a comment
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.
Let's keep the blank lines around individual tests.
zanmato1984
left a comment
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.
Some nits. Otherwise LGTM.
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.
| /*schema*/ nullptr}; | |
| /*schema=*/nullptr}; |
zanmato1984
left a comment
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.
+1
I'll keep this PR open for another few days to see if @westonpace @pitrou have any comments. After that I'll merge this.
Co-authored-by: Sutou Kouhei <kou@cozmixng.org>
pitrou
left a comment
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.
Just a naming fix, otherwise LGTM
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
|
Merged. Thank you @mroz45 for fixing this! |
|
After merging your PR, Conbench analyzed the 3 benchmarking runs that have been run so far on merge-commit cf10b40. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them. |
|
@zanmato1984 Could you use our merge script https://github.com/apache/arrow/tree/main/dev#how-to-merge-a-pull-request next time? It removes comments ( |
Thank you for reminding, I'll read the instruction and use it next time. And sorry for the trouble. |
What changes are included in this PR?
I add checking joinable before join process_thread. It will prevent exeptions in case when plan is invalid and asof_join never_starts.