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 07:57:48 UTC

[iotdb] branch guonengtest updated (62df174986 -> d718cc9b5d)

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

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


    from 62df174986 fix long overflow
     add e3839b652f change read thread to 100
     new d718cc9b5d change server ip

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.


Summary of changes:
 example/session/src/main/java/org/apache/iotdb/ReadTest.java   | 8 ++++----
 example/session/src/main/java/org/apache/iotdb/WriterTest.java | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)


[iotdb] 01/01: change server ip

Posted by xi...@apache.org.
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

commit d718cc9b5d505a6ec2b5b2c611a6752684b47cfc
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Tue Apr 18 14:26:34 2023 +0800

    change server ip
---
 example/session/src/main/java/org/apache/iotdb/ReadTest.java   | 6 +++---
 example/session/src/main/java/org/apache/iotdb/WriterTest.java | 6 +++---
 2 files changed, 6 insertions(+), 6 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
index 060bd49e14..33e2ef16f2 100644
--- a/example/session/src/main/java/org/apache/iotdb/ReadTest.java
+++ b/example/session/src/main/java/org/apache/iotdb/ReadTest.java
@@ -64,9 +64,9 @@ public class ReadTest {
   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");
+    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)
diff --git a/example/session/src/main/java/org/apache/iotdb/WriterTest.java b/example/session/src/main/java/org/apache/iotdb/WriterTest.java
index 9ee7bd2187..54d31a6545 100644
--- a/example/session/src/main/java/org/apache/iotdb/WriterTest.java
+++ b/example/session/src/main/java/org/apache/iotdb/WriterTest.java
@@ -61,9 +61,9 @@ public class WriterTest {
   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");
+    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)