You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ta...@apache.org on 2022/02/28 08:42:29 UTC

[iotdb] branch rel/0.13 updated (44b76ae -> 92ad9f2)

This is an automated email from the ASF dual-hosted git repository.

tanxinyu pushed a change to branch rel/0.13
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 44b76ae  [IOTDB-2591] fix doc of using OIDC as the authority authentication service (#5108)
     add 9c68af9  [IOTDB-2600] Ban inserting duplicated columns in one row (#5111)
     add 7f2978f  fix default max_thrift_frame_size to 512M (#5112)
     add 2ac29f5  [IOTDB-2599] Fix example of insertAlignedTablet is incorrect (#5114)
     add 45c679b  Fix invalid URL in README (#5117)
     add efa14ec  [IOTDB-2607] Fix session example error (#5119)
     add 84bc8de  stop scheduler pool when deleting storage group (#5120)
     add 238f230  [IOTDB-2581] Fix compaction recover in 0.13.0 is not compatible with 0.12.5 (#5099)
     add 95bb194  [IOTDB-2604] batch size is invalid in import-csv tool (#5115)
     add cb7e382  Rearranged UDF Library docs (#5079)
     add b954d0f  [IOTDB-2592] An exception occurred when using TsFile read API (#5105)
     add 6e983ee  fix UserGuide.EcosystemIntegration.FAQ.2.A (#5126)
     add 3f915d0  [IOTDB-2578]Fix cross space compaction recover and log read compatible with 0.12 (#5122)
     add 92ad9f2  [IOTDB-2620] Unrecognizable operator type (SHOW) for AuthorityChecker (#5129)

No new revisions were added by this update.

Summary of changes:
 README.md                                          |    6 +-
 README_ZH.md                                       |    6 +-
 .../main/java/org/apache/iotdb/tool/ImportCsv.java |   31 +-
 docs/UserGuide/Process-Data/UDF-Library.md         | 4611 --------------------
 .../Process-Data/UDF-User-Defined-Function.md      |    2 +-
 docs/UserGuide/Reference/Config-Manual.md          |    2 +-
 docs/UserGuide/UDF-Library/Anomaly-Detection.md    |  525 +++
 docs/UserGuide/UDF-Library/Data-Matching.md        |  335 ++
 docs/UserGuide/UDF-Library/Data-Profiling.md       | 1812 ++++++++
 docs/UserGuide/UDF-Library/Data-Quality.md         |  519 +++
 docs/UserGuide/UDF-Library/Data-Repairing.md       |  355 ++
 docs/UserGuide/UDF-Library/Frequency-Domain.md     |  605 +++
 docs/UserGuide/UDF-Library/M4.md                   |   92 +
 docs/UserGuide/UDF-Library/Quick-Start.md          |   61 +
 docs/UserGuide/UDF-Library/Series-Discovery.md     |  173 +
 docs/UserGuide/UDF-Library/String-Processing.md    |  299 ++
 docs/UserGuide/Write-And-Delete-Data/CSV-Tool.md   |    4 +
 .../Ecosystem Integration/Writing Data on HDFS.md  |    2 +-
 docs/zh/UserGuide/Process-Data/UDF-Library.md      | 4520 -------------------
 .../Process-Data/UDF-User-Defined-Function.md      |    2 +-
 docs/zh/UserGuide/UDF-Library/Anomaly-Detection.md |  531 +++
 docs/zh/UserGuide/UDF-Library/Data-Matching.md     |  333 ++
 docs/zh/UserGuide/UDF-Library/Data-Profiling.md    | 1805 ++++++++
 docs/zh/UserGuide/UDF-Library/Data-Quality.md      |  524 +++
 docs/zh/UserGuide/UDF-Library/Data-Repairing.md    |  347 ++
 docs/zh/UserGuide/UDF-Library/Frequency-Domain.md  |  598 +++
 docs/zh/UserGuide/UDF-Library/M4.md                |   93 +
 docs/zh/UserGuide/UDF-Library/Quick-Start.md       |   61 +
 docs/zh/UserGuide/UDF-Library/Series-Discovery.md  |  173 +
 docs/zh/UserGuide/UDF-Library/String-Processing.md |  290 ++
 .../zh/UserGuide/Write-And-Delete-Data/CSV-Tool.md |    8 +-
 .../iotdb/AlignedTimeseriesSessionExample.java     |   38 +-
 .../iotdb/HybridTimeseriesSessionExample.java      |   14 +-
 .../java/org/apache/iotdb/tsfile/Constant.java     |    2 +
 .../iotdb/tsfile/TsFileForceAppendWrite.java       |    1 +
 .../java/org/apache/iotdb/tsfile/TsFileRead.java   |   18 +-
 .../tsfile/TsFileWriteAlignedWithTSRecord.java     |   16 +-
 .../iotdb/tsfile/TsFileWriteAlignedWithTablet.java |   28 +-
 .../iotdb/tsfile/TsFileWriteWithTSRecord.java      |   16 +-
 .../apache/iotdb/tsfile/TsFileWriteWithTablet.java |   16 +-
 .../apache/iotdb/db/integration/IOTDBInsertIT.java |   11 +
 .../aligned/IOTDBInsertAlignedValuesIT.java        |   11 +
 .../apache/iotdb/session/IoTDBSessionSimpleIT.java |    2 -
 .../org/apache/iotdb/db/auth/AuthorityChecker.java |    1 +
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |    2 +-
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |    6 +
 .../org/apache/iotdb/db/engine/StorageEngine.java  |    1 +
 .../db/engine/compaction/TsFileIdentifier.java     |   34 +-
 .../RewriteCrossSpaceCompactionSelector.java       |    7 +-
 .../RewriteCrossSpaceCompactionLogAnalyzer.java    |  100 +-
 .../recover/RewriteCrossSpaceCompactionLogger.java |    1 +
 .../task/RewriteCrossCompactionRecoverTask.java    |  194 +-
 .../inner/utils/SizeTieredCompactionLogger.java    |    4 +-
 .../compaction/task/CompactionRecoverTask.java     |   27 +-
 .../engine/storagegroup/TsFileNameGenerator.java   |    2 +-
 .../iotdb/db/qp/physical/crud/InsertPlan.java      |    9 +
 .../SizeTieredCompactionRecoverCompatibleTest.java |  157 +
 .../java/org/apache/iotdb/session/Session.java     |   68 +-
 .../org/apache/iotdb/session/pool/SessionPool.java |   42 +-
 .../session/IoTDBSessionVectorAggregationIT.java   |    3 +-
 .../iotdb/session/IoTDBSessionVectorInsertIT.java  |    1 -
 site/src/main/.vuepress/config.js                  |   34 +-
 site/src/main/.vuepress/redirects                  |    4 +-
 .../test/java/org/apache/iotdb/db/sql/Cases.java   |    8 +-
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |   18 +
 .../read/controller/CachedChunkLoaderImpl.java     |   67 +-
 .../apache/iotdb/tsfile/write/record/Tablet.java   |   10 -
 67 files changed, 10351 insertions(+), 9347 deletions(-)
 delete mode 100644 docs/UserGuide/Process-Data/UDF-Library.md
 create mode 100644 docs/UserGuide/UDF-Library/Anomaly-Detection.md
 create mode 100644 docs/UserGuide/UDF-Library/Data-Matching.md
 create mode 100644 docs/UserGuide/UDF-Library/Data-Profiling.md
 create mode 100644 docs/UserGuide/UDF-Library/Data-Quality.md
 create mode 100644 docs/UserGuide/UDF-Library/Data-Repairing.md
 create mode 100644 docs/UserGuide/UDF-Library/Frequency-Domain.md
 create mode 100644 docs/UserGuide/UDF-Library/M4.md
 create mode 100644 docs/UserGuide/UDF-Library/Quick-Start.md
 create mode 100644 docs/UserGuide/UDF-Library/Series-Discovery.md
 create mode 100644 docs/UserGuide/UDF-Library/String-Processing.md
 delete mode 100644 docs/zh/UserGuide/Process-Data/UDF-Library.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Anomaly-Detection.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Data-Matching.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Data-Profiling.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Data-Quality.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Data-Repairing.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Frequency-Domain.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/M4.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Quick-Start.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/Series-Discovery.md
 create mode 100644 docs/zh/UserGuide/UDF-Library/String-Processing.md
 create mode 100644 server/src/test/java/org/apache/iotdb/db/engine/compaction/recover/SizeTieredCompactionRecoverCompatibleTest.java