You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug, including details regarding any error messages, version, and platform.
Currently, if ARROW_ENABLE_THREADING is not set, asof join and sortedmergejoin are not implemented. This is because the current implementation uses std::thread internally, and I tried not to mess with any class internal code while creating the single threaded mode.
This could do with fixing, as I'm mid porting python to add single threaded support, and otherwise a load of tests will break.
Component(s)
C++
The text was updated successfully, but these errors were encountered:
amoeba
changed the title
ASOF join and sortedmerge join don't work in single threaded mode
[C++] ASOF join and sortedmerge join don't work in single threaded mode
Apr 17, 2024
When I initially added single threading support, I didn't do asof joins and sorted merge joins, because the code for these operations uses threads internally. This is a small check-in to add support for them. Tests run okay in single-threaded, I'm pushing it here to run full tests and check I didn't break the threaded case.
I'm pushing this now because making this work saves adding a load of threading checks in python (this currently breaks single-threaded python i.e. emscripten).
* GitHub Issue: #41190
Lead-authored-by: Joe Marshall <[email protected]>
Co-authored-by: Rossi Sun <[email protected]>
Signed-off-by: Weston Pace <[email protected]>
Describe the bug, including details regarding any error messages, version, and platform.
Currently, if ARROW_ENABLE_THREADING is not set, asof join and sortedmergejoin are not implemented. This is because the current implementation uses std::thread internally, and I tried not to mess with any class internal code while creating the single threaded mode.
This could do with fixing, as I'm mid porting python to add single threaded support, and otherwise a load of tests will break.
Component(s)
C++
The text was updated successfully, but these errors were encountered: