This is an automated email from the ASF dual-hosted git repository.
haonan pushed a change to branch sonarbug
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from efd67ff Merge branch 'master' of https://github.com/apache/iotdb into
sonarbug
add 146274c [IOTDB-1572] Optimize WriteableMemChunk's toString() (#3863)
add 33ce2b7 [IOTDB-1592] BugFix: SLimit Not effective in align by device
(#3846)
add f5df141 Fix format of Chinese CQ user doc (#3869)
add 253bc96 [ISSUE-3865] Meaningless connection reset issues caused by
low default value for SOMAXCONN (#3867)
add 2920d4c Fix load TsFile failed when time partition enabled caused by
TsFileReWriteTool NPE (#3870)
add fb18357 Remove timestamp datatype config (#3847)
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 7815b90 Merge branch 'master' of https://github.com/apache/iotdb into
sonarbug
No new revisions were added by this update.
Summary of changes:
README.md | 94 ++++++++++++------
README_ZH.md | 94 ++++++++++++------
.../apache/iotdb/cluster/server/ClientServer.java | 9 +-
.../iotdb/cluster/server/member/RaftMember.java | 17 ++++
.../apache/iotdb/cluster/utils/PartitionUtils.java | 4 +-
docs/Download/README.md | 18 +++-
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 | 90 +++++++++++++++--
.../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 | 18 +++-
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 +-
.../Advanced-Features/Continuous-Query.md | 4 +
docs/zh/UserGuide/Appendix/Config-Manual.md | 90 +++++++++++++++--
.../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 | 28 +++---
server/src/assembly/resources/conf/iotdb-env.sh | 27 +++++
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 12 +--
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 6 --
.../iotdb/db/engine/memtable/WritableMemChunk.java | 22 ++++-
.../iotdb/db/qp/logical/crud/QueryOperator.java | 9 +-
.../apache/iotdb/db/qp/physical/PhysicalPlan.java | 7 +-
.../db/qp/physical/sys/SetSystemModePlan.java | 33 +++++++
.../apache/iotdb/db/tools/TsFileRewriteTool.java | 13 ++-
.../db/tools/upgrade/TsFileOnlineUpgradeTool.java | 2 +-
.../db/writelog/node/ExclusiveWriteLogNode.java | 3 +
.../db/engine/memtable/PrimitiveMemTableTest.java | 27 +++++
.../iotdb/db/integration/IoTDBAlignByDeviceIT.java | 38 +++----
.../iotdb/db/utils/TsFileRewriteToolTest.java | 109 +++++++++++++++++++++
.../apache/iotdb/db/writelog/WriteLogNodeTest.java | 26 +++++
site/pom.xml | 10 ++
.../.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/common/conf/TSFileConfig.java | 9 +-
.../iotdb/tsfile/common/conf/TSFileDescriptor.java | 2 -
.../iotdb/tsfile/read/TsFileSequenceReader.java | 4 +
.../tsfile/v2/read/TsFileSequenceReaderForV2.java | 4 -
.../tsfile/write/schema/MeasurementSchema.java | 3 +-
.../tsfile/write/schema/TimeseriesSchema.java | 3 +-
.../write/schema/VectorMeasurementSchema.java | 3 +-
.../iotdb/tsfile/write/writer/TsFileIOWriter.java | 10 ++
50 files changed, 1291 insertions(+), 215 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