This is an automated email from the ASF dual-hosted git repository.
hui pushed a change to branch QueryMetrics0.13
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 6038a25312 [To rel/0.13] Fix String number infer bug (#7886)
new 1f87529758 add QueryStatistics
new 5cfe9b8bcf support TRACING ON/OFF
new e8375a03da add metrics (Parser/Planner)
new c1804bf399 add metrics (execution)
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4 | 7 +-
server/src/assembly/resources/conf/logback.xml | 20 +++
.../threadpool/ScheduledExecutorUtil.java | 196 +++++++++++++++++++++
.../org/apache/iotdb/db/conf/IoTDBConstant.java | 1 +
.../main/java/org/apache/iotdb/db/qp/Planner.java | 14 +-
.../apache/iotdb/db/qp/executor/PlanExecutor.java | 19 +-
.../iotdb/db/qp/logical/sys/TracingOperator.java | 2 +-
.../iotdb/db/qp/physical/sys/TracingPlan.java | 2 +-
.../apache/iotdb/db/qp/sql/IoTDBSqlVisitor.java | 7 +
.../iotdb/db/query/control/QueryStatistics.java | 138 +++++++++++++++
.../reader/series/SeriesRawDataBatchReader.java | 20 +++
.../iotdb/db/query/reader/series/SeriesReader.java | 7 +-
.../db/service/thrift/impl/TSServiceImpl.java | 4 +
13 files changed, 431 insertions(+), 6 deletions(-)
create mode 100644
server/src/main/java/org/apache/iotdb/db/concurrent/threadpool/ScheduledExecutorUtil.java
create mode 100644
server/src/main/java/org/apache/iotdb/db/query/control/QueryStatistics.java