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/18 03:26:28 UTC

[iotdb] branch guonengtest updated: add Read Test

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 c7811f640e add Read Test
c7811f640e is described below

commit c7811f640e28281cff14ea6183648c57d4fcd49c
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Tue Apr 18 11:26:16 2023 +0800

    add Read Test
---
 .../src/main/java/org/apache/iotdb/ReadTest.java   | 272 +++++++++++++++++++++
 .../{SessionPoolExample.java => WriterTest.java}   |  60 +----
 2 files changed, 277 insertions(+), 55 deletions(-)

diff --git a/example/session/src/main/java/org/apache/iotdb/ReadTest.java b/example/session/src/main/java/org/apache/iotdb/ReadTest.java
new file mode 100644
index 0000000000..e0f7b6ffca
--- /dev/null
+++ b/example/session/src/main/java/org/apache/iotdb/ReadTest.java
@@ -0,0 +1,272 @@
+/*
+ * 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.isession.SessionDataSet.DataIterator;
+import org.apache.iotdb.isession.pool.SessionDataSetWrapper;
+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.atomic.AtomicInteger;
+
+public class ReadTest {
+
+  private static SessionPool sessionPool;
+
+  private static final Logger LOGGER = LoggerFactory.getLogger(ReadTest.class);
+
+  private static int THREAD_NUMBER = 100;
+
+  private static int DEVICE_NUMBER = 20000;
+
+  private static int SENSOR_NUMBER = 500;
+
+  private static int READ_LOOP = 10000000;
+
+  private static long LOOP_INTERVAL_IN_NS = 3_000_000_000L;
+
+  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("192.168.130.16:6667");
+    nodeUrls.add("192.168.130.17:6667");
+    nodeUrls.add("192.168.130.18:6667");
+    sessionPool =
+        new SessionPool.Builder()
+            .nodeUrls(nodeUrls)
+            .user("root")
+            .password("root")
+            .maxSize(500)
+            .build();
+    sessionPool.setFetchSize(10000);
+  }
+
+  private static class SyncReadSignal {
+    protected volatile boolean needResetLatch = true;
+    protected CountDownLatch latch;
+    protected long totalCost;
+    protected long currentTimestamp;
+    protected int count;
+    protected String queryName;
+
+    protected SyncReadSignal(int count, String queryName) {
+      this.count = count;
+      this.queryName = queryName;
+    }
+
+    protected void syncCountDownBeforeRead() {
+      if (needResetLatch) {
+        synchronized (this) {
+          if (needResetLatch) {
+            latch = new CountDownLatch(this.count);
+            needResetLatch = false;
+            totalCost = 0L;
+            currentTimestamp = System.nanoTime();
+          }
+        }
+      }
+    }
+
+    protected void finishRead(long cost) throws InterruptedException {
+      totalCost += cost;
+      synchronized (this) {
+        latch.countDown();
+        if (latch.getCount() == 0) {
+          needResetLatch = true;
+          long totalCost = (System.nanoTime() - currentTimestamp);
+          LOGGER.info(
+              String.format(
+                  "[%s] finished with %d thread. AVG COST: %.3fms. TOTAL COST: %.3fms",
+                  this.queryName,
+                  this.count,
+                  this.totalCost * 1.0 / this.count / 1_000_000,
+                  totalCost * 1.0 / 1_000_000));
+          if (totalCost < LOOP_INTERVAL_IN_NS) {
+            Thread.sleep((LOOP_INTERVAL_IN_NS - totalCost) / 1000_000);
+          }
+        }
+      }
+    }
+
+    protected void waitCurrentLoopFinished() throws InterruptedException {
+      latch.await();
+    }
+  }
+
+  public static void main(String[] args) throws InterruptedException {
+    // Choose the SessionPool you going to use
+    constructRedirectSessionPool();
+
+    r = new Random();
+
+    // Run last query
+    SyncReadSignal lastQuerySignal = new SyncReadSignal(THREAD_NUMBER, "Last Value Query");
+    Thread[] lastReadThreads = new Thread[THREAD_NUMBER];
+    for (int i = 0; i < THREAD_NUMBER; i++) {
+      lastReadThreads[i] =
+          new Thread(
+              new ReaderThread(lastQuerySignal) {
+                @Override
+                protected void executeQuery()
+                    throws IoTDBConnectionException, StatementExecutionException {
+                  queryLastValue();
+                }
+              });
+    }
+    for (Thread thread : lastReadThreads) {
+      thread.start();
+    }
+
+    // Run raw query
+    SyncReadSignal rawQuerySignal = new SyncReadSignal(THREAD_NUMBER, "Raw Value Query");
+    Thread[] rawReadThreads = new Thread[THREAD_NUMBER];
+    for (int i = 0; i < THREAD_NUMBER; i++) {
+      rawReadThreads[i] =
+          new Thread(
+              new ReaderThread(rawQuerySignal) {
+                @Override
+                protected void executeQuery()
+                    throws IoTDBConnectionException, StatementExecutionException {
+                  queryRawValue();
+                }
+              });
+    }
+    for (Thread thread : rawReadThreads) {
+      thread.start();
+    }
+
+    // Run avg query
+    SyncReadSignal avgQuerySignal = new SyncReadSignal(THREAD_NUMBER, "AVG Query GROUP BY 5min");
+    Thread[] avgReadThreads = new Thread[THREAD_NUMBER];
+    for (int i = 0; i < THREAD_NUMBER; i++) {
+      avgReadThreads[i] =
+          new Thread(
+              new ReaderThread(avgQuerySignal) {
+                @Override
+                protected void executeQuery()
+                    throws IoTDBConnectionException, StatementExecutionException {
+                  queryAvgValueGroupBy5Min();
+                }
+              });
+    }
+    for (Thread thread : avgReadThreads) {
+      thread.start();
+    }
+  }
+
+  private abstract static class ReaderThread implements Runnable {
+    private final SyncReadSignal signal;
+
+    protected ReaderThread(SyncReadSignal signal) {
+      this.signal = signal;
+    }
+
+    @Override
+    public void run() {
+      for (int i = 0; i < READ_LOOP; i++) {
+        try {
+          signal.syncCountDownBeforeRead();
+          long startTime = System.nanoTime();
+          executeQuery();
+          long cost = System.nanoTime() - startTime;
+          signal.finishRead(cost);
+          signal.waitCurrentLoopFinished();
+        } catch (InterruptedException | IoTDBConnectionException | StatementExecutionException e) {
+          throw new RuntimeException(e);
+        }
+      }
+    }
+
+    protected abstract void executeQuery()
+        throws IoTDBConnectionException, StatementExecutionException;
+  }
+
+  private static void queryLastValue()
+      throws IoTDBConnectionException, StatementExecutionException {
+    SessionDataSetWrapper wrapper = null;
+    int device = r.nextInt(DEVICE_NUMBER);
+    try {
+      String sql = "select last(s_1) from root.test.g_0.d_" + device;
+      wrapper = sessionPool.executeQueryStatement(sql);
+      // get DataIterator like JDBC
+      DataIterator dataIterator = wrapper.iterator();
+      while (dataIterator.next()) {
+        for (String columnName : wrapper.getColumnNames()) {
+          dataIterator.getString(columnName);
+        }
+      }
+    } finally {
+      // remember to close data set finally!
+      sessionPool.closeResultSet(wrapper);
+    }
+  }
+
+  private static void queryRawValue() throws IoTDBConnectionException, StatementExecutionException {
+    int device = r.nextInt(DEVICE_NUMBER);
+    String sql = String.format("select s_1 from root.test.g_0.d_%s limit 1 offset 10", device);
+    executeQuery(sql);
+  }
+
+  private static void queryAvgValueGroupBy5Min()
+      throws IoTDBConnectionException, StatementExecutionException {
+    int device = r.nextInt(DEVICE_NUMBER);
+    String sql =
+        String.format(
+            "select avg(s_1) from root.test.g_0.d_%s GROUP BY ([now()-1d, now()), 5m)", device);
+    executeQuery(sql);
+  }
+
+  private static void executeQuery(String sql)
+      throws IoTDBConnectionException, StatementExecutionException {
+    SessionDataSetWrapper wrapper = null;
+    try {
+      wrapper = sessionPool.executeQueryStatement(sql);
+      // get DataIterator like JDBC
+      DataIterator dataIterator = wrapper.iterator();
+      while (dataIterator.next()) {
+        for (String columnName : wrapper.getColumnNames()) {
+          dataIterator.getString(columnName);
+        }
+      }
+    } finally {
+      // remember to close data set finally!
+      sessionPool.closeResultSet(wrapper);
+    }
+  }
+}
diff --git a/example/session/src/main/java/org/apache/iotdb/SessionPoolExample.java b/example/session/src/main/java/org/apache/iotdb/WriterTest.java
similarity index 76%
rename from example/session/src/main/java/org/apache/iotdb/SessionPoolExample.java
rename to example/session/src/main/java/org/apache/iotdb/WriterTest.java
index 3b3cc85d01..b7fb52831c 100644
--- a/example/session/src/main/java/org/apache/iotdb/SessionPoolExample.java
+++ b/example/session/src/main/java/org/apache/iotdb/WriterTest.java
@@ -18,8 +18,6 @@
  */
 package org.apache.iotdb;
 
