blob: 5eb4592abed7b55b228712c9f6b86cebd89ebc6a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.iotdb.db.queryengine.plan.planner.plan.node.write;
import org.apache.iotdb.common.rpc.thrift.TRegionReplicaSet;
import org.apache.iotdb.common.rpc.thrift.TSStatus;
import org.apache.iotdb.common.rpc.thrift.TTimePartitionSlot;
import org.apache.iotdb.commons.consensus.index.ProgressIndex;
import org.apache.iotdb.commons.exception.IllegalPathException;
import org.apache.iotdb.commons.path.PartialPath;
import org.apache.iotdb.commons.utils.StatusUtils;
import org.apache.iotdb.commons.utils.TimePartitionUtils;
import org.apache.iotdb.db.queryengine.plan.analyze.Analysis;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanNode;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanNodeId;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanNodeType;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanVisitor;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.WritePlanNode;
import org.apache.iotdb.tsfile.exception.NotImplementedException;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import org.apache.iotdb.tsfile.utils.ReadWriteIOUtils;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
public class InsertRowsOfOneDeviceNode extends InsertNode {
/**
* Suppose there is an InsertRowsOfOneDeviceNode, which contains 5 InsertRowNodes,
* insertRowNodeList={InsertRowNode_0, InsertRowNode_1, InsertRowNode_2, InsertRowNode_3,
* InsertRowNode_4}, then the insertRowNodeIndexList={0, 1, 2, 3, 4} respectively. But when the
* InsertRowsOfOneDeviceNode is split into two InsertRowsOfOneDeviceNodes according to different
* database in cluster version, suppose that the InsertRowsOfOneDeviceNode_1's insertRowNodeList =
* {InsertRowNode_0, InsertRowNode_3, InsertRowNode_4}, then InsertRowsOfOneDeviceNode_1's
* insertRowNodeIndexList = {0, 3, 4}; InsertRowsOfOneDeviceNode_2's insertRowNodeList =
* {InsertRowNode_1, * InsertRowNode_2} then InsertRowsOfOneDeviceNode_2's insertRowNodeIndexList=
* {1, 2} respectively;
*/
private List<Integer> insertRowNodeIndexList;
/** the InsertRowsNode list */
private List<InsertRowNode> insertRowNodeList;
/** record the result of insert rows */
private Map<Integer, TSStatus> results = new HashMap<>();
public InsertRowsOfOneDeviceNode(PlanNodeId id) {
super(id);
insertRowNodeIndexList = new ArrayList<>();
insertRowNodeList = new ArrayList<>();
}
public InsertRowsOfOneDeviceNode(
PlanNodeId id, List<Integer> insertRowNodeIndexList, List<InsertRowNode> insertRowNodeList) {
super(id);
this.insertRowNodeIndexList = insertRowNodeIndexList;
this.insertRowNodeList = insertRowNodeList;
}
public Map<Integer, TSStatus> getResults() {
return results;
}
public void clearResults() {
results.clear();
}
@Override
public void setSearchIndex(long index) {
searchIndex = index;
insertRowNodeList.forEach(plan -> plan.setSearchIndex(index));
}
public TSStatus[] getFailingStatus() {
return StatusUtils.getFailingStatus(results, insertRowNodeList.size());
}
public List<Integer> getInsertRowNodeIndexList() {
return insertRowNodeIndexList;
}
public void setInsertRowNodeIndexList(List<Integer> insertRowNodeIndexList) {
this.insertRowNodeIndexList = insertRowNodeIndexList;
}
public List<InsertRowNode> getInsertRowNodeList() {
return insertRowNodeList;
}
public void setInsertRowNodeList(List<InsertRowNode> insertRowNodeList) {
this.insertRowNodeList = insertRowNodeList;
if (insertRowNodeList == null || insertRowNodeList.isEmpty()) {
return;
}
devicePath = insertRowNodeList.get(0).getDevicePath();
isAligned = insertRowNodeList.get(0).isAligned;
storeMeasurementsAndDataType();
}
@Override
public List<PlanNode> getChildren() {
return null;
}
@Override
public void addChild(PlanNode child) {}
@Override
public PlanNodeType getType() {
return PlanNodeType.INSERT_ROWS_OF_ONE_DEVICE;
}
@Override
public PlanNode clone() {
throw new NotImplementedException("clone of Insert is not implemented");
}
@Override
public int allowedChildCount() {
return NO_CHILD_ALLOWED;
}
@Override
public List<String> getOutputColumnNames() {
return null;
}
@Override
public List<WritePlanNode> splitByPartition(Analysis analysis) {
List<WritePlanNode> result = new ArrayList<>();
Map<TRegionReplicaSet, Map<TTimePartitionSlot, List<InsertRowNode>>> splitMap = new HashMap<>();
Map<TRegionReplicaSet, Map<TTimePartitionSlot, List<Integer>>> splitMapForIndex =
new HashMap<>();
for (int i = 0; i < insertRowNodeList.size(); i++) {
InsertRowNode insertRowNode = insertRowNodeList.get(i);
TTimePartitionSlot timePartitionSlot =
TimePartitionUtils.getTimePartitionSlot(insertRowNode.getTime());
TRegionReplicaSet dataRegionReplicaSet =
analysis
.getDataPartitionInfo()
.getDataRegionReplicaSetForWriting(devicePath.getFullPath(), timePartitionSlot);
Map<TTimePartitionSlot, List<InsertRowNode>> tmpMap =
splitMap.computeIfAbsent(dataRegionReplicaSet, k -> new HashMap<>());
Map<TTimePartitionSlot, List<Integer>> tmpIndexMap =
splitMapForIndex.computeIfAbsent(dataRegionReplicaSet, k -> new HashMap<>());
List<InsertRowNode> tmpList =
tmpMap.computeIfAbsent(timePartitionSlot, k -> new ArrayList<>());
List<Integer> tmpIndexList =
tmpIndexMap.computeIfAbsent(timePartitionSlot, k -> new ArrayList<>());
tmpList.add(insertRowNode);
tmpIndexList.add(insertRowNodeIndexList.get(i));
if (i == insertRowNodeList.size() - 1) {
analysis.setRedirectNodeList(
Collections.singletonList(
dataRegionReplicaSet.getDataNodeLocations().get(0).getClientRpcEndPoint()));
}
}
for (Map.Entry<TRegionReplicaSet, Map<TTimePartitionSlot, List<InsertRowNode>>> entry1 :
splitMap.entrySet()) {
for (Map.Entry<TTimePartitionSlot, List<InsertRowNode>> entry :
entry1.getValue().entrySet()) {
InsertRowsOfOneDeviceNode reducedNode = new InsertRowsOfOneDeviceNode(this.getPlanNodeId());
reducedNode.setInsertRowNodeList(entry.getValue());
reducedNode.setInsertRowNodeIndexList(
splitMapForIndex.get(entry1.getKey()).get(entry.getKey()));
reducedNode.setDataRegionReplicaSet(entry1.getKey());
result.add(reducedNode);
}
}
return result;
}
private void storeMeasurementsAndDataType() {
Set<String> measurementSet = new HashSet<>();
List<TSDataType> dataTypeList = new ArrayList<>();
List<String> measurementList = new ArrayList<>();
for (InsertRowNode insertRowNode : insertRowNodeList) {
String[] measurements = insertRowNode.getMeasurements();
TSDataType[] dataTypes = insertRowNode.getDataTypes();
for (int i = 0; i < measurements.length; i++) {
if (!measurementSet.contains(measurements[i])) {
measurementList.add(measurements[i]);
dataTypeList.add(dataTypes[i]);
measurementSet.add(measurements[i]);
}
}
}
measurements = measurementList.toArray(new String[0]);
dataTypes = dataTypeList.toArray(new TSDataType[0]);
}
public static InsertRowsOfOneDeviceNode deserialize(ByteBuffer byteBuffer) {
PartialPath devicePath;
PlanNodeId planNodeId;
List<InsertRowNode> insertRowNodeList = new ArrayList<>();
List<Integer> insertRowNodeIndex = new ArrayList<>();
try {
devicePath = new PartialPath(ReadWriteIOUtils.readString(byteBuffer));
} catch (IllegalPathException e) {
throw new IllegalArgumentException("Cannot deserialize InsertRowsOfOneDeviceNode", e);
}
int size = byteBuffer.getInt();
for (int i = 0; i < size; i++) {
InsertRowNode insertRowNode = new InsertRowNode(new PlanNodeId(""));
insertRowNode.setDevicePath(devicePath);
insertRowNode.setTime(byteBuffer.getLong());
insertRowNode.deserializeMeasurementsAndValues(byteBuffer);
insertRowNodeList.add(insertRowNode);
}
for (int i = 0; i < size; i++) {
insertRowNodeIndex.add(byteBuffer.getInt());
}
planNodeId = PlanNodeId.deserialize(byteBuffer);
for (InsertRowNode insertRowNode : insertRowNodeList) {
insertRowNode.setPlanNodeId(planNodeId);
}
InsertRowsOfOneDeviceNode insertRowsOfOneDeviceNode = new InsertRowsOfOneDeviceNode(planNodeId);
insertRowsOfOneDeviceNode.setInsertRowNodeList(insertRowNodeList);
insertRowsOfOneDeviceNode.setInsertRowNodeIndexList(insertRowNodeIndex);
insertRowsOfOneDeviceNode.setDevicePath(devicePath);
return insertRowsOfOneDeviceNode;
}
@Override
protected void serializeAttributes(ByteBuffer byteBuffer) {
PlanNodeType.INSERT_ROWS_OF_ONE_DEVICE.serialize(byteBuffer);
ReadWriteIOUtils.write(devicePath.getFullPath(), byteBuffer);
ReadWriteIOUtils.write(insertRowNodeList.size(), byteBuffer);
for (InsertRowNode node : insertRowNodeList) {
ReadWriteIOUtils.write(node.getTime(), byteBuffer);
node.serializeMeasurementsAndValues(byteBuffer);
}
for (Integer index : insertRowNodeIndexList) {
ReadWriteIOUtils.write(index, byteBuffer);
}
}
@Override
protected void serializeAttributes(DataOutputStream stream) throws IOException {
PlanNodeType.INSERT_ROWS_OF_ONE_DEVICE.serialize(stream);
ReadWriteIOUtils.write(devicePath.getFullPath(), stream);
ReadWriteIOUtils.write(insertRowNodeList.size(), stream);
for (InsertRowNode node : insertRowNodeList) {
ReadWriteIOUtils.write(node.getTime(), stream);
node.serializeMeasurementsAndValues(stream);
}
for (Integer index : insertRowNodeIndexList) {
ReadWriteIOUtils.write(index, stream);
}
}
@Override
public void markAsGeneratedByPipe() {
isGeneratedByPipe = true;
insertRowNodeList.forEach(InsertRowNode::markAsGeneratedByPipe);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
InsertRowsOfOneDeviceNode that = (InsertRowsOfOneDeviceNode) o;
return Objects.equals(insertRowNodeIndexList, that.insertRowNodeIndexList)
&& Objects.equals(insertRowNodeList, that.insertRowNodeList);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), insertRowNodeIndexList, insertRowNodeList);
}
@Override
public <R, C> R accept(PlanVisitor<R, C> visitor, C context) {
return visitor.visitInsertRowsOfOneDevice(this, context);
}
@Override
public long getMinTime() {
throw new NotImplementedException();
}
@Override
public void setProgressIndex(ProgressIndex progressIndex) {
this.progressIndex = progressIndex;
insertRowNodeList.forEach(insertRowNode -> insertRowNode.setProgressIndex(progressIndex));
}
}