Uh oh!
There was an error while loading. Please reload this page.
ARROW-15016: [R] show_exec_plan for an arrow_dplyr_query - #13541
Conversation
show_query() for an arrow_dplyr_queryUh oh!
There was an error while loading. Please reload this page.
jonkeane
left a comment
There was a problem hiding this comment.
I know this is a still a draft, but I was curious + saw a few things that looked comment-able that might help drive this forward
I appreciate how nice and targeted these changes are so far!
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
* add dataset test * add tests for `summarise()`, `group_by()` and `join()`
show_query() for an arrow_dplyr_queryshow_exec_plan for an arrow_dplyr_query
wjones127
left a comment
There was a problem hiding this comment.
I like this function! I made a few optional suggestions.
One potential future enhancement: Neal is adding this function query_can_stream() in #13563, which might be helpful info to know when looking at the query exec plan. Showing it next to the plan will help people understand what kinds of plans can and can't stream.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
dragosmg
commented
Jul 12, 2022
@wjones127 Thanks for the review. I definitely think we could expand this sort of functionality. Maybe we could keep |
wjones127
commented
Jul 12, 2022
Yeah that makes sense to me 👍 |
In order to avoid repetition in the unit tests, I went for a combined approach:
|
paleolimbot
left a comment
There was a problem hiding this comment.
Once the CI turns green, I'm good with this! Technically the ExecPlan_prepare() changes in compute-exec.cpp are no longer needed for this PR but I am also not worried about them (they're needed for the user-defined functions PR as well).
nealrichardson
left a comment
There was a problem hiding this comment.
Unless I'm missing something, this looks like a major rewrite of the PR that causes show_query() to actually run the query, which is not desirable.
| cpp11::list sort_options, cpp11::strings metadata, | ||
| int64_t head = -1) { | ||
| auto prepared_plan = ExecPlan_prepare(plan, final_node, sort_options, metadata, head); | ||
| arrow::StopIfNotOk(prepared_plan.first->StartProducing()); |
There was a problem hiding this comment.
IIUC this starts evaluating the ExecPlan, which we don't want to do.
| arrow::StopIfNotOk(prepared_plan.first->StartProducing()); |
There was a problem hiding this comment.
@nealrichardson I think StartProducing() is central to this (let's call it the BuildAndShow) approach. I couldn't get it to work without it. Extracting the duplicated code in ExecPlan_prepare doesn't work without starting the plan.
My f40e5d2 commit, submitted 3 days ago - was AFAICT exactly what you suggest and it didn't work.
So was Dewey's fbb4c1e (submitted 2 days ago).
I will revert to this state minus the line you suggested we delete and see where that takes us.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| #' filter(mpg > 20) %>% | ||
| #' mutate(x = gear/carb) %>% | ||
| #' show_exec_plan() | ||
| show_exec_plan <- function(x) { |
There was a problem hiding this comment.
My recommendation was the latter, but I don't object to also having a standalone show_exec_plan()
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| node | ||
| }, | ||
| Run = function(node) { | ||
| Run = function(node, explain = FALSE) { |
There was a problem hiding this comment.
IIUC this is a really bad idea: you're evaluating the whole query just to print it.
There was a problem hiding this comment.
Do we know how much data gets pulled from an exec plan that is created and immediately deleted?
There was a problem hiding this comment.
As I understand it, Acero is a push model, not pull. So when you call start producing, it fires up, doesn't matter that you haven't pulled the first batch, it's pushing batches to the reader. I also wouldn't assume that just because the RBR object goes out of scope that that sends any signal to stop producing. Assumptions aside, we should be able to observe this if we test with real data.
But I would think that printing the query shouldn't trigger any evaluation on the data--anything >0 data being read is probably too much.
There was a problem hiding this comment.
Creating an exec plan: None
Calling StartProducing: All of it
You can call StopProducing after you call StartProducing but that isn't great right now (we still fully consume whatever files we happen to be reading at the moment) and will hopefully get better.
nealrichardson
commented
Jul 22, 2022
@dragosmg check out #13397 (comment). I think this explains why "the filter node is gone" on the head queries--it gets evaluated 🙀 inside of Build(). For now we should probably not try to show the query |
This ☝🏻 commit (5751543 ) includes the call to start the plan. Most tests pass (except the large memory test). Commit e29a835 removes the call to
This makes me think, that, if we want to avoid starting the plan, we need to go back to a state where the "preparation" is done with duplicated code in both |
* `ExecPlan_run` and `ExecPlan_BuildAndShow` C++ functions * `$Run()` and `$BuildAndShow()` R6 methods
dragosmg
commented
Jul 22, 2022
What have I done so far today:
|
Not sure adding a comment referencing ARROW-16628 is needed since I am no longer touching the R6 |
nealrichardson
commented
Jul 22, 2022
But you're still calling $Build, and in this case, the inner query will be evaluated inside of that, so we should check before calling $Build. |
dragosmg
commented
Jul 22, 2022
I think this is ready for another review @nealrichardson & @paleolimbot. 😄 |
paleolimbot
left a comment
There was a problem hiding this comment.
I don't like the duplication but as long as its clearly marked and there is a followup JIRA to remove it I'm game. The fact that we have to copy so much code just to print out what's happening suggests to me that we need to improve our abstraction and the solution you've provided here are exactly what we need to do that.
Thank you for sticking with this! I will keep checking https://github.com/dragosmg/arrow/branches for green CI since that's likely to come well before the Arrow CI runs.
dragosmg
commented
Jul 22, 2022
Most checks are green - https://github.com/dragosmg/arrow/runs/7469491011?check_suite_focus=true - with the exception of the first one which has been failing for a few days now (OOM in the large memory tests). Follow-up Jira: ARROW-17185. |
ursabot
commented
Jul 24, 2022
Benchmark runs are scheduled for baseline = 9ad2255 and contender = 9442e1c. 9442e1c is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…Hub issue numbers (#34260) Rewrite the Jira issue numbers to the GitHub issue numbers, so that the GitHub issue numbers are automatically linked to the issues by pkgdown's auto-linking feature. Issue numbers have been rewritten based on the following correspondence. Also, the pkgdown settings have been changed and updated to link to GitHub. I generated the Changelog page using the `pkgdown::build_news()` function and verified that the links work correctly. --- ARROW-6338#5198ARROW-6364#5201ARROW-6323#5169ARROW-6278#5141ARROW-6360#5329ARROW-6533#5450ARROW-6348#5223ARROW-6337#5399ARROW-10850#9128ARROW-10624#9092ARROW-10386#8549ARROW-6994#23308ARROW-12774#10320ARROW-12670#10287ARROW-16828#13484ARROW-14989#13482ARROW-16977#13514ARROW-13404#10999ARROW-16887#13601ARROW-15906#13206ARROW-15280#13171ARROW-16144#13183ARROW-16511#13105ARROW-16085#13088ARROW-16715#13555ARROW-16268#13550ARROW-16700#13518ARROW-16807#13583ARROW-16871#13517ARROW-16415#13190ARROW-14821#12154ARROW-16439#13174ARROW-16394#13118ARROW-16516#13163ARROW-16395#13627ARROW-14848#12589ARROW-16407#13196ARROW-16653#13506ARROW-14575#13160ARROW-15271#13170ARROW-16703#13650ARROW-16444#13397ARROW-15016#13541ARROW-16776#13563ARROW-15622#13090ARROW-18131#14484ARROW-18305#14581ARROW-18285#14615 * Closes: #33631 Authored-by: SHIMA Tatsuya <ts1s1andn@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
This PR adds
show_exec_plan()will allow users to inspect the ExecPlan, in a similar way to dplyr'sshow_query().Some design considerations are discussed in the design doc.
Summary of the approach:
show_exec_plan()name as I believe it aligns well with the purpose of this PR: to expose the ExecPlan (in its raw state).show_query()/explain()methods).