-
Notifications
You must be signed in to change notification settings - Fork 22
feat: Improve Column Remapping Performance in COPY FROM
#193
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
Open
shirly121
wants to merge
6
commits into
alibaba:main
Choose a base branch
from
shirly121:fix_copy_perf
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
cca77f9
feat: Add ProjectIntoDataSourceOptimizer and rename skipColumns to pr…
shirly121 afb4dfa
minor fix
shirly121 36c3384
minor fix
shirly121 9e0abe2
fix batch_read flag settings
shirly121 c470a94
Revert "fix batch_read flag settings"
shirly121 ea9c73c
fix batch_read flag settings
shirly121 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
include/neug/compiler/optimizer/project_into_data_source_optimizer.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| /** | ||
| * Copyright 2020 Alibaba Group Holding Limited. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include "logical_operator_visitor.h" | ||
| #include "neug/compiler/planner/operator/logical_operator.h" | ||
| #include "neug/compiler/planner/operator/logical_plan.h" | ||
|
|
||
| namespace neug { | ||
| namespace optimizer { | ||
|
|
||
| // ProjectIntoDataSourceOptimizer pushes a Projection directly into | ||
| // LogicalTableFunctionCall when the pattern is: | ||
| // LogicalTableFunctionCall -> LogicalProjection | ||
| // After rewrite, the Projection is removed and projected expressions are | ||
| // carried by LogicalTableFunctionCall::bindData->projectColumns. | ||
| class ProjectIntoDataSourceOptimizer : public LogicalOperatorVisitor { | ||
| public: | ||
| void rewrite(planner::LogicalPlan* plan); | ||
|
|
||
| private: | ||
| std::shared_ptr<planner::LogicalOperator> visitOperator( | ||
| const std::shared_ptr<planner::LogicalOperator>& op); | ||
| std::shared_ptr<planner::LogicalOperator> visitProjectionReplace( | ||
| std::shared_ptr<planner::LogicalOperator> op) override; | ||
|
|
||
| private: | ||
| planner::LogicalPlan* plan; | ||
| }; | ||
|
|
||
| } // namespace optimizer | ||
| } // namespace neug |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ | |
| #include "neug/compiler/binder/expression/expression_util.h" | ||
| #include "neug/compiler/binder/query/reading_clause/bound_load_from.h" | ||
| #include "neug/compiler/common/types/value/value.h" | ||
| #include "neug/compiler/function/table/scan_file_function.h" | ||
| #include "neug/compiler/parser/query/reading_clause/load_from.h" | ||
| #include "neug/compiler/parser/scan_source.h" | ||
| #include "neug/utils/exception/exception.h" | ||
|
|
@@ -56,11 +57,6 @@ std::unique_ptr<BoundReadingClause> Binder::bindLoadFrom( | |
| auto boundScanSource = bindFileScanSource( | ||
| *source, loadFrom.getParsingOptions(), columnNames, columnTypes); | ||
| auto& scanInfo = boundScanSource->constCast<BoundTableScanSource>().info; | ||
| auto& bindData = scanInfo.bindData->cast<function::ScanFileBindData>(); | ||
| auto& fileInfo = bindData.fileScanInfo; | ||
| // We support LOAD FROM by ArrowArrayContextColumn with BATCH_READ set to | ||
| // false. | ||
| fileInfo.options.insert({"BATCH_READ", common::Value::createValue(false)}); | ||
| boundLoadFrom = std::make_unique<BoundLoadFrom>(scanInfo.copy()); | ||
| } break; | ||
|
Comment on lines
57
to
61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 3. Load from batch_read regression bindLoadFrom no longer forces batch_read/BATCH_READ=false for file sources, and the new safety is implemented only in an optimizer pass gated by enablePlanOptimizer; with optimizer disabled, batch_read defaults to true and LOAD FROM can produce ArrowStreamContextColumn in unsupported pipelines. Agent Prompt
|
||
| default: | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.