This is an automated email from the ASF dual-hosted git repository.
rong pushed a change to branch iotdb-3227
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 5c94f7d8a0 Merge branch 'master' of github.com:apache/iotdb into
iotdb-3227
new 98f928fcf2 config node -> data node
new ffffe4f723 data node: create function
add 2c3d9f7a49 [IOTDB-3246]TsFile Validation Tool (#5970)
add 19dc56d05d [IOTDB-3087] enlarge default value of
avg_series_point_number_threhold (#5961)
add 14fd2e8a1e Temporarily disable testDeleteinSelection in
RewriteCompactionFileSelectorTest (#6000)
add 7d354edc08 Fix code scanning issue in spark tsfile SQLConstant (#5996)
new 8a95d8325d Merge branch 'master' of github.com:apache/iotdb into
iotdb-3227
new f2b2ca0df6 setup UDF services in the same way
new 7ed5ad0cd7 implement SnapshotProcessor in UDFInfo
new 2a122b2f52 snapshot for UDFExecutableManager
The 6 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:
.../confignode/client/AsyncDataNodeClientPool.java | 16 +
.../client/handlers/CreateFunctionHandler.java | 58 +++
.../iotdb/confignode/manager/UDFManager.java | 78 +++-
.../iotdb/confignode/persistence/UDFInfo.java | 41 +-
docs/UserGuide/Reference/Config-Manual.md | 12 +-
docs/zh/UserGuide/Reference/Config-Manual.md | 10 +-
.../apache/iotdb/commons/service/ServiceType.java | 1 +
.../commons/udf/service/UDFExecutableManager.java | 116 +++++-
.../udf/service/UDFRegistrationService.java | 15 +-
.../resources/conf/iotdb-engine.properties | 4 +-
.../{settle.bat => validate-tsfile.bat} | 4 +-
.../{settle.sh => validate-tsfile.sh} | 4 +-
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 11 +-
.../java/org/apache/iotdb/db/service/DataNode.java | 30 +-
.../service/thrift/impl/InternalServiceImpl.java | 20 +
.../db/tools/validate/TsFileValidationTool.java | 453 +++++++++++++++++++++
.../cross/RewriteCompactionFileSelectorTest.java | 2 +-
.../iotdb/spark/tsfile/qp/common/SQLConstant.java | 26 +-
thrift/src/main/thrift/mpp.thrift | 13 +
19 files changed, 836 insertions(+), 78 deletions(-)
create mode 100644
confignode/src/main/java/org/apache/iotdb/confignode/client/handlers/CreateFunctionHandler.java
copy server/src/assembly/resources/tools/tsfileToolSet/{settle.bat =>
validate-tsfile.bat} (96%)
copy server/src/assembly/resources/tools/tsfileToolSet/{settle.sh =>
validate-tsfile.sh} (92%)
create mode 100644
server/src/main/java/org/apache/iotdb/db/tools/validate/TsFileValidationTool.java