-
Notifications
You must be signed in to change notification settings - Fork 5.9k
planner: add MPPSink interface for later MPP CTE support #61252
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
Merged
Merged
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ import ( | |
"github.com/pingcap/tidb/pkg/parser/mysql" | ||
"github.com/pingcap/tidb/pkg/planner/core/base" | ||
"github.com/pingcap/tidb/pkg/sessionctx" | ||
"github.com/pingcap/tidb/pkg/sessionctx/vardef" | ||
"github.com/pingcap/tidb/pkg/table" | ||
"github.com/pingcap/tidb/pkg/types" | ||
"github.com/pingcap/tidb/pkg/util/logutil" | ||
|
@@ -52,7 +53,7 @@ type Fragment struct { | |
CTEReaders []*PhysicalCTE // The receivers for CTE storage/producer. | ||
|
||
// following fields are filled after scheduling. | ||
ExchangeSender *PhysicalExchangeSender // data exporter | ||
Sink MPPSink // data exporter | ||
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. seems a internal interface name, if it won't be in the explain, i think its fine |
||
|
||
IsRoot bool | ||
|
||
|
@@ -79,8 +80,8 @@ func (f *Fragment) MemoryUsage() (sum int64) { | |
if f.TableScan != nil { | ||
sum += f.TableScan.MemoryUsage() | ||
} | ||
if f.ExchangeSender != nil { | ||
sum += f.ExchangeSender.MemoryUsage() | ||
if f.Sink != nil { | ||
sum += f.Sink.MemoryUsage() | ||
} | ||
|
||
for _, receiver := range f.ExchangeReceivers { | ||
|
@@ -89,6 +90,17 @@ func (f *Fragment) MemoryUsage() (sum int64) { | |
return | ||
} | ||
|
||
// MPPSink is the operator to send data to its parent fragment. | ||
// e.g. ExchangeSender, etc. | ||
type MPPSink interface { | ||
base.PhysicalPlan | ||
GetCompressionMode() vardef.ExchangeCompressionMode | ||
GetSelfTasks() []*kv.MPPTask | ||
SetSelfTasks(tasks []*kv.MPPTask) | ||
SetTargetTasks(tasks []*kv.MPPTask) | ||
AppendTargetTasks(tasks []*kv.MPPTask) | ||
} | ||
|
||
type tasksAndFrags struct { | ||
tasks []*kv.MPPTask | ||
frags []*Fragment | ||
|
@@ -164,7 +176,7 @@ func (e *mppTaskGenerator) generateMPPTasks(s *PhysicalExchangeSender) ([]*Fragm | |
return nil, errors.Trace(err) | ||
} | ||
for _, frag := range frags { | ||
frag.ExchangeSender.TargetTasks = []*kv.MPPTask{tidbTask} | ||
frag.Sink.SetTargetTasks([]*kv.MPPTask{tidbTask}) | ||
frag.IsRoot = true | ||
} | ||
return e.frags, nil | ||
|
@@ -340,7 +352,7 @@ func (e *mppTaskGenerator) buildFragments(s *PhysicalExchangeSender) ([]*Fragmen | |
} | ||
fragments := make([]*Fragment, 0, len(forest)) | ||
for _, s := range forest { | ||
f := &Fragment{ExchangeSender: s} | ||
f := &Fragment{Sink: s} | ||
err = f.init(s) | ||
if err != nil { | ||
return nil, errors.Trace(err) | ||
|
@@ -417,14 +429,14 @@ func (e *mppTaskGenerator) generateMPPTasksForFragment(f *Fragment) (tasks []*kv | |
} | ||
for _, r := range f.ExchangeReceivers { | ||
for _, frag := range r.frags { | ||
frag.ExchangeSender.TargetTasks = append(frag.ExchangeSender.TargetTasks, tasks...) | ||
frag.Sink.AppendTargetTasks(tasks) | ||
} | ||
} | ||
for _, cteR := range f.CTEReaders { | ||
e.addReaderTasksForCTEStorage(cteR.CTE.IDForStorage, tasks...) | ||
} | ||
f.ExchangeSender.Tasks = tasks | ||
f.flipCTEReader(f.ExchangeSender) | ||
f.Sink.SetSelfTasks(tasks) | ||
f.flipCTEReader(f.Sink) | ||
return tasks, nil | ||
} | ||
|
||
|
@@ -487,7 +499,7 @@ func (e *mppTaskGenerator) generateTasksForCTEReader(cteReader *PhysicalCTE) (er | |
func (e *mppTaskGenerator) addReaderTasksForCTEStorage(storageID int, tasks ...*kv.MPPTask) { | ||
group := e.CTEGroups[storageID] | ||
for _, frag := range group.StorageFragments { | ||
frag.ExchangeSender.TargetCTEReaderTasks = append(frag.ExchangeSender.TargetCTEReaderTasks, tasks) | ||
frag.Sink.AppendTargetTasks(tasks) | ||
} | ||
} | ||
|
||
|
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
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.
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.
This name is to be compatible with tiflash's concept
Sink
andSource
.Other names are welcome.