You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2023/04/19 07:00:46 UTC

[iotdb] branch guonengtest updated: add write test with fix parallel

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

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


The following commit(s) were added to refs/heads/guonengtest by this push:
     new c6a60eb11d add write test with fix parallel
c6a60eb11d is described below

commit c6a60eb11d79ea68c085d3f56a6f3fe2b039d751
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Wed Apr 19 15:00:35 2023 +0800

    add write test with fix parallel
---
 .../org/apache/iotdb/WriteTestFixParallel.java     | 225 +++++++++++++++++++++
 1 file changed, 225 insertions(+)

diff --git a/example/session/src/main/java/org/apache/iotdb/WriteTestFixParallel.java b/example/session/src/main/java/org/apache/iotdb/WriteTestFixParallel.java
new file mode 100644
index 0000000000..ca352705c7
--- /dev/null
+++ b/example/session/src/main/java/org/apache/iotdb/WriteTestFixParallel.java
@@ -0,0 +1,225 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.iotdb;
+
+import org.apache.iotdb.rpc.IoTDBConnectionException;
+import org.apache.iotdb.rpc.StatementExecutionException;
+import org.apache.iotdb.session.pool.SessionPool;
+import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Random;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.Semaphore;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.atomic.AtomicInteger;
+
+public class WriteTestFixParallel {
+
+  private static SessionPool sessionPool;
+
+  private static final Logger LOGGER = LoggerFactory.getLogger(WriteTestFixParallel.class);
+
+  private static int THREAD_NUMBER = 300;
+
+  private static int DEVICE_NUMBER = 20000;
+
+  private static int SENSOR_NUMBER = 500;
+
+  private static int WRITE_LOOP = 100000;
+
+  private static List<String> measurements;
+
+  private static List<TSDataType> types;
+
+  private static AtomicInteger totalRowNumber = new AtomicInteger();
+
+  private static Random r;
+
+  /** Build a custom SessionPool for this example */
+
+  /** Build a redirect-able SessionPool for this example */
+  private static void constructRedirectSessionPool() {
+    List<String> nodeUrls = new ArrayList<>();
+    //    nodeUrls.add("127.0.0.1:6667");
+    nodeUrls.add("10.24.58.58:6667");
+    nodeUrls.add("10.24.58.67:6667");
+    nodeUrls.add("10.24.58.69:6667");
+    sessionPool =
+        new SessionPool.Builder()
+            .nodeUrls(nodeUrls)
+            .user("root")
+            .password("root")
+            .maxSize(500)
+            .build();
+    sessionPool.setFetchSize(10000);
+  }
+
+  private static class SyncWriteSignal {
+    protected volatile boolean needResetLatch = true;
+    protected CountDownLatch latch;
+    protected long currentTimestamp;
+    protected Semaphore semaphore;
+    protected int count;
+
+    protected SyncWriteSignal(int count) {
+      this.count = count;
+      this.semaphore = new Semaphore(20);
+    }
+
+    protected void syncCountDownBeforeInsert() throws InterruptedException {
+      if (needResetLatch) {
+        synchronized (this) {
+          if (needResetLatch) {
+            latch = new CountDownLatch(this.count);
+            needResetLatch = false;
+            currentTimestamp = System.currentTimeMillis();
+          }
+        }
+      }
+      semaphore.acquire();
+    }
+
+    protected void finishInsertAndWait(int loopIndex) throws InterruptedException {
+      semaphore.release();
+      CountDownLatch currentLatch = latch;
+      synchronized (this) {
+        currentLatch.countDown();
+        if (currentLatch.getCount() == 0) {
+          needResetLatch = true;
+          LOGGER.info(
+              "write loop[{}] finished. cost: {}ms. total rows: {}. total points: {}",
+              loopIndex,
+              (System.currentTimeMillis() - currentTimestamp),
+              totalRowNumber.get(),
+              (long) totalRowNumber.get() * SENSOR_NUMBER);
+        }
+      }
+      currentLatch.await();
+    }
+  }
+
+  private static class InsertWorker implements Runnable {
+    private SyncWriteSignal signal;
+    private int index;
+
+    protected InsertWorker(SyncWriteSignal signal, int index) {
+      this.signal = signal;
+      this.index = index;
+    }
+
+    @Override
+    public void run() {
+      for (int j = 0; j < WRITE_LOOP; j++) {
+        try {
+          signal.syncCountDownBeforeInsert();
+          int insertDeviceCount = insertRecords(index, signal.currentTimestamp);
+          totalRowNumber.addAndGet(insertDeviceCount);
+          signal.finishInsertAndWait(j);
+        } catch (Exception e) {
+          LOGGER.error("insert error. Thread: {}. Error:", index, e);
+        }
+      }
+      LOGGER.info("insert worker finished");
+    }
+  }
+
+  public static void main(String[] args) throws InterruptedException {
+    // Choose the SessionPool you going to use
+    constructRedirectSessionPool();
+
+    measurements = new ArrayList<>();
+    types = new ArrayList<>();
+    for (int i = 0; i < SENSOR_NUMBER; i++) {
+      measurements.add("s_" + i);
+      types.add(TSDataType.FLOAT);
+    }
+
+    Thread[] threads = new Thread[THREAD_NUMBER];
+
+    SyncWriteSignal signal = new SyncWriteSignal(THREAD_NUMBER);
+    for (int i = 0; i < THREAD_NUMBER; i++) {
+      threads[i] = new Thread(new InsertWorker(signal, i));
+    }
+
+    // count total execution time
+    r = new Random();
+    long startTime = System.currentTimeMillis();
+    Runtime.getRuntime()
+        .addShutdownHook(
+            new Thread(
+                () -> {
+                  sessionPool.close();
+                  System.out.println(System.currentTimeMillis() - startTime);
+                }));
+
+    // start write thread
+    for (Thread thread : threads) {
+      thread.start();
+    }
+
+    long startTime1 = System.nanoTime();
+    new Thread(
+        () -> {
+          while (true) {
+            try {
+              TimeUnit.MINUTES.sleep(1);
+            } catch (InterruptedException e) {
+              throw new RuntimeException(e);
+            }
+            long currentTime = System.nanoTime();
+            LOGGER.info(
+                "write rate: {} lines/minute",
+                totalRowNumber.get() / ((currentTime - startTime1) / 60_000_000_000L));
+          }
+        })
+        .start();
+  }
+
+  // more insert example, see SessionExample.java
+  private static int insertRecords(int threadIndex, long timestamp)
+      throws StatementExecutionException, IoTDBConnectionException {
+    List<String> deviceIds = new ArrayList<>();
+    List<Long> times = new ArrayList<>();
+    List<List<String>> measurementsList = new ArrayList<>();
+    List<List<TSDataType>> typesList = new ArrayList<>();
+    List<List<Object>> valuesList = new ArrayList<>();
+    int deviceCount = 0;
+    for (int j = threadIndex; j < DEVICE_NUMBER; j += THREAD_NUMBER) {
+      String deviceId = "root.test.g_0.d_" + j;
+      deviceIds.add(deviceId);
+      times.add(timestamp);
+      List<Object> values = new ArrayList<>();
+      for (int i = 0; i < SENSOR_NUMBER; i++) {
+        values.add(r.nextFloat());
+      }
+      valuesList.add(values);
+      measurementsList.add(measurements);
+      typesList.add(types);
+      deviceCount++;
+    }
+
+    sessionPool.insertAlignedRecords(deviceIds, times, measurementsList, typesList, valuesList);
+    return deviceCount;
+  }
+}