com.vesoft.nebula.driver.graph.scan.ScanNodeResultIterator Maven / Gradle / Ivy
The newest version!
package com.vesoft.nebula.driver.graph.scan;
import com.vesoft.nebula.driver.graph.data.HostAddress;
import com.vesoft.nebula.driver.graph.data.ResultSet;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.concurrent.CountDownLatch;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ScanNodeResultIterator extends ScanResultIterator {
private static final Logger logger = LoggerFactory.getLogger(ScanNodeResultIterator.class);
private static final String SCAN_NODE_TEMPLATE =
"USE %s CALL cursor_node_scan(\"%s\",\"%s\",%s,%d,\"%s\", %d) return *";
public ScanNodeResultIterator(String graphName,
String label,
List propNames,
List parts,
int batchSize,
int parallel,
List servers,
String userName,
Map authOptions,
long requestTimeout) {
super(graphName, label, propNames, parts, batchSize,
parallel, servers, userName, authOptions, requestTimeout);
}
public ScanNodeResult next() {
if (!hasNext) {
throw new NoSuchElementException("iterator has no more data");
}
final List results =
Collections.synchronizedList(new ArrayList<>(partCursor.size()));
List exceptions =
Collections.synchronizedList(new ArrayList<>(partCursor.size()));
CountDownLatch countDownLatch = new CountDownLatch(partCursor.size());
for (Map.Entry partCur : partCursor.entrySet()) {
threadPool.submit(() -> {
try {
ResultSet result = scan(SCAN_NODE_TEMPLATE, partCur);
// collect results and update the cursor
if (result.isSucceeded()) {
String cursor = getCursor(result);
partCursor.put(partCur.getKey(), cursor);
results.add(result);
} else {
logger.error(String.format("Scan part %d of node %s failed for %s, "
+ "scan again in the next next()",
partCur.getKey(),
labelName,
result.getErrorMessage()));
exceptions.add(new Exception(String.format("part %d of %s scan error: ",
partCur.getKey(), labelName, result.getErrorMessage())));
}
} catch (Exception e) {
logger.error(String.format("Scan node error for %s", e.getMessage()), e);
exceptions.add(new Exception(String.format("part %d of %s scan failed: %s",
partCur.getKey(), labelName, e.getMessage()), e));
} finally {
countDownLatch.countDown();
}
});
}
try {
countDownLatch.await();
} catch (InterruptedException interruptedException) {
logger.error("scan interrupted:", interruptedException);
throw new RuntimeException("scan interrupted", interruptedException);
}
// As long as one part fails, the current iteration is considered as failed.
if (!exceptions.isEmpty()) {
List exceptionMsg = new ArrayList<>();
for (Exception e : exceptions) {
exceptionMsg.add(e.getMessage());
}
throw new RuntimeException("scan node failed for current iterator: " + exceptionMsg);
}
hasNext = false;
List partKeyNeedToRemove = new ArrayList<>();
for (Map.Entry partCur : partCursor.entrySet()) {
if (!"".equals(partCur.getValue())) {
hasNext = true;
break;
} else {
partKeyNeedToRemove.add(partCur.getKey());
}
}
for (Integer part : partKeyNeedToRemove) {
partCursor.remove(part);
}
if (!hasNext && !threadPool.isShutdown()) {
threadPool.shutdown();
}
return new ScanNodeResult(results, propNames);
}
}