HBase ScannerTimeoutException


Joe Obernberger <joseph.o...@...>
 

Hi All - I'm using a loop to do a task on all vertices in fairly large graph (million+ nodes), and the operation that I'm doing takes some time. I'm getting a org.apache.hadoop.hbase.client.ScannerTimeoutException 20091230ms passed since the last invocation, timeout is currently set to 60000.

Is there a better way to loop through all vertices besides something like:
-------------------
JanusGraphTransaction vertTrans = graph.newTransaction();
Iterator<Vertex> vertices = vertTran.vertices();

while (vertices != null && vertices.hasNext()) {
//do stuff
}
------------------

?

Thank you!

-Joe