NebulaGraph Java Client  release-3.8
All Classes Functions Variables
StorageClient.java
1 /* Copyright (c) 2020 vesoft inc. All rights reserved.
2  *
3  * This source code is licensed under Apache 2.0 License.
4  */
5 
6 package com.vesoft.nebula.client.storage;
7 
8 import com.vesoft.nebula.HostAddr;
9 import com.vesoft.nebula.client.graph.data.HostAddress;
10 import com.vesoft.nebula.client.graph.data.SSLParam;
11 import com.vesoft.nebula.client.meta.MetaManager;
12 import com.vesoft.nebula.client.storage.scan.PartScanInfo;
13 import com.vesoft.nebula.client.storage.scan.ScanEdgeResultIterator;
14 import com.vesoft.nebula.client.storage.scan.ScanVertexResultIterator;
15 import com.vesoft.nebula.meta.ColumnDef;
16 import com.vesoft.nebula.meta.Schema;
17 import com.vesoft.nebula.storage.EdgeProp;
18 import com.vesoft.nebula.storage.ScanEdgeRequest;
19 import com.vesoft.nebula.storage.ScanVertexRequest;
20 import com.vesoft.nebula.storage.VertexProp;
21 import java.io.Serializable;
22 import java.util.ArrayList;
23 import java.util.Arrays;
24 import java.util.HashSet;
25 import java.util.List;
26 import java.util.Map;
27 import java.util.Set;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 
31 public class StorageClient implements Serializable {
32  private static final Logger LOGGER = LoggerFactory.getLogger(StorageClient.class);
33 
34  private final GraphStorageConnection connection;
35  private StorageConnPool pool;
36  private MetaManager metaManager;
37  private final List<HostAddress> addresses;
38  private int timeout = 10000; // ms
39  private int connectionRetry = 3;
40  private int executionRetry = 1;
41 
42  private boolean enableSSL = false;
43  private SSLParam sslParam = null;
44 
45  private String user = null;
46  private String password = null;
47 
48  private Map<String, String> storageAddressMapping = null;
49 
57  public StorageClient(String ip, int port) {
58  this(Arrays.asList(new HostAddress(ip, port)));
59  }
60 
67  public StorageClient(List<HostAddress> addresses) {
68  this.connection = new GraphStorageConnection();
69  this.addresses = addresses;
70  }
71 
79  public StorageClient(List<HostAddress> addresses, int timeout) {
80  this.connection = new GraphStorageConnection();
81  this.addresses = addresses;
82  this.timeout = timeout;
83  }
84 
89  public StorageClient(List<HostAddress> addresses, int timeout, int connectionRetry,
90  int executionRetry, boolean enableSSL, SSLParam sslParam) {
91  this(addresses, timeout);
92  this.connectionRetry = connectionRetry;
93  this.executionRetry = executionRetry;
94  this.enableSSL = enableSSL;
95  this.sslParam = sslParam;
96  if (enableSSL && sslParam == null) {
97  throw new IllegalArgumentException("SSL is enabled, but SSLParam is nul.");
98  }
99  }
100 
106  public boolean connect() throws Exception {
107  connection.open(addresses.get(0), timeout, enableSSL, sslParam);
108  StoragePoolConfig config = new StoragePoolConfig();
109  config.setEnableSSL(enableSSL);
110  config.setSslParam(sslParam);
111  pool = new StorageConnPool(config);
112  metaManager = new MetaManager(addresses, timeout, connectionRetry, executionRetry,
113  enableSSL, sslParam);
114  metaManager.addStorageAddrMapping(storageAddressMapping);
115  return true;
116  }
117 
118  public StorageClient setUser(String user) {
119  this.user = user;
120  return this;
121  }
122 
123  public StorageClient setPassword(String password) {
124  this.password = password;
125  return this;
126  }
127 
128 
139  public void setStorageAddressMapping(Map<String, String> storageAddressMapping) {
140  this.storageAddressMapping = storageAddressMapping;
141  if (this.metaManager != null) {
142  this.metaManager.addStorageAddrMapping(storageAddressMapping);
143  }
144  }
145 
146 
158  public ScanVertexResultIterator scanVertex(String spaceName, String tagName,
159  List<String> returnCols) {
160  return scanVertex(spaceName, tagName, returnCols, DEFAULT_LIMIT);
161  }
162 
175  public ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName,
176  List<String> returnCols) {
177  return scanVertex(spaceName, part, tagName, returnCols, DEFAULT_LIMIT);
178  }
179 
189  public ScanVertexResultIterator scanVertex(String spaceName, String tagName) {
190  return scanVertex(spaceName, tagName, DEFAULT_LIMIT);
191  }
192 
203  public ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName) {
204  return scanVertex(spaceName, part, tagName, DEFAULT_LIMIT);
205  }
206 
218  public ScanVertexResultIterator scanVertex(String spaceName,
219  String tagName,
220  List<String> returnCols,
221  int limit) {
222  return scanVertex(spaceName, tagName, returnCols, limit, DEFAULT_START_TIME,
223  DEFAULT_END_TIME);
224  }
225 
238  public ScanVertexResultIterator scanVertex(String spaceName,
239  int part,
240  String tagName,
241  List<String> returnCols,
242  int limit) {
243  return scanVertex(spaceName, part, tagName, returnCols, limit, DEFAULT_START_TIME,
244  DEFAULT_END_TIME);
245  }
246 
257  public ScanVertexResultIterator scanVertex(String spaceName,
258  String tagName,
259  int limit) {
260  return scanVertex(spaceName, tagName, limit, DEFAULT_START_TIME, DEFAULT_END_TIME);
261  }
262 
274  public ScanVertexResultIterator scanVertex(String spaceName,
275  int part,
276  String tagName,
277  int limit) {
278  return scanVertex(spaceName, part, tagName,
279  limit, DEFAULT_START_TIME, DEFAULT_END_TIME);
280  }
281 
297  public ScanVertexResultIterator scanVertex(String spaceName,
298  String tagName,
299  List<String> returnCols,
300  int limit,
301  long startTime,
302  long endTime) {
303  return scanVertex(spaceName, tagName, returnCols, limit, startTime, endTime,
304  DEFAULT_ALLOW_PART_SUCCESS, DEFAULT_ALLOW_READ_FOLLOWER);
305  }
306 
323  public ScanVertexResultIterator scanVertex(String spaceName,
324  int part,
325  String tagName,
326  List<String> returnCols,
327  int limit,
328  long startTime,
329  long endTime) {
330  return scanVertex(spaceName, part, tagName, returnCols, limit, startTime, endTime,
331  DEFAULT_ALLOW_PART_SUCCESS, DEFAULT_ALLOW_READ_FOLLOWER);
332  }
333 
348  public ScanVertexResultIterator scanVertex(String spaceName,
349  String tagName,
350  int limit,
351  long startTime,
352  long endTime) {
353  return scanVertex(spaceName, tagName, limit, startTime, endTime,
354  DEFAULT_ALLOW_PART_SUCCESS, DEFAULT_ALLOW_READ_FOLLOWER);
355  }
356 
371  public ScanVertexResultIterator scanVertex(String spaceName,
372  int part,
373  String tagName,
374  int limit,
375  long startTime,
376  long endTime) {
377  return scanVertex(spaceName,
378  part,
379  tagName,
380  new ArrayList<>(),
381  limit,
382  startTime,
383  endTime,
384  DEFAULT_ALLOW_PART_SUCCESS,
385  DEFAULT_ALLOW_READ_FOLLOWER);
386  }
387 
388 
410  public ScanVertexResultIterator scanVertex(String spaceName,
411  String tagName,
412  List<String> returnCols,
413  int limit,
414  long startTime,
415  long endTime,
416  boolean allowPartSuccess,
417  boolean allowReadFromFollower) {
418  List<Integer> parts = metaManager.getSpaceParts(spaceName);
419  if (parts.isEmpty()) {
420  throw new IllegalArgumentException("No valid part in space " + spaceName);
421  }
422  return scanVertex(
423  spaceName,
424  parts,
425  tagName,
426  returnCols,
427  false,
428  limit,
429  startTime,
430  endTime,
431  allowPartSuccess,
432  allowReadFromFollower);
433  }
434 
435 
458  public ScanVertexResultIterator scanVertex(String spaceName,
459  int part,
460  String tagName,
461  List<String> returnCols,
462  int limit,
463  long startTime,
464  long endTime,
465  boolean allowPartSuccess,
466  boolean allowReadFromFollower) {
467  return scanVertex(
468  spaceName,
469  Arrays.asList(part),
470  tagName,
471  returnCols,
472  false,
473  limit,
474  startTime,
475  endTime,
476  allowPartSuccess,
477  allowReadFromFollower);
478  }
479 
480 
501  public ScanVertexResultIterator scanVertex(String spaceName,
502  String tagName,
503  int limit,
504  long startTime,
505  long endTime,
506  boolean allowPartSuccess,
507  boolean allowReadFromFollower) {
508  List<Integer> parts = metaManager.getSpaceParts(spaceName);
509  if (parts.isEmpty()) {
510  throw new IllegalArgumentException("No valid part in space " + spaceName);
511  }
512  return scanVertex(
513  spaceName,
514  parts,
515  tagName,
516  new ArrayList<>(),
517  true,
518  limit,
519  startTime,
520  endTime,
521  allowPartSuccess,
522  allowReadFromFollower);
523  }
524 
545  public ScanVertexResultIterator scanVertex(String spaceName,
546  int part,
547  String tagName,
548  int limit,
549  long startTime,
550  long endTime,
551  boolean allowPartSuccess,
552  boolean allowReadFromFollower) {
553  return scanVertex(
554  spaceName,
555  Arrays.asList(part),
556  tagName,
557  new ArrayList<>(),
558  true,
559  limit,
560  startTime,
561  endTime,
562  allowPartSuccess,
563  allowReadFromFollower);
564  }
565 
566  private ScanVertexResultIterator scanVertex(String spaceName,
567  List<Integer> parts,
568  String tagName,
569  List<String> returnCols,
570  boolean noColumns,
571  int limit,
572  long startTime,
573  long endTime,
574  boolean allowPartSuccess,
575  boolean allowReadFromFollower) {
576  if (spaceName == null || spaceName.trim().isEmpty()) {
577  throw new IllegalArgumentException("space name is empty.");
578  }
579  if (tagName == null || tagName.trim().isEmpty()) {
580  throw new IllegalArgumentException("tag name is empty");
581  }
582  if (noColumns && returnCols == null) {
583  throw new IllegalArgumentException("returnCols is null");
584  }
585 
586  Set<PartScanInfo> partScanInfoSet = new HashSet<>();
587  for (int part : parts) {
588  HostAddr leader = metaManager.getLeader(spaceName, part);
589  partScanInfoSet.add(new PartScanInfo(part, new HostAddress(leader.getHost(),
590  leader.getPort())));
591  }
592  List<HostAddress> addrs = new ArrayList<>();
593  for (HostAddr addr : metaManager.listHosts()) {
594  addrs.add(new HostAddress(addr.getHost(), addr.getPort()));
595  }
596 
597  long tag = metaManager.getTag(spaceName, tagName).getTag_id();
598  List<byte[]> props = new ArrayList<>();
599  props.add("_vid".getBytes());
600  if (!noColumns) {
601  if (returnCols.size() == 0) {
602  Schema schema = metaManager.getTag(spaceName, tagName).getSchema();
603  for (ColumnDef columnDef : schema.getColumns()) {
604  props.add(columnDef.getName());
605  }
606  } else {
607  for (String prop : returnCols) {
608  props.add(prop.getBytes());
609  }
610  }
611  }
612  VertexProp vertexCols = new VertexProp((int) tag, props);
613  List<VertexProp> vertexProps = Arrays.asList(vertexCols);
614  ScanVertexRequest request = new ScanVertexRequest();
615  request
616  .setSpace_id(getSpaceId(spaceName))
617  .setReturn_columns(vertexProps)
618  .setLimit(limit)
619  .setStart_time(startTime)
620  .setEnd_time(endTime)
621  .setEnable_read_from_follower(allowReadFromFollower);
622 
623  return doScanVertex(spaceName, tagName, partScanInfoSet, request, addrs, allowPartSuccess);
624  }
625 
626 
638  private ScanVertexResultIterator doScanVertex(String spaceName,
639  String tagName,
640  Set<PartScanInfo> partScanInfoSet,
641  ScanVertexRequest request,
642  List<HostAddress> addrs,
643  boolean allowPartSuccess) {
644  if (addrs == null || addrs.isEmpty()) {
645  throw new IllegalArgumentException("storage hosts is empty.");
646  }
647 
648  return new ScanVertexResultIterator.ScanVertexResultBuilder()
649  .withMetaClient(metaManager)
650  .withPool(pool)
651  .withPartScanInfo(partScanInfoSet)
652  .withRequest(request)
653  .withAddresses(addrs)
654  .withSpaceName(spaceName)
655  .withTagName(tagName)
656  .withPartSuccess(allowPartSuccess)
657  .withUser(user)
658  .withPassword(password)
659  .withStorageAddressMapping(storageAddressMapping)
660  .build();
661  }
662 
663 
674  public ScanEdgeResultIterator scanEdge(String spaceName, String edgeName,
675  List<String> returnCols) {
676 
677  return scanEdge(spaceName, edgeName, returnCols, DEFAULT_LIMIT);
678  }
679 
691  public ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName,
692  List<String> returnCols) {
693 
694  return scanEdge(spaceName, part, edgeName, returnCols, DEFAULT_LIMIT);
695  }
696 
706  public ScanEdgeResultIterator scanEdge(String spaceName, String edgeName) {
707  return scanEdge(spaceName, edgeName, DEFAULT_LIMIT);
708  }
709 
720  public ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName) {
721  return scanEdge(spaceName, part, edgeName, DEFAULT_LIMIT);
722  }
723 
736  public ScanEdgeResultIterator scanEdge(String spaceName, String edgeName,
737  List<String> returnCols, int limit) {
738  return scanEdge(spaceName, edgeName, returnCols, limit, DEFAULT_START_TIME,
739  DEFAULT_END_TIME);
740  }
741 
754  public ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName,
755  List<String> returnCols, int limit) {
756  return scanEdge(spaceName, part, edgeName, returnCols, limit, DEFAULT_START_TIME,
757  DEFAULT_END_TIME);
758  }
759 
771  public ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, int limit) {
772  return scanEdge(spaceName, edgeName, limit, DEFAULT_START_TIME, DEFAULT_END_TIME);
773  }
774 
787  public ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, int limit) {
788  return scanEdge(spaceName, part, edgeName, limit, DEFAULT_START_TIME, DEFAULT_END_TIME);
789  }
790 
803  public ScanEdgeResultIterator scanEdge(String spaceName,
804  String edgeName,
805  List<String> returnCols,
806  int limit,
807  long startTime,
808  long endTime) {
809  return scanEdge(spaceName, edgeName, returnCols, limit, startTime, endTime,
810  DEFAULT_ALLOW_PART_SUCCESS, DEFAULT_ALLOW_READ_FOLLOWER);
811  }
812 
830  public ScanEdgeResultIterator scanEdge(String spaceName,
831  int part,
832  String edgeName,
833  List<String> returnCols,
834  int limit,
835  long startTime,
836  long endTime) {
837  return scanEdge(spaceName, part, edgeName, returnCols, limit, startTime, endTime,
838  DEFAULT_ALLOW_PART_SUCCESS, DEFAULT_ALLOW_READ_FOLLOWER);
839  }
840 
856  public ScanEdgeResultIterator scanEdge(String spaceName,
857  String edgeName,
858  int limit,
859  long startTime,
860  long endTime) {
861  return scanEdge(spaceName, edgeName, limit, startTime, endTime,
862  DEFAULT_ALLOW_PART_SUCCESS, DEFAULT_ALLOW_READ_FOLLOWER);
863  }
864 
881  public ScanEdgeResultIterator scanEdge(String spaceName,
882  int part,
883  String edgeName,
884  int limit,
885  long startTime,
886  long endTime) {
887  return scanEdge(spaceName, part, edgeName, limit, startTime, endTime,
888  DEFAULT_ALLOW_PART_SUCCESS, DEFAULT_ALLOW_READ_FOLLOWER);
889  }
890 
891 
910  public ScanEdgeResultIterator scanEdge(String spaceName,
911  String edgeName,
912  List<String> returnCols,
913  int limit,
914  long startTime,
915  long endTime,
916  boolean allowPartSuccess,
917  boolean allowReadFromFollower) {
918 
919  List<Integer> parts = metaManager.getSpaceParts(spaceName);
920  if (parts.isEmpty()) {
921  throw new IllegalArgumentException("No valid part in space " + spaceName);
922  }
923 
924  return scanEdge(spaceName, parts, edgeName, returnCols, false,
925  limit, startTime, endTime, allowPartSuccess, allowReadFromFollower);
926  }
927 
947  public ScanEdgeResultIterator scanEdge(String spaceName,
948  int part,
949  String edgeName,
950  List<String> returnCols,
951  int limit,
952  long startTime,
953  long endTime,
954  boolean allowPartSuccess,
955  boolean allowReadFromFollower) {
956  return scanEdge(spaceName, Arrays.asList(part), edgeName, returnCols, false,
957  limit, startTime, endTime, allowPartSuccess, allowReadFromFollower);
958  }
959 
960 
979  public ScanEdgeResultIterator scanEdge(String spaceName,
980  String edgeName,
981  int limit,
982  long startTime,
983  long endTime,
984  boolean allowPartSuccess,
985  boolean allowReadFromFollower) {
986 
987  List<Integer> parts = metaManager.getSpaceParts(spaceName);
988  if (parts.isEmpty()) {
989  throw new IllegalArgumentException("No valid part in space " + spaceName);
990  }
991  return scanEdge(spaceName, parts, edgeName, new ArrayList<>(), true,
992  limit, startTime, endTime, allowPartSuccess, allowReadFromFollower);
993  }
994 
995 
1015  public ScanEdgeResultIterator scanEdge(String spaceName,
1016  int part,
1017  String edgeName,
1018  int limit,
1019  long startTime,
1020  long endTime,
1021  boolean allowPartSuccess,
1022  boolean allowReadFromFollower) {
1023  return scanEdge(spaceName, Arrays.asList(part), edgeName, new ArrayList<>(), true,
1024  limit, startTime, endTime, allowPartSuccess, allowReadFromFollower);
1025  }
1026 
1027 
1028  private ScanEdgeResultIterator scanEdge(String spaceName,
1029  List<Integer> parts,
1030  String edgeName,
1031  List<String> returnCols,
1032  boolean noColumns,
1033  int limit,
1034  long startTime,
1035  long endTime,
1036  boolean allowPartSuccess,
1037  boolean allowReadFromFollower) {
1038  if (spaceName == null || spaceName.trim().isEmpty()) {
1039  throw new IllegalArgumentException("space name is empty.");
1040  }
1041  if (edgeName == null || edgeName.trim().isEmpty()) {
1042  throw new IllegalArgumentException("edge name is empty");
1043  }
1044  if (noColumns && returnCols == null) {
1045  throw new IllegalArgumentException("returnCols is null");
1046  }
1047 
1048  Set<PartScanInfo> partScanInfoSet = new HashSet<>();
1049  for (int part : parts) {
1050  HostAddr leader = metaManager.getLeader(spaceName, part);
1051  partScanInfoSet.add(new PartScanInfo(part, new HostAddress(leader.getHost(),
1052  leader.getPort())));
1053  }
1054  List<HostAddress> addrs = new ArrayList<>();
1055  for (HostAddr addr : metaManager.listHosts()) {
1056  addrs.add(new HostAddress(addr.getHost(), addr.getPort()));
1057  }
1058  List<byte[]> props = new ArrayList<>();
1059  props.add("_src".getBytes());
1060  props.add("_dst".getBytes());
1061  props.add("_rank".getBytes());
1062  if (!noColumns) {
1063  if (returnCols.size() == 0) {
1064  Schema schema = metaManager.getEdge(spaceName, edgeName).getSchema();
1065  for (ColumnDef columnDef : schema.getColumns()) {
1066  props.add(columnDef.name);
1067  }
1068  } else {
1069  for (String prop : returnCols) {
1070  props.add(prop.getBytes());
1071  }
1072  }
1073  }
1074 
1075  long edgeId = getEdgeId(spaceName, edgeName);
1076  EdgeProp edgeCols = new EdgeProp((int) edgeId, props);
1077  List<EdgeProp> edgeProps = Arrays.asList(edgeCols);
1078 
1079  ScanEdgeRequest request = new ScanEdgeRequest();
1080  request
1081  .setSpace_id(getSpaceId(spaceName))
1082  .setReturn_columns(edgeProps)
1083  .setLimit(limit)
1084  .setStart_time(startTime)
1085  .setEnd_time(endTime)
1086  .setEnable_read_from_follower(allowReadFromFollower);
1087 
1088  return doScanEdge(spaceName, edgeName, partScanInfoSet, request, addrs, allowPartSuccess);
1089  }
1090 
1091 
1103  private ScanEdgeResultIterator doScanEdge(String spaceName,
1104  String edgeName,
1105  Set<PartScanInfo> partScanInfoSet,
1106  ScanEdgeRequest request,
1107  List<HostAddress> addrs,
1108  boolean allowPartSuccess) {
1109  if (addrs == null || addrs.isEmpty()) {
1110  throw new IllegalArgumentException("storage hosts is empty.");
1111  }
1112 
1113  return new ScanEdgeResultIterator.ScanEdgeResultBuilder()
1114  .withMetaClient(metaManager)
1115  .withPool(pool)
1116  .withPartScanInfo(partScanInfoSet)
1117  .withRequest(request)
1118  .withAddresses(addrs)
1119  .withSpaceName(spaceName)
1120  .withEdgeName(edgeName)
1121  .withPartSuccess(allowPartSuccess)
1122  .withUser(user)
1123  .withPassword(password)
1124  .build();
1125  }
1126 
1127 
1131  public void close() {
1132  if (pool != null) {
1133  pool.close();
1134  }
1135  if (connection != null) {
1136  connection.close();
1137  }
1138  if (metaManager != null) {
1139  metaManager.close();
1140  }
1141  }
1142 
1143 
1150  return this.connection;
1151  }
1152 
1153 
1160  private int getSpaceId(String spaceName) {
1161  return metaManager.getSpaceId(spaceName);
1162  }
1163 
1171  private long getEdgeId(String spaceName, String edgeName) {
1172  return metaManager.getEdge(spaceName, edgeName).getEdge_type();
1173  }
1174 
1175  private static final int DEFAULT_LIMIT = 1000;
1176  private static final long DEFAULT_START_TIME = 0;
1177  private static final long DEFAULT_END_TIME = Long.MAX_VALUE;
1178  private static final boolean DEFAULT_ALLOW_PART_SUCCESS = false;
1179  private static final boolean DEFAULT_ALLOW_READ_FOLLOWER = false;
1180 }
MetaManager is a manager for meta info, such as spaces,tags and edges.
Set< HostAddr > listHosts()
get all storage addresses
EdgeItem getEdge(String spaceName, String edgeName)
get Edge
int getSpaceId(String spaceName)
get space id
TagItem getTag(String spaceName, String tagName)
get tag
void addStorageAddrMapping(String sourceAddr, String targetAddr)
Add address mapping for storage.Used for change address of storage read from meta server.
List< Integer > getSpaceParts(String spaceName)
get all parts of one space
HostAddr getLeader(String spaceName, int part)
get part leader
ScanVertexResultIterator scanVertex(String spaceName, String tagName, List< String > returnCols)
scan vertex of all parts with specific return cols, if returnCols is an empty list,...
StorageClient(List< HostAddress > addresses, int timeout)
Get a Nebula Storage client that executes the scan query to get NebulaGraph's data with multi servers...
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, List< String > returnCols)
scan edge of specific part with return cols.
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName, List< String > returnCols, int limit)
scan vertex of specific part with specific return cols and limit.
ScanVertexResultIterator scanVertex(String spaceName, String tagName)
scan vertex of all parts with no return cols.
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, int limit, long startTime, long endTime)
scan edge of specific part with no return cols and limit, start time, end time config.
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, List< String > returnCols, int limit)
scan edge of specific part with return cols.
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName, List< String > returnCols)
scan vertex of specific part with specific return cols, if returnCols is an empty list,...
GraphStorageConnection getConnection()
return client's connection session
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, List< String > returnCols, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan edge of all parts with return cols and limit, start time, end time, if allow partial success,...
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName, List< String > returnCols, int limit, long startTime, long endTime)
scan vertex of specific part with specific returnCols, limit, startTime and endTime.
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName)
scan edge of all parts with no return cols.
ScanVertexResultIterator scanVertex(String spaceName, String tagName, List< String > returnCols, int limit, long startTime, long endTime)
scan vertex of all parts with specific returnCols, limit, startTime and endTime.
boolean connect()
Connect to Nebula Storage server.
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, List< String > returnCols)
scan edge of all parts with return cols.
StorageClient(List< HostAddress > addresses)
Get a Nebula Storage client that executes the scan query to get NebulaGraph's data with multi servers...
StorageClient(String ip, int port)
Get a Nebula Storage client that executes the scan query to get NebulaGraph's data with one server ho...
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName)
scan edge of specific part with no return cols.
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName)
scan vertex of specific part with no return cols.
ScanVertexResultIterator scanVertex(String spaceName, String tagName, int limit)
scan vertex of all parts with no return cols and limit.
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, int limit)
scan edge of specific part with no return cols and limit config.
ScanVertexResultIterator scanVertex(String spaceName, String tagName, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan vertex of all parts with no return cols, limit, startTime, endTime, whether allow partial succes...
ScanVertexResultIterator scanVertex(String spaceName, String tagName, List< String > returnCols, int limit)
scan vertex of all parts with specific return cols and limit.
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, int limit, long startTime, long endTime)
scan edge of all parts with no return cols and limit, start time, end time config.
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, List< String > returnCols, int limit, long startTime, long endTime)
scan edge of all parts with return cols and limit, start time, end time config.
ScanVertexResultIterator scanVertex(String spaceName, String tagName, int limit, long startTime, long endTime)
scan vertex of all parts with no returnCols, limit, startTime and endTime.
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, List< String > returnCols, int limit, long startTime, long endTime)
scan edge of specific part with return cols and limit, start time, end time config.
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName, int limit, long startTime, long endTime)
scan vertex of specific part with no returnCols, limit, startTime and endTime.
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, List< String > returnCols, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan edge of specific part with return cols and limit, start time, end time, if allow partial success...
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, List< String > returnCols, int limit)
scan edge of all parts with return cols and limit config.
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName, int limit)
scan vertex of specific part with no return cols and limit.
void setStorageAddressMapping(Map< String, String > storageAddressMapping)
The storage address translation relationship is set to convert the storage address that cannot be obt...
ScanEdgeResultIterator scanEdge(String spaceName, int part, String edgeName, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan edge of specific part with no return cols and limit, start time, end time, if allow partial succ...
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan vertex of specific part with no return cols, limit, startTime, endTime, whether allow partial su...
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan edge of all parts with no return cols and limit, start time, end time, if allow partial success,...
ScanVertexResultIterator scanVertex(String spaceName, String tagName, List< String > returnCols, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan vertex of all parts with specific return cols, limit, startTime, endTime, whether allow partial ...
ScanVertexResultIterator scanVertex(String spaceName, int part, String tagName, List< String > returnCols, int limit, long startTime, long endTime, boolean allowPartSuccess, boolean allowReadFromFollower)
scan vertex of specific part with specific return cols, limit, startTime, endTime, whether allow part...
StorageClient(List< HostAddress > addresses, int timeout, int connectionRetry, int executionRetry, boolean enableSSL, SSLParam sslParam)
Get a Nebula Storage client that executes the scan query to get NebulaGraph's data with multi servers...
ScanEdgeResultIterator scanEdge(String spaceName, String edgeName, int limit)
scan edge of all parts with no return cols and limit config.