We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5203eb4 commit 4861ca3Copy full SHA for 4861ca3
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/sql/ast/CreatePipe.java
@@ -115,9 +115,9 @@ public long ramBytesUsed() {
115
long size = INSTANCE_SIZE;
116
size += AstMemoryEstimationHelper.getEstimatedSizeOfNodeLocation(getLocationInternal());
117
size += RamUsageEstimator.sizeOf(pipeName);
118
- size += RamUsageEstimator.sizeOfMap(extractorAttributes);
+ size += RamUsageEstimator.sizeOfMap(sourceAttributes);
119
size += RamUsageEstimator.sizeOfMap(processorAttributes);
120
- size += RamUsageEstimator.sizeOfMap(connectorAttributes);
+ size += RamUsageEstimator.sizeOfMap(sinkAttributes);
121
return size;
122
}
123
0 commit comments