This is an automated email from the ASF dual-hosted git repository.
hxd pushed a change to branch change_rpc_port
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from b866328 merge with master
add 886b99d Add check local nodes in partitiontable's all nodes or not
when restart the cluster
add 8966bf1 Merge pull request #2391 from
neuyilan/apache_master_1230_fix_restart_bug
add af1da9d [IOTDB-1069] restrict the flushing memtable number to avoid
OOM when mem_control is disabled (#2315)
add bebad07 fix zeppelin doc headings (#2396)
add 482b5b3 fix the cli doc typo (#2399)
add e4ddf81 [IOTDB-1098] Add interface `validate` for UDF (#2406)
add e28208c change udf and tracing ut root path to target (#2411)
new db3e595 Merge remote-tracking branch 'origin/master' into
change_rpc_port
The 1 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:
.../java/org/apache/iotdb/cluster/ClusterMain.java | 20 +-
.../Ecosystem Integration/Zeppelin-IoTDB.md | 20 +-
.../Operation Manual/UDF User Defined Function.md | 56 ++++--
docs/zh/UserGuide/Client/Command Line Interface.md | 2 +-
.../Ecosystem Integration/Zeppelin-IoTDB.md | 20 +-
.../Operation Manual/UDF User Defined Function.md | 58 ++++--
.../resources/conf/iotdb-engine.properties | 14 ++
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 13 ++
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 6 +-
.../engine/storagegroup/StorageGroupProcessor.java | 2 +-
.../db/engine/storagegroup/TsFileProcessor.java | 19 +-
.../org/apache/iotdb/db/metadata/MManager.java | 8 +
.../org/apache/iotdb/db/query/udf/api/UDF.java | 15 ++
.../org/apache/iotdb/db/query/udf/api/UDTF.java | 10 +-
.../parameter/UDFParameterValidator.java | 209 +++++++++++++++++++++
.../api/customizer/parameter/UDFParameters.java | 4 +
.../UDFAttributeNotProvidedException.java | 9 +-
.../udf/api/exception/UDFException.java} | 10 +-
.../UDFInputSeriesDataTypeNotValidException.java} | 30 ++-
.../UDFInputSeriesIndexNotValidException.java | 10 +-
.../UDFInputSeriesNumberNotValidException.java} | 29 ++-
.../exception/UDFParameterNotValidException.java | 8 +-
.../db/query/udf/core/executor/UDTFExecutor.java | 14 +-
.../apache/iotdb/db/rescon/MemTableManager.java | 116 ++++++++++++
.../org/apache/iotdb/db/rescon/SystemInfo.java | 1 +
.../integration/IoTDBUDTFAlignByTimeQueryIT.java | 44 +++++
.../iotdb/db/query/udf/example/Accumulator.java | 8 +
.../apache/iotdb/db/query/udf/example/Adder.java | 11 ++
.../org/apache/iotdb/db/query/udf/example/Max.java | 8 +
.../iotdb/db/query/udf/example/Multiplier.java | 8 +
.../SlidingSizeWindowConstructorTester1.java | 8 +
.../SlidingTimeWindowConstructionTester.java | 8 +
.../{Multiplier.java => ValidateTester.java} | 100 +++++-----
server/src/test/resources/iotdb-engine.properties | 2 +
34 files changed, 728 insertions(+), 172 deletions(-)
create mode 100644
server/src/main/java/org/apache/iotdb/db/query/udf/api/customizer/parameter/UDFParameterValidator.java
copy
cluster/src/main/java/org/apache/iotdb/cluster/exception/ConfigInconsistentException.java
=>
server/src/main/java/org/apache/iotdb/db/query/udf/api/exception/UDFAttributeNotProvidedException.java
(72%)
copy
server/src/main/java/org/apache/iotdb/db/{exception/index/DistanceMetricException.java
=> query/udf/api/exception/UDFException.java} (78%)
copy
server/src/main/java/org/apache/iotdb/db/{qp/physical/crud/GroupByTimeFillPlan.java
=> query/udf/api/exception/UDFInputSeriesDataTypeNotValidException.java} (54%)
copy
cluster/src/main/java/org/apache/iotdb/cluster/exception/TruncateCommittedEntryException.java
=>
server/src/main/java/org/apache/iotdb/db/query/udf/api/exception/UDFInputSeriesIndexNotValidException.java
(68%)
copy server/src/main/java/org/apache/iotdb/db/{rescon/CachedStringPool.java =>
query/udf/api/exception/UDFInputSeriesNumberNotValidException.java} (57%)
copy cluster/src/test/java/org/apache/iotdb/cluster/common/TestException.java
=>
server/src/main/java/org/apache/iotdb/db/query/udf/api/exception/UDFParameterNotValidException.java
(80%)
create mode 100644
server/src/main/java/org/apache/iotdb/db/rescon/MemTableManager.java
copy
server/src/test/java/org/apache/iotdb/db/query/udf/example/{Multiplier.java =>
ValidateTester.java} (64%)