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

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


    from 4d1423d  update
     new 8829460  check whether tsfile is deleted in ut
     new d21409f  Merge pull request #116 from 
apache/fix_check_whether_file_is_deleted_in_ut
     new 0e74fa1  Reorganized the start and close of sync thread
     new 6e4bc04  Merge pull request #118 from apache/fix_sync_thread_bug
     new e0f265b  add physical codec unit test
     new 30c89ff  Merge pull request #115 from apache/serialize-physicalplan
     new 95865be  merge master
     new 247196f  change cluster lib location
     new 9591853  fix conflicts

The 1597 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:
 cluster/pom.xml                                    |   6 +-
 .../apache/iotdb/cluster/qp/ClusterQPExecutor.java |   3 +-
 .../cluster/qp/executor/NonQueryExecutor.java      |   7 +-
 .../cluster/qp/executor/QueryMetadataExecutor.java |   2 -
 .../rpc/processor/NonQueryAsyncProcessor.java      |   4 +-
 .../org/apache/iotdb/cluster/utils/RaftUtils.java  |  22 +++-
 iotdb/iotdb/bin/start-cluster.bat                  |   4 +-
 iotdb/iotdb/bin/start-cluster.sh                   |   2 +-
 iotdb/iotdb/bin/start-sync-client.bat              |   2 +-
 iotdb/iotdb/bin/start-sync-client.sh               |   2 +-
 .../java/org/apache/iotdb/db/service/IoTDB.java    |   8 +-
 .../org/apache/iotdb/db/service/ServiceType.java   |   4 +-
 .../iotdb/db/sync/receiver/ServerManager.java      | 101 ---------------
 .../iotdb/db/sync/receiver/SyncServerManager.java  | 143 +++++++++++++++++++++
 ...ServerServiceImpl.java => SyncServiceImpl.java} |   4 +-
 .../{FileManager.java => SyncFileManager.java}     |  14 +-
 .../sender/{FileSender.java => SyncSender.java}    |   4 +-
 .../{FileSenderImpl.java => SyncSenderImpl.java}   |  27 ++--
 .../iotdb/db/writelog/transfer/CodecInstances.java |  34 ++---
 .../iotdb/db/sync/sender/SingleClientSyncTest.java |   2 +-
 ...leManagerTest.java => SyncFileManagerTest.java} |   6 +-
 .../TsFileGeneratorForSeriesReaderByTimestamp.java |  13 +-
 .../iotdb/tsfile/utils/TsFileGeneratorForTest.java |   6 +-
 23 files changed, 236 insertions(+), 184 deletions(-)
 delete mode 100644 
iotdb/src/main/java/org/apache/iotdb/db/sync/receiver/ServerManager.java
 create mode 100644 
iotdb/src/main/java/org/apache/iotdb/db/sync/receiver/SyncServerManager.java
 rename 
iotdb/src/main/java/org/apache/iotdb/db/sync/receiver/{ServerServiceImpl.java 
=> SyncServiceImpl.java} (99%)
 rename iotdb/src/main/java/org/apache/iotdb/db/sync/sender/{FileManager.java 
=> SyncFileManager.java} (94%)
 rename iotdb/src/main/java/org/apache/iotdb/db/sync/sender/{FileSender.java => 
SyncSender.java} (95%)
 rename 
iotdb/src/main/java/org/apache/iotdb/db/sync/sender/{FileSenderImpl.java => 
SyncSenderImpl.java} (95%)
 rename 
iotdb/src/test/java/org/apache/iotdb/db/sync/sender/{FileManagerTest.java => 
SyncFileManagerTest.java} (98%)

Reply via email to