-
Notifications
You must be signed in to change notification settings - Fork 24.8k
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
ESQL: Plumb a way to run phased plans #110445
Conversation
INLINESTATS is going to run two ESQL commands - one to get the STATS and one to join the stats results to the output. This plumbs a way for `EsqlSession#execute` to run multiple dips into the compute engine using a `BiConsumer<PhysicalPlan, ActionListener<Result>> runPhase`. For now, we just plug that right into the output to keep things working as they are now. But soon, so soon, we'll plug in a second phase.
Pinging @elastic/es-analytical-engine (Team:Analytics) |
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. Thanks Nik!
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
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.
Neat!
import org.elasticsearch.xpack.esql.core.expression.Attribute; | ||
|
||
import java.util.List; | ||
|
||
public record Result(List<Attribute> columns, List<List<Object>> values) {} | ||
public record Result(List<Attribute> layout, List<Page> pages, List<DriverProfile> profiles) {} |
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.
super nit: there's also a datatype Layout
which is not quite just a list of attributes; we sometimes also use fields
(schema
would also be appropriate but isn't really used in our code base)
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.
Noice! LGTM
Thanks friends! |
INLINESTATS is going to run two ESQL commands - one to get the STATS and one to join the stats results to the output. This plumbs a way for
EsqlSession#execute
to run multiple dips into the compute engine using aBiConsumer<PhysicalPlan, ActionListener<Result>> runPhase
. For now, we just plug that right into the output to keep things working as they are now. But soon, so soon, we'll plug in a second phase.