Skip to content

Commit

Permalink
support nodeurls in session mode
Browse files Browse the repository at this point in the history
  • Loading branch information
JackieTien97 committed Oct 18, 2023
1 parent 3d60fe0 commit 80e1b98
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import cn.edu.tsinghua.iot.benchmark.tsdb.TsdbException;
import org.slf4j.LoggerFactory;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Executors;

Expand Down Expand Up @@ -159,11 +160,14 @@ public SessionDataSet.DataIterator iterator() {
public IoTDBSession(DBConfig dbConfig) {
super(dbConfig);
LOGGER = LoggerFactory.getLogger(IoTDBSession.class);
List<String> hostUrls = new ArrayList<>(dbConfig.getHOST().size());
for (int i = 0; i < dbConfig.getHOST().size(); i++) {
hostUrls.add(dbConfig.getHOST().get(i) + ":" + dbConfig.getPORT().get(i));
}
sessionWrapper =
new BenchmarkSession(
new Session.Builder()
.host(dbConfig.getHOST().get(0))
.port(Integer.parseInt(dbConfig.getPORT().get(0)))
.nodeUrls(hostUrls)
.username(dbConfig.getUSERNAME())
.password(dbConfig.getPASSWORD())
.enableRedirection(true)
Expand Down

0 comments on commit 80e1b98

Please sign in to comment.