Re: Recommendations for bulk delete of edges
Ted Wilmes <twi...@...>
These are all good suggestions. Not sure if it would be feasible to recreate your db, but if it was, you may be able to use edge TTLs: http://docs.janusgraph.org/0.1.0-SNAPSHOT/advanced-schema.html. I haven't used them but you could set a 7 day TTL for the relevant edge label like this: mgmt = graph.openManagement() visits = mgmt.makeEdgeLabel('visits').make() mgmt.setTTL(visits, Duration.ofDays(7)) mgmt.commit() --Ted On Friday, March 17, 2017 at 7:51:34 AM UTC-5, Robert Dale wrote:
|
|