You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2019/01/21 07:00:28 UTC

[incubator-iotdb] branch fix_license updated (f7b9c64 -> 2b271a2)

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

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


    from f7b9c64  add ASF header on *.md files
     new 4dfba6f  fix issue IOTDB-2, separate UTs and ITs
     new 682b74b  Merge pull request #8 from apache/fix_issue_2_it
     new 194d9e5  use force-thread to force periodically
     new a52cd00  force before close
     new b0b3c8f  format code
     new 71b7049  consider four cases when close multiFileLogNodeManager
     new 9e8e97c  use isActivated
     new 620fe6c  format code
     new eb922ea  Merge pull request #5 from apache/force-in-thread-periodically
     new 4a55823  Merge remote-tracking branch 'origin/master' into fix_license
     new 3a6e719  merge with master
     new a1e096c  set max memory as 1024MB for UTs (maven-surefire-plugin)
     new 2b271a2  merge with master

The 1289 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:
 checkstyle.xml                                     |  1 +
 grafana/pom.xml                                    | 46 +++++++++++
 iotdb-cli/pom.xml                                  | 40 +++++++++-
 ...stractClientTest.java => AbstractClientIT.java} |  2 +-
 ...entScriptTest.java => StartClientScriptIT.java} |  3 +-
 iotdb/iotdb/conf/iotdb-engine.properties           | 46 ++++++++++-
 iotdb/pom.xml                                      | 47 ++++++++---
 .../org/apache/iotdb/db/concurrent/ThreadName.java | 28 ++++---
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 53 +++++++------
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |  8 +-
 .../apache/iotdb/db/writelog/io/ILogWriter.java    |  2 +
 .../org/apache/iotdb/db/writelog/io/LogWriter.java | 14 +++-
 .../writelog/manager/MultiFileLogNodeManager.java  | 60 ++++++++++++--
 .../db/writelog/node/ExclusiveWriteLogNode.java    | 35 ++++++++-
 .../iotdb/db/writelog/node/WriteLogNode.java       |  5 ++
 ...rizationTest.java => IoTDBAuthorizationIT.java} |  4 +-
 ...IoTDBCompleteTest.java => IoTDBCompleteIT.java} |  2 +-
 .../{IoTDBDaemonTest.java => IoTDBDaemonIT.java}   |  2 +-
 ...orTest.java => IoTDBEngineTimeGeneratorIT.java} |  2 +-
 ...TDBLargeDataTest.java => IoTDBLargeDataIT.java} |  2 +-
 ...imitSlimitTest.java => IoTDBLimitSlimitIT.java} |  2 +-
 ...ataFetchTest.java => IoTDBMetadataFetchIT.java} |  2 +-
 ...ultiSeriesTest.java => IoTDBMultiSeriesIT.java} |  2 +-
 ...ueryTest.java => IoTDBSequenceDataQueryIT.java} |  2 +-
 ...iesReaderTest.java => IoTDBSeriesReaderIT.java} |  2 +-
 ...IoTDBTimeZoneTest.java => IoTDBTimeZoneIT.java} |  2 +-
 .../apache/iotdb/db/writelog/PerformanceTest.java  | 91 +++++++++++++---------
 jdbc/pom.xml                                       | 36 +++++++++
 pom.xml                                            | 75 +++++++++---------
 service-rpc/pom.xml                                | 50 ++++++++++++
 tsfile/pom.xml                                     | 39 +++++++++-
 31 files changed, 555 insertions(+), 150 deletions(-)
 rename iotdb-cli/src/test/java/org/apache/iotdb/cli/client/{AbstractClientTest.java => AbstractClientIT.java} (99%)
 rename iotdb-cli/src/test/java/org/apache/iotdb/cli/client/{StartClientScriptTest.java => StartClientScriptIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBAuthorizationTest.java => IoTDBAuthorizationIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBCompleteTest.java => IoTDBCompleteIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBDaemonTest.java => IoTDBDaemonIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBEngineTimeGeneratorTest.java => IoTDBEngineTimeGeneratorIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBLargeDataTest.java => IoTDBLargeDataIT.java} (97%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBLimitSlimitTest.java => IoTDBLimitSlimitIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBMetadataFetchTest.java => IoTDBMetadataFetchIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBMultiSeriesTest.java => IoTDBMultiSeriesIT.java} (97%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBSequenceDataQueryTest.java => IoTDBSequenceDataQueryIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBSeriesReaderTest.java => IoTDBSeriesReaderIT.java} (99%)
 rename iotdb/src/test/java/org/apache/iotdb/db/integration/{IoTDBTimeZoneTest.java => IoTDBTimeZoneIT.java} (99%)