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

hxd pushed a change to branch release
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from aaaaf50  [maven-release-plugin] prepare release release/0.10.0
     add b2d3c39  [maven-release-plugin] prepare for next development iteration
     add 2168fad  fix bug and add doc (#1390)
     add 6474694  fix insert tablet serialize (#1404)
     add 735841e  fix python client example that be inconsistent with Server's 
thrift Transport instance
     add 538cd5a  fix pypi iotdb module version to 0.10.0
     add 3967c95  fix python client example
     add 9b2547a  enlarge avg_series_point_number_threshold to 100000
     add 4b1b6a5  Fix series reader bug
     add 700407e  fix upgrade
     add e015fef  enlarge avg_series_point_number_threshold to 500000
     add 509aa01  fix deadlock of insert and show latest timeseries
     add 53dacaf  fix tmpProperties
     add c587352  [IOTDB-794][To rel/0.10] fix upgrade system.properties (#1492)
     add 05b9099  solve hive-connector bug
     add c11f9a7  reformat code
     add 561b393  fix sonar
     add 4586ce0  change lock way
     add 987ed36  fix release unclosed file reader bug
     add 0daa643  Change the default fetch size in session (#1506)
     add a205a6a  [IOTDB-800] Add a new config type for those which could not 
be modified after first start
     add 1f08d44  [IOTDB-798] [To rel/0.10] fix a set rowLimit and rowOffset 
bug (#1508)
     add 07d8e70  improve group by
     add e7a4ad7  remove log visualizer tool from v0.10
     add 308edd6  fix license-binary
     add 320cd0d  [IOTDB-805] Fix BufferUnderflowException when querying TsFile 
stored in HDFS
     add 239c7dc  python session client ver-0.10.0
     add f2e0c7a  delete old-version python example.
     add 4a38a29  updated README file of python client.
     add b29b10e  Update client-py/readme.md
     add ff7c08e  [IOTDB-808] fix bug in selfCheck() truncate (#1532)
     add cbaf6f2  fix insert tablet doc (#1535)
     add 8fe3973  modify docs from v0.10.0 to v0.10.1
     add 8e91e85  fix flink error and pom warning
     add b156b7d  fix updating mlog many times
     add e611890  Merge remote-tracking branch 'origin/rel/0.10' into 
for-releasing-0.10.1
     add 07ca9ff  add release note for v0.10.1
     add 4faa9c6  fix upgrade systemfile
     add a25db18  Improve the recover process (#1545)
     add 67d6c91  Merge remote-tracking branch 'origin/rel/0.10' into 
for-releasing-0.10.1
     add a12cb99  update release note for v0.10.1
     add 85a324c  [maven-release-plugin] prepare release release/0.10.1
     add 41edd24  [maven-release-plugin] prepare for next development iteration
     add bb905cd  remove jol-core dependency which is introduced by hive-serde 
2.8.4
     add ee4f0e2  add README_ZH.md into distribution files
     add 575fcd3  remove jol-core dependency which is introduced by hive-serde 
2.8.4
     add 0799ea9  fix set historical version when loading tsfile
     add 4fe1fdd  Merge remote-tracking branch 'origin/rel/0.10' into 
for-releasing-0.10.1
     add 8789c25  add release note for issue #1551
     add e4ee83f  remove jol-core dependency which is introduced by hive-serde 
2.8.4
     add d79f3c5  remove org.json dependency because of license compatibility
     add e1bc304  [maven-release-plugin] prepare release release/0.10.1
     add 3f47218  [maven-release-plugin] prepare for next development iteration
     add 6e6b657  fix null pointer bug
     add 7415bad  add a test
     add 7f2b282  [To rel/0.10][ISSUE#1599]check datatype with encoding (#1602)
     add 1c63731  fix spark package name in doc (#1606)
     add a688a03  Merge remote-tracking branch 'origin/rel/0.10' into 
for-releasing-0.10.1-rc2
     add 023fb84  [maven-release-plugin] prepare release release/0.10.1
     new 6ee562f  Merge tag 'release/0.10.1' into release

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:
 LICENSE-binary                                     |  71 +++-
 README.md                                          |   2 +-
 RELEASE_NOTES.md                                   |  26 ++
 cli/pom.xml                                        |   2 +-
 client-py/readme.md                                |   8 +-
 client-py/src/Session.py                           | 460 +++++++++++++++++++++
 client-py/src/SessionExample.py                    | 105 +++++
 client-py/src/SessionUT.py                         | 107 +++++
 client-py/src/client_example.py                    | 341 ---------------
 client-py/src/utils/Field.py                       | 176 ++++++++
 .../src/utils/IoTDBConstants.py                    |  42 +-
 client-py/src/utils/IoTDBRpcDataSet.py             | 219 ++++++++++
 client-py/src/utils/RowRecord.py                   |  55 +++
 client-py/src/utils/SessionDataSet.py              | 101 +++++
 client-py/src/utils/Tablet.py                      | 133 ++++++
 .../src/utils/__init__.py                          |   2 -
 distribution/pom.xml                               |   2 +-
 distribution/src/assembly/distribution.xml         |   3 +
 docs/SystemDesign/Connector/Spark-TsFile.md        |  22 +-
 docs/SystemDesign/TsFile/Format.md                 |  12 +-
 .../UserGuide/Architecture/Writing Data on HDFS.md |   8 +-
 docs/UserGuide/Client/Programming - JDBC.md        |   2 +-
 docs/UserGuide/Client/Programming - Native API.md  |   2 +-
 docs/UserGuide/Client/Programming - TsFile API.md  |   6 +-
 .../UserGuide/Ecosystem Integration/Hive TsFile.md |   6 +-
 .../UserGuide/Ecosystem Integration/Spark IoTDB.md |   4 +-
 .../Ecosystem Integration/Spark TsFile.md          |  18 +-
 docs/UserGuide/Operation Manual/SQL Reference.md   |   2 +-
 docs/UserGuide/Server/Config Manual.md             |  10 +-
 docs/UserGuide/System Tools/Log Visualizer.md      | 160 -------
 docs/zh/SystemDesign/Connector/Spark-TsFile.md     |  16 +
 .../UserGuide/Architecture/Writing Data on HDFS.md |   8 +-
 docs/zh/UserGuide/Client/Programming - JDBC.md     |   2 +-
 .../UserGuide/Client/Programming - Native API.md   |   2 +-
 .../UserGuide/Client/Programming - TsFile API.md   |   6 +-
 .../Ecosystem Integration/Spark TsFile.md          |  20 +-
 .../DML Data Manipulation Language.md              |   2 -
 .../zh/UserGuide/Operation Manual/SQL Reference.md |   2 +-
 docs/zh/UserGuide/Server/Config Manual.md          |   8 +-
 docs/zh/UserGuide/Server/Docker Image.md           |   2 +-
 docs/zh/UserGuide/System Tools/Log Visualizer.md   | 146 -------
 example/flink/pom.xml                              |   6 +-
 example/hadoop/pom.xml                             |   6 +-
 example/jdbc/pom.xml                               |   2 +-
 example/kafka/pom.xml                              |   4 +-
 example/kafka/readme.md                            |   2 +-
 example/mqtt/pom.xml                               |   2 +-
 example/pom.xml                                    |   2 +-
 example/rocketmq/pom.xml                           |   2 +-
 example/rocketmq/readme.md                         |   2 +-
 example/session/pom.xml                            |   2 +-
 .../main/java/org/apache/iotdb/SessionExample.java |  22 +-
 example/tsfile/pom.xml                             |   2 +-
 flink-iotdb-connector/pom.xml                      |   2 +-
 .../iotdb/flink/DefaultIoTSerializationSchema.java |   2 +-
 flink-tsfile-connector/pom.xml                     |  10 +-
 grafana/pom.xml                                    |   2 +-
 hadoop/pom.xml                                     |   4 +-
 .../apache/iotdb/hadoop/fileSystem/HDFSOutput.java |   7 +-
 .../apache/iotdb/hadoop/tsfile/TSFInputFormat.java |  23 +-
 .../iotdb/hadoop/tsfile/TSFRecordReader.java       |  27 +-
 .../iotdb/hadoop/tsfile/TSFRecordWriter.java       |   3 +-
 hive-connector/pom.xml                             |  36 +-
 .../org/apache/iotdb/hive/TSFHiveInputFormat.java  |  11 +-
 .../java/org/apache/iotdb/hive/TsFileSerDe.java    |  18 +-
 jdbc/README.md                                     |   4 +-
 jdbc/pom.xml                                       |   2 +-
 licenses/EDL License 1.0                           |  11 -
 pom.xml                                            |  26 +-
 server/pom.xml                                     |  19 +-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   2 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |  42 +-
 .../apache/iotdb/db/engine/cache/ChunkCache.java   |  52 +--
 .../iotdb/db/engine/cache/ChunkMetadataCache.java  |  33 +-
 .../db/engine/cache/TimeSeriesMetadataCache.java   |  84 ++--
 .../engine/storagegroup/StorageGroupProcessor.java | 296 ++++++-------
 .../db/engine/storagegroup/TsFileResource.java     |   2 +-
 .../org/apache/iotdb/db/metadata/MLogWriter.java   |  10 +-
 .../org/apache/iotdb/db/metadata/MManager.java     |   5 +-
 .../apache/iotdb/db/metrics/ui/MetricsPage.java    |   3 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  10 +-
 .../iotdb/db/qp/physical/crud/InsertPlan.java      |  11 +
 .../db/qp/physical/crud/InsertTabletPlan.java      |  13 +-
 .../iotdb/db/query/control/QueryFileManager.java   |   7 +-
 .../dataset/groupby/LocalGroupByExecutor.java      |  19 +-
 .../iotdb/db/query/reader/series/SeriesReader.java |   4 +
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   3 +
 .../apache/iotdb/db/tools/logvisual/LogEntry.java  | 146 -------
 .../apache/iotdb/db/tools/logvisual/LogFilter.java | 220 ----------
 .../apache/iotdb/db/tools/logvisual/LogParser.java |  46 ---
 .../iotdb/db/tools/logvisual/LogVisualizer.java    | 437 --------------------
 .../iotdb/db/tools/logvisual/PatternLogParser.java | 197 ---------
 .../db/tools/logvisual/TimeSeriesStatistics.java   | 113 -----
 .../iotdb/db/tools/logvisual/VisualUtils.java      |  69 ----
 .../db/tools/logvisual/VisualizationPlan.java      | 259 ------------
 .../db/tools/logvisual/conf/GuiPropertyKeys.java   |  48 ---
 .../exceptions/NoLogFileLoadedException.java       |  28 --
 .../logvisual/exceptions/NoSuchPlanException.java  |  28 --
 .../exceptions/UnmatchedContentException.java      |  28 --
 .../exceptions/VisualizationException.java         |  39 --
 .../db/tools/logvisual/gui/ClosableComboTab.java   |  42 --
 .../iotdb/db/tools/logvisual/gui/ClosableTab.java  |  55 ---
 .../db/tools/logvisual/gui/FileSelectionBox.java   | 109 -----
 .../db/tools/logvisual/gui/LabeledComboBox.java    |  63 ---
 .../iotdb/db/tools/logvisual/gui/LoadLogBox.java   |  62 ---
 .../tools/logvisual/gui/LogVisualizationGui.java   | 182 --------
 .../iotdb/db/tools/logvisual/gui/MainPanel.java    | 107 -----
 .../iotdb/db/tools/logvisual/gui/PlanBox.java      | 301 --------------
 .../db/tools/logvisual/gui/PlanDetailPanel.java    | 242 -----------
 .../db/tools/logvisual/gui/ResultPlotTab.java      |  49 ---
 .../db/tools/logvisual/gui/ResultStatisticTab.java |  74 ----
 .../org/apache/iotdb/db/utils/SchemaUtils.java     |  39 ++
 .../writelog/recover/TsFileRecoverPerformer.java   |  26 +-
 .../iotdb/db/integration/IOTDBGroupByIT.java       |  39 ++
 .../iotdb/db/integration/IoTDBGroupByFillIT.java   |  40 ++
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   |  20 +
 .../iotdb/db/metadata/MManagerBasicTest.java       |  35 ++
 .../iotdb/db/metadata/MManagerImproveTest.java     |   2 +-
 .../apache/iotdb/db/writelog/WriteLogNodeTest.java |  32 ++
 service-rpc/pom.xml                                |   2 +-
 service-rpc/src/pypi/README.md                     |   2 +-
 service-rpc/src/pypi/setup.py                      |   4 +-
 session/pom.xml                                    |   2 +-
 .../org/apache/iotdb/session/SessionDataSet.java   |   4 +-
 site/pom.xml                                       |   2 +-
 site/src/main/.vuepress/config.js                  |   4 -
 spark-iotdb-connector/pom.xml                      |  19 +-
 spark-tsfile/README.md                             |   4 +-
 spark-tsfile/pom.xml                               |   8 +-
 .../apache/iotdb/spark/tsfile/DefaultSource.scala  |  13 +-
 tsfile/README.md                                   |   2 +-
 tsfile/pom.xml                                     |   2 +-
 .../fileOutputFactory/HDFSOutputFactory.java       |   3 +-
 .../tsfile/fileSystem/fsFactory/HDFSFactory.java   |  12 +-
 .../iotdb/tsfile/read/TsFileCheckStatus.java       |   1 -
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |  87 ++--
 .../apache/iotdb/tsfile/read/common/BatchData.java |  13 +
 .../apache/iotdb/tsfile/write/record/Tablet.java   |   5 +-
 .../write/writer/ForceAppendTsFileWriter.java      |   3 +-
 .../tsfile/write/writer/LocalTsFileOutput.java     |   4 +-
 .../write/writer/RestorableTsFileIOWriter.java     |  42 +-
 .../iotdb/tsfile/write/writer/TsFileIOWriter.java  |  10 +-
 .../iotdb/tsfile/write/writer/TsFileOutput.java    |   4 +-
 .../write/writer/RestorableTsFileIOWriterTest.java |  22 +-
 146 files changed, 2418 insertions(+), 4215 deletions(-)
 create mode 100644 client-py/src/Session.py
 create mode 100644 client-py/src/SessionExample.py
 create mode 100644 client-py/src/SessionUT.py
 delete mode 100644 client-py/src/client_example.py
 create mode 100644 client-py/src/utils/Field.py
 copy server/src/assembly/resources/sbin/stop-server.sh => 
client-py/src/utils/IoTDBConstants.py (64%)
 mode change 100755 => 100644
 create mode 100644 client-py/src/utils/IoTDBRpcDataSet.py
 create mode 100644 client-py/src/utils/RowRecord.py
 create mode 100644 client-py/src/utils/SessionDataSet.py
 create mode 100644 client-py/src/utils/Tablet.py
 copy 
server/src/main/resources/META-INF/services/org.apache.iotdb.db.mqtt.PayloadFormatter
 => client-py/src/utils/__init__.py (94%)
 delete mode 100644 docs/UserGuide/System Tools/Log Visualizer.md
 delete mode 100644 docs/zh/UserGuide/System Tools/Log Visualizer.md
 delete mode 100644 licenses/EDL License 1.0
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/LogEntry.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/LogFilter.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/LogParser.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/LogVisualizer.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/PatternLogParser.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/TimeSeriesStatistics.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/VisualUtils.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/VisualizationPlan.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/conf/GuiPropertyKeys.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/exceptions/NoLogFileLoadedException.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/exceptions/NoSuchPlanException.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/exceptions/UnmatchedContentException.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/exceptions/VisualizationException.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/ClosableComboTab.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/ClosableTab.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/FileSelectionBox.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/LabeledComboBox.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/LoadLogBox.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/LogVisualizationGui.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/MainPanel.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/PlanBox.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/PlanDetailPanel.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/ResultPlotTab.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/tools/logvisual/gui/ResultStatisticTab.java

Reply via email to