You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2021/06/28 14:09:01 UTC

[iotdb] branch DataMigration11 created (now 1fd3393)

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

haonan pushed a change to branch DataMigration11
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


      at 1fd3393  [To rel/0.11] Fix DataMigrationExample OOM if migrate too many timeseries

This branch includes the following new commits:

     new 1fd3393  [To rel/0.11] Fix DataMigrationExample OOM if migrate too many timeseries

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.


[iotdb] 01/01: [To rel/0.11] Fix DataMigrationExample OOM if migrate too many timeseries

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch DataMigration11
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 1fd3393349d767aab2359aaed48a311564f16efa
Author: HTHou <hh...@outlook.com>
AuthorDate: Mon Jun 28 22:07:26 2021 +0800

    [To rel/0.11] Fix DataMigrationExample OOM if migrate too many timeseries
---
 .../src/main/java/org/apache/iotdb/DataMigrationExample.java      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/example/session/src/main/java/org/apache/iotdb/DataMigrationExample.java b/example/session/src/main/java/org/apache/iotdb/DataMigrationExample.java
index ccb878d..f984567 100644
--- a/example/session/src/main/java/org/apache/iotdb/DataMigrationExample.java
+++ b/example/session/src/main/java/org/apache/iotdb/DataMigrationExample.java
@@ -88,7 +88,7 @@ public class DataMigrationExample {
     int count = 0;
     while (schemaIter.next()) {
       count ++;
-      Path currentPath = new Path(schemaIter.getString("timeseries"));
+      Path currentPath = new Path(schemaIter.getString("timeseries"), true);
       Future future = executorService.submit(
           new LoadThread(count, currentPath, TSDataType.valueOf(schemaIter.getString("dataType"))));
       futureList.add(future);
@@ -120,14 +120,14 @@ public class DataMigrationExample {
       this.measurement = series.getMeasurement();
       this.dataType = dataType;
       this.series = series;
-      List<MeasurementSchema> schemaList = new ArrayList<>();
-      schemaList.add(new MeasurementSchema(measurement, dataType));
-      tablet = new Tablet(device, schemaList, 300000);
     }
 
     @Override
     public Void call() {
 
+      List<MeasurementSchema> schemaList = new ArrayList<>();
+      schemaList.add(new MeasurementSchema(measurement, dataType));
+      tablet = new Tablet(device, schemaList, 300000);
       SessionDataSetWrapper dataSet = null;
 
       try {