This is an automated email from the ASF dual-hosted git repository.
hxd pushed a change to branch cluster-
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from 91417c6 temp
add bc696e9 [IOTDB-1583] Raft log failed to be committed in cluster
version (#3832)
add e562445 update design document of data query (#3781)
add 820101c change default value for timed flush memtable and timed close
tsfile (#3875)
add d7fd960 Update docs for time partition and auto create metadata
(#3878)
add 79f29f4 [doc] Update some out-of-date content in README and add some
time zone usage (#3880)
add b92a16a [IOTDB-1601]Add Like and REGEXP statement user guide in DML
(#3889)
add 5c48d3a [IOTDB-1565]set system to readonly / writable Adaptive
cluster (#3885)
add 11d64b8 Update the QuickStart link in Home page (#3898)
add 8626336 [IOTDB-1610] Fix TsFileRewriteTool writing incorrect data
file (#3896) (#3897)
add bffb799 Fix website cannot update rel/0.12 documents (#3902)
add 88cce66 Add auto-create-schema, time partition and dbeaver user guide
to the website (#3904)
add c8dee24 [IOTDB-1534] fix surefire ci by increasing memory (#3899)
add 9931149 Revert "[IOTDB-1534] fix surefire ci by increasing memory
(#3899)" (#3908)
new a1ec9f3 merge with master
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:
README.md | 86 ++++++++++------
README_ZH.md | 86 ++++++++++------
.../iotdb/cluster/server/ClusterTSServiceImpl.java | 10 +-
.../iotdb/cluster/server/member/RaftMember.java | 17 ++++
.../apache/iotdb/cluster/utils/PartitionUtils.java | 4 +-
docs/Download/README.md | 8 +-
docs/SystemDesign/DataQuery/RawDataQuery.md | 26 +++--
docs/SystemDesign/DataQuery/SeriesReader.md | 36 ++++---
docs/UserGuide/API/Time-zone.md | 6 ++
docs/UserGuide/Appendix/Config-Manual.md | 81 +++++++++++++++
.../UserGuide/Data-Concept/Auto-Create-MetaData.md | 107 ++++++++++++++++++++
docs/UserGuide/Data-Concept/Time-Partition.md | 64 ++++++++++++
.../DML-Data-Manipulation-Language.md | 74 ++++++++++++++
docs/zh/Download/README.md | 6 +-
docs/zh/SystemDesign/DataQuery/OrderByTimeQuery.md | 2 +-
docs/zh/SystemDesign/DataQuery/RawDataQuery.md | 26 +++--
docs/zh/SystemDesign/DataQuery/SeriesReader.md | 36 ++++---
docs/zh/UserGuide/API/Time-zone.md | 8 +-
docs/zh/UserGuide/Appendix/Config-Manual.md | 81 +++++++++++++++
.../UserGuide/Data-Concept/Auto-Create-MetaData.md | 107 ++++++++++++++++++++
docs/zh/UserGuide/Data-Concept/Time-Partition.md | 64 ++++++++++++
.../DML-Data-Manipulation-Language.md | 77 +++++++++++++++
.../resources/conf/iotdb-engine.properties | 24 ++---
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 12 +--
.../apache/iotdb/db/qp/physical/PhysicalPlan.java | 7 +-
.../db/qp/physical/sys/SetSystemModePlan.java | 33 +++++++
.../apache/iotdb/db/tools/TsFileRewriteTool.java | 11 ++-
.../db/tools/upgrade/TsFileOnlineUpgradeTool.java | 2 +-
.../db/writelog/node/ExclusiveWriteLogNode.java | 3 +
.../iotdb/db/utils/TsFileRewriteToolTest.java | 109 +++++++++++++++++++++
.../apache/iotdb/db/writelog/WriteLogNodeTest.java | 26 +++++
site/pom.xml | 10 ++
site/src/main/.vuepress/config.js | 38 ++++---
.../.vuepress/theme/global-components/IoTDB.vue | 2 +-
.../.vuepress/theme/global-components/IoTDBZH.vue | 2 +-
.../test/java/org/apache/iotdb/db/sql/Cases.java | 21 ++++
.../iotdb/tsfile/read/TsFileSequenceReader.java | 4 +
.../tsfile/v2/read/TsFileSequenceReaderForV2.java | 4 -
38 files changed, 1156 insertions(+), 164 deletions(-)
create mode 100644 docs/UserGuide/Data-Concept/Auto-Create-MetaData.md
create mode 100644 docs/UserGuide/Data-Concept/Time-Partition.md
create mode 100644 docs/zh/UserGuide/Data-Concept/Auto-Create-MetaData.md
create mode 100644 docs/zh/UserGuide/Data-Concept/Time-Partition.md