You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ji...@apache.org on 2020/02/18 02:02:40 UTC

[incubator-iotdb] branch cluster_new updated (6a45db9 -> 3b3045b)

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

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


    from 6a45db9  start of implementing aggregation
     add 72eb5af  [IOTDB-447] query not exist measurement and constant measurement (#772)
     add 4ab12f4  add documents for group by device syntax (#781)
     add c400bf1  [IOTDB-405] cache results in the client and makes the display look nice. (#782)
     add f9287cb  Fix Query Bug (#788)
     add 5b0f7ff  remove usused daemon. (#787)
     add 3baa733  Add sync design doc (#783)
     add ee76d50  Self-serve modification of git topics (#789)
     add 81f9928  Revert "Self-serve modification of git topics (#789)" (#791)
     add e3f7437  self-serve modification of git topics (#792)
     add 1013014  [IOTDB-470]fix IllegalArgumentException when there exists 0 byte TsFile (#784)
     add 5c059bf  change maven-download-plugin to 1.3.0 (#794)
     add 9a4b83c  Typos in Fill (#795)
     add 6ddb2c3  [IOTDB-471] fix bug (#786)
     add f127a26  Revert "[IOTDB-471] fix bug (#786)" (#799)
     add a6bd21a  Enable auto create schema (#797)
     add d079a4d  [IOTDB-471] fix and try to locate latestTimeForEachDevice null pointer bug (#800)
     add 3d8e036  [IOTDB-486] Correct typo and broken link in `example/ rocketmq/readme.md`
     add c1c56ba  [IOTDB-485] Fix the broken link for `Client/Shell tools`
     add b3ef2e0  [IOTDB-489] Variable url pattern should be defined as a constant
     add f63acfb  [IOTDB-484] Added maven status badge (#807)
     add c72281f  [IOTDB-488] Static members shouldn't be accessed through class instances
     add 866eb70  [IOTDB-467] The CLI displays query results in a batch manner (#806)
     add ee88d73  Add more log of compression ratio  (#801)
     add 15c5c34  Fix time parititon problem (#816)
     add e502f5d  [IOTDB-491] Constant  name `pool ` should be all uppercase (#813)
     add aae1f14  [IOTDB-492] Remove unused field from hadoop example
     add 086173e  [IOTDB-493] Remove author tags from source code
     add a1a56ef  (feat)Update RocketMQ Readme file
     add 3b3045b  Merge branch 'master' into cluster_new

No new revisions were added by this update.

Summary of changes:
 .../resources/sbin/stop-server.sh => .asf.yaml     |  22 +-
 README.md                                          |   1 +
 .../org/apache/iotdb/client/AbstractClient.java    | 484 ++++--------
 .../main/java/org/apache/iotdb/client/Client.java  |  32 +-
 .../java/org/apache/iotdb/client/WinClient.java    |  31 +-
 .../SystemDesign/6-Tools/1-Sync.md                 | 279 ++++++-
 .../2-DML (Data Manipulation Language).md          |  15 +
 .../5-Operation Manual/4-SQL Reference.md          |  89 ++-
 .../2-DML (Data Manipulation Language).md          |  22 +-
 .../5-Operation Manual/4-SQL Reference.md          |  24 +-
 .../iotdb/hadoop/tsfile/TSFMRReadExample.java      |   3 -
 .../iotdb/hadoop/tsfile/TSMRWriteExample.java      |   1 -
 example/rocketmq/readme.md                         |  26 +-
 .../apache/iotdb/hadoop/tsfile/TSFInputFormat.java |   3 -
 .../iotdb/hadoop/tsfile/TSFOutputFormat.java       |   3 -
 .../iotdb/hadoop/tsfile/TSFRecordReader.java       |   3 -
 .../iotdb/hadoop/tsfile/record/HDFSTSRecord.java   |   3 -
 .../iotdb/hadoop/tsfile/TSFInputSplitTest.java     |   2 -
 .../apache/iotdb/hive/TsFileDeserializerTest.java  |   3 -
 .../iotdb/jdbc/IoTDBNonAlignQueryResultSet.java    |   8 +-
 .../src/main/java/org/apache/iotdb/jdbc/Utils.java |   7 +-
 pom.xml                                            |   2 +-
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |   1 +
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   2 +-
 .../iotdb/db/engine/memtable/WritableMemChunk.java |  15 +
 .../engine/storagegroup/StorageGroupProcessor.java |  26 +-
 .../db/engine/storagegroup/TsFileProcessor.java    |  12 +-
 .../iotdb/db/qp/physical/crud/QueryPlan.java       |  70 ++
 .../iotdb/db/qp/strategy/LogicalGenerator.java     |   9 +
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |  31 +-
 .../qp/strategy/optimizer/ConcatPathOptimizer.java |   8 -
 .../qp/strategy/optimizer/RemoveNotOptimizer.java  |   6 +
 .../db/query/dataset/DeviceIterateDataSet.java     |  62 +-
 .../NewEngineDataSetWithoutValueFilter.java        |   8 +-
 .../SeriesReaderWithoutValueFilter.java            |  15 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 125 +++-
 .../iotdb/db/sync/sender/transfer/SyncClient.java  |   9 +-
 .../org/apache/iotdb/db/utils/UpgradeUtils.java    |   6 +-
 .../iotdb/db/integration/IoTDBAuthorizationIT.java |   1 +
 .../db/integration/IoTDBDeleteStorageGroupIT.java  |  33 +-
 .../iotdb/db/integration/IoTDBDisableAlignIT.java  |   7 +-
 .../iotdb/db/integration/IoTDBGroupbyDeviceIT.java | 823 ++++++++++++++++++++-
 .../iotdb/db/integration/IoTDBMultiSeriesIT.java   |  25 +-
 .../iotdb/db/integration/IoTDBQueryDemoIT.java     |  14 +-
 .../iotdb/db/integration/IoTDBRecoverIT.java       |  14 +-
 .../apache/iotdb/db/utils/EnvironmentUtils.java    |  12 +
 .../org/apache/iotdb/session/SessionDataSet.java   | 141 ++--
 .../org/apache/iotdb/session/IoTDBSessionIT.java   |  53 ++
 .../org/apache/iotdb/tsfile/read/common/Field.java |  30 +
 .../apache/iotdb/tsfile/read/common/RowRecord.java |   5 +
 50 files changed, 1964 insertions(+), 662 deletions(-)
 copy server/src/assembly/resources/sbin/stop-server.sh => .asf.yaml (79%)
 mode change 100755 => 100644