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
For the query tpcds_physical_q64 It seems that overflow occurs in create_intial_plan stage of planner (It is the place, where LogicalPlan is converted to the PhysicalPlan. Not during any physical rule or logical plan creation). Examining code structure, it seems that recursive futures are constructed in the create_initial_plan method of the LogicalPlan. I am not familiar with its implications, However the problem might be related to this behavior. Writing this in case it is helpful for others.
Is your feature request related to a problem or challenge?
In Datafusion CI builds we spontaneously hit the Rust stack overflow errors on TPC-DS queries. The most notorious is
As a workaround the
RUST_MIN_STACK = 3000000
applied for CI builds, but it might be a bigger problem behind thatDescribe the solution you'd like
Investigate the reason for hitting stack overflow errors
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: