You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2019/07/12 12:14:22 UTC

[incubator-iotdb] branch dynamic_parameters updated (19ce23e -> 7b34e57)

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

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


    from 19ce23e  Merge remote-tracking branch 'origin/dynamic_parameters' into dynamic_parameters
     add fd05a3c  [IOTDB-129]Fix statistic bug when restoring incomplete tsfile (#230)
     add 09d30d0  fix file name compare bug
     add 11d3316  Merge pull request #233 from apache/fix_file_name_compare
     add 01e5e1b  recover when resource file does not exist while tsfile is complete
     add 937d589  Merge pull request #234 from apache/enhance_resource
     add fbd0117  change a wait memtable log from debug to info level
     add 0afdab3  [IOTDB-91] Improve tsfile-spark-connector to support spark 2.4.3 (#227)
     add 7d566ed  fix word spelling
     add 1e9449b  Add UT for DirectoriesStrategy (#197)
     add efe7db7  Fix links of nav content in documents
     add 9a1f8a1  Merge pull request #229 from samperson1997/document_link
     add 8d2f4ac  add a function to support appending data at the end of a completed TsFile
     add b36a120  remove unused class import which cause an error in UT
     add d24cb03  Merge pull request #235 from apache/feature_append_add_on_complete_tsfile
     add a300868  [IOTDB-133] Fix mistaken links in documents
     add 73f4936  Merge pull request #237 from samperson1997/new_document_link
     add 7b34e57  resolve conflict after merge master

No new revisions were added by this update.

Summary of changes:
 docs/Community-Powered By.md                       |   8 +-
 docs/Development.md                                |  39 ++---
 docs/Documentation-CHN/QuickStart.md               |  17 ++
 .../4-Deployment and Management/2-Configuration.md |  12 +-
 .../UserGuideV0.7.0/7-Tools-Cli.md                 |   8 +
 .../UserGuideV0.7.0/7-Tools-Grafana.md             |  17 ++
 docs/Documentation/Frequently asked questions.md   |  20 +--
 .../OtherMaterial-ReleaseNotesV0.7.0.md            |  16 +-
 docs/Documentation/OtherMaterial-Sample Data.md    |   8 +-
 docs/Documentation/QuickStart.md                   |  22 +--
 .../4-Deployment and Management/2-Configuration.md |  14 +-
 docs/Documentation/UserGuideV0.7.0/7-Tools-Cli.md  |   8 +-
 .../UserGuideV0.7.0/7-Tools-Grafana.md             |  25 +--
 .../UserGuideV0.7.0/7-Tools-Hadoop.md              |   3 +-
 docs/Documentation/UserGuideV0.7.0/7-Tools-Sync.md |  20 +--
 .../Documentation/UserGuideV0.7.0/7-Tools-spark.md |  59 +++----
 iotdb/pom.xml                                      |  19 +++
 .../directories/strategy/DirectoryStrategy.java    |  31 ++--
 .../strategy/MaxDiskUsableSpaceFirstStrategy.java  |   8 +-
 .../MinFolderOccupiedSpaceFirstStrategy.java       |  35 ++--
 .../directories/strategy/SequenceStrategy.java     |  12 +-
 .../org/apache/iotdb/db/utils/CommonUtils.java     |  20 +++
 .../strategy/DirectoryStrategyTest.java            | 177 +++++++++++++++++++++
 .../apache/iotdb/db/utils/EnvironmentUtils.java    |   2 +-
 pom.xml                                            |   2 +-
 spark/README.md                                    |   2 +-
 .../scala/org/apache/iotdb/tsfile/Converter.scala  |  24 +--
 .../apache/iotdb/tsfile/TsFileOutputWriter.scala   |   6 +-
 .../apache/iotdb/tsfile/TsFileWriterFactory.scala  |   5 +-
 .../org/apache/iotdb/tsfile/ConverterTest.scala    |   7 +-
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |   2 +-
 .../java/org/apache/iotdb/tsfile/utils/Binary.java |   2 +-
 .../write/writer/RestorableTsFileIOWriter.java     |  44 ++++-
 .../write/writer/RestorableTsFileIOWriterTest.java |  22 +++
 34 files changed, 512 insertions(+), 204 deletions(-)
 create mode 100644 iotdb/src/test/java/org/apache/iotdb/db/conf/directories/strategy/DirectoryStrategyTest.java