[Feature](profile)add shuffle send rows/bytes #30456
This commit is contained in:
@ -88,6 +88,10 @@ public class AuditEvent {
|
||||
public String stmt = "";
|
||||
@AuditField(value = "CpuTimeMS")
|
||||
public long cpuTimeMs = -1;
|
||||
@AuditField(value = "ShuffleSendBytes")
|
||||
public long shuffleSendBytes = -1;
|
||||
@AuditField(value = "ShuffleSendRows")
|
||||
public long shuffleSendRows = -1;
|
||||
@AuditField(value = "SqlHash")
|
||||
public String sqlHash = "";
|
||||
@AuditField(value = "peakMemoryBytes")
|
||||
|
||||
@ -70,6 +70,8 @@ public class WorkloadRuntimeStatusMgr {
|
||||
auditEvent.scanBytes = queryStats.scan_bytes;
|
||||
auditEvent.peakMemoryBytes = queryStats.max_peak_memory_bytes;
|
||||
auditEvent.cpuTimeMs = queryStats.cpu_ms;
|
||||
auditEvent.shuffleSendBytes = queryStats.shuffle_send_bytes;
|
||||
auditEvent.shuffleSendRows = queryStats.shuffle_send_rows;
|
||||
}
|
||||
Env.getCurrentAuditEventProcessor().handleAuditEvent(auditEvent);
|
||||
}
|
||||
@ -139,6 +141,7 @@ public class WorkloadRuntimeStatusMgr {
|
||||
} else {
|
||||
long currentTime = System.currentTimeMillis();
|
||||
for (Map.Entry<String, TQueryStatistics> entry : params.query_statistics_map.entrySet()) {
|
||||
LOG.info("log2109 queryid={}, shuffle={}", entry.getKey(), entry.getValue().shuffle_send_bytes);
|
||||
queryIdMap.put(entry.getKey(), entry.getValue());
|
||||
queryLastReportTime.put(entry.getKey(), currentTime);
|
||||
}
|
||||
@ -175,6 +178,8 @@ public class WorkloadRuntimeStatusMgr {
|
||||
dst.scan_rows += src.scan_rows;
|
||||
dst.scan_bytes += src.scan_bytes;
|
||||
dst.cpu_ms += src.cpu_ms;
|
||||
dst.shuffle_send_bytes += src.shuffle_send_bytes;
|
||||
dst.shuffle_send_rows += src.shuffle_send_rows;
|
||||
if (dst.max_peak_memory_bytes < src.max_peak_memory_bytes) {
|
||||
dst.max_peak_memory_bytes = src.max_peak_memory_bytes;
|
||||
}
|
||||
|
||||
@ -46,6 +46,8 @@ public class ActiveQueriesTableValuedFunction extends MetadataTableValuedFunctio
|
||||
new Column("ScanBytes", PrimitiveType.BIGINT),
|
||||
new Column("BePeakMemoryBytes", PrimitiveType.BIGINT),
|
||||
new Column("CurrentUsedMemoryBytes", PrimitiveType.BIGINT),
|
||||
new Column("ShuffleSendBytes", PrimitiveType.BIGINT),
|
||||
new Column("ShuffleSendRows", PrimitiveType.BIGINT),
|
||||
new Column("Database", ScalarType.createStringType()),
|
||||
new Column("FrontendInstance", ScalarType.createStringType()),
|
||||
new Column("Sql", ScalarType.createStringType()));
|
||||
|
||||
@ -441,6 +441,8 @@ public class MetadataGenerator {
|
||||
trow.addToColumnValue(new TCell().setLongVal(qs.scan_bytes));
|
||||
trow.addToColumnValue(new TCell().setLongVal(qs.max_peak_memory_bytes));
|
||||
trow.addToColumnValue(new TCell().setLongVal(qs.current_used_memory_bytes));
|
||||
trow.addToColumnValue(new TCell().setLongVal(qs.shuffle_send_bytes));
|
||||
trow.addToColumnValue(new TCell().setLongVal(qs.shuffle_send_rows));
|
||||
} else {
|
||||
trow.addToColumnValue(new TCell().setLongVal(0L));
|
||||
trow.addToColumnValue(new TCell().setLongVal(0L));
|
||||
@ -448,6 +450,8 @@ public class MetadataGenerator {
|
||||
trow.addToColumnValue(new TCell().setLongVal(0L));
|
||||
trow.addToColumnValue(new TCell().setLongVal(0L));
|
||||
trow.addToColumnValue(new TCell().setLongVal(0L));
|
||||
trow.addToColumnValue(new TCell().setLongVal(0L));
|
||||
trow.addToColumnValue(new TCell().setLongVal(0L));
|
||||
}
|
||||
|
||||
if (queryInfo.getConnectContext() != null) {
|
||||
|
||||
Reference in New Issue
Block a user