-import org.apache.iotdb.isession.SessionDataSet.DataIterator;
-import org.apache.iotdb.isession.pool.SessionDataSetWrapper;
 import org.apache.iotdb.rpc.IoTDBConnectionException;
 import org.apache.iotdb.rpc.StatementExecutionException;
 import org.apache.iotdb.session.pool.SessionPool;
@@ -35,11 +33,11 @@ import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
 
-public class SessionPoolExample {
+public class WriterTest {
 
   private static SessionPool sessionPool;
 
-  private static final Logger LOGGER = LoggerFactory.getLogger(SessionPoolExample.class);
+  private static final Logger LOGGER = LoggerFactory.getLogger(WriterTest.class);
 
   private static int THREAD_NUMBER = 300;
 
@@ -100,8 +98,9 @@ public class SessionPoolExample {
     }
 
     protected void finishInsert() {
-      if (latch.getCount() == 1) {
-        synchronized (this) {
+      synchronized (this) {
+        latch.countDown();
+        if (latch.getCount() == 0) {
           needResetLatch = true;
           LOGGER.info(
               "one loop finished. cost: {}ms. total rows: {}",
@@ -109,7 +108,6 @@ public class SessionPoolExample {
               totalRowNumber.get());
         }
       }
-      latch.countDown();
     }
 
     protected void waitCurrentLoopFinished() throws InterruptedException {
@@ -160,22 +158,6 @@ public class SessionPoolExample {
       threads[i] = new Thread(new InsertWorker(signal, i));
     }
 
-    // initialize read thread
-    Thread[] readThreads = new Thread[THREAD_NUMBER];
-    for (int i = 0; i < THREAD_NUMBER; i++) {
-      readThreads[i] =
-          new Thread(
-              () -> {
-                for (int j = 0; j < TOTAL_BATCH_COUNT_PER_DEVICE; j++) {
-                  try {
-                    queryByIterator();
-                  } catch (Exception e) {
-                    LOGGER.error("query error:", e);
-                  }
-                }
-              });
-    }
-
     // count total execution time
     r = new Random();
     long startTime = System.currentTimeMillis();
@@ -192,11 +174,6 @@ public class SessionPoolExample {
       thread.start();
     }
 
-    // start read
-    //    for (Thread thread : readThreads) {
-    //      thread.start();
-    //    }
-
     long startTime1 = System.nanoTime();
     new Thread(
             () -> {
@@ -241,31 +218,4 @@ public class SessionPoolExample {
     sessionPool.insertAlignedRecords(deviceIds, times, measurementsList, typesList, valuesList);
     return deviceCount;
   }
-
-  private static void queryByIterator()
-      throws IoTDBConnectionException, StatementExecutionException {
-    SessionDataSetWrapper wrapper = null;
-    int device = r.nextInt(DEVICE_NUMBER);
-    try {
-      long startTime = System.currentTimeMillis();
-      String sql = "select last(*) from root.test.g_0.d_" + device;
-      wrapper = sessionPool.executeQueryStatement(sql);
-      // get DataIterator like JDBC
-      DataIterator dataIterator = wrapper.iterator();
-      //              System.out.println(wrapper.getColumnNames());
-      //              System.out.println(wrapper.getColumnTypes());
-      while (dataIterator.next()) {
-        //                StringBuilder builder = new StringBuilder();
-        for (String columnName : wrapper.getColumnNames()) {
-          dataIterator.getString(columnName);
-        }
-        //                System.out.println(builder);
-      }
-      long cost = System.currentTimeMillis() - startTime;
-      LOGGER.info("Query data of d_" + device + "cost:" + cost + "ms");
-    } finally {
-      // remember to close data set finally!
-      sessionPool.closeResultSet(wrapper);
-    }
-  }
 }