andygrove opened a new issue, #1940: URL: https://github.com/apache/datafusion-ballista/issues/1940
#1924 added the ability to submit an already-built physical plan to the scheduler. To carry both a logical and a physical plan, it changed the parameter of two **public** methods from `&LogicalPlan` to a new `&SubmitPlan` enum: - `SchedulerServer::submit_job` - `TaskManager::submit_job` That is a breaking API change for anyone driving the scheduler programmatically — existing `submit_job(&logical_plan)` calls no longer compile. Since 54.0.0 has not been released yet, we can keep the new capability without the break: restore the original `submit_job(&LogicalPlan)` signatures and expose the new capability through a new `submit_physical_plan(Arc<dyn ExecutionPlan>)` method, with a shared internal `submit_plan(&SubmitPlan)` holding the logic. `SubmitPlan` remains internal plumbing; the wire format is unchanged. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
