-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add HashAggregation Replayer (#11176)
Summary: Records input in `HashAggregation` and AggregationReplayer to support the replaying. part of #9668 Pull Request resolved: #11176 Reviewed By: tanjialiang Differential Revision: D64017836 Pulled By: xiaoxmeng fbshipit-source-id: 4392e511fb889dfc232eaf64c7228655c50d623f
- Loading branch information
1 parent
b63622d
commit 74c2133
Showing
12 changed files
with
372 additions
and
78 deletions.
There are no files selected for viewing
This file contains 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 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 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,44 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include "velox/tool/trace/AggregationReplayer.h" | ||
#include "velox/exec/QueryDataReader.h" | ||
#include "velox/exec/tests/utils/PlanBuilder.h" | ||
|
||
using namespace facebook::velox; | ||
using namespace facebook::velox::exec; | ||
using namespace facebook::velox::exec::test; | ||
|
||
namespace facebook::velox::tool::trace { | ||
core::PlanNodePtr AggregationReplayer::createPlanNode( | ||
const core::PlanNode* node, | ||
const core::PlanNodeId& nodeId, | ||
const core::PlanNodePtr& source) const { | ||
const auto* aggregationNode = | ||
dynamic_cast<const core::AggregationNode*>(node); | ||
return std::make_shared<core::AggregationNode>( | ||
nodeId, | ||
aggregationNode->step(), | ||
aggregationNode->groupingKeys(), | ||
aggregationNode->preGroupedKeys(), | ||
aggregationNode->aggregateNames(), | ||
aggregationNode->aggregates(), | ||
aggregationNode->globalGroupingSets(), | ||
aggregationNode->groupId(), | ||
aggregationNode->ignoreNullKeys(), | ||
source); | ||
} | ||
} // namespace facebook::velox::tool::trace |
This file contains 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,45 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* 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 "velox/core/PlanNode.h" | ||
#include "velox/tool/trace/OperatorReplayerBase.h" | ||
|
||
namespace facebook::velox::tool::trace { | ||
/// The replayer to replay the traced 'HashAggregation' operator. | ||
class AggregationReplayer : public OperatorReplayerBase { | ||
public: | ||
AggregationReplayer( | ||
const std::string& rootDir, | ||
const std::string& taskId, | ||
const std::string& nodeId, | ||
const int32_t pipelineId, | ||
const std::string& operatorType) | ||
: OperatorReplayerBase( | ||
rootDir, | ||
taskId, | ||
nodeId, | ||
pipelineId, | ||
operatorType) {} | ||
|
||
private: | ||
core::PlanNodePtr createPlanNode( | ||
const core::PlanNode* node, | ||
const core::PlanNodeId& nodeId, | ||
const core::PlanNodePtr& source) const override; | ||
}; | ||
} // namespace facebook::velox::tool::trace |
This file contains 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 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 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 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 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 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.