How to drop properties in bulk #2650
-
I have a graph backed by Cassandra + ES, which contains 10+ million vertices. These vertices are grouped under 20 or so Vertex labels. I have created a composite index on a property that has the same value as the vertex label. In my case there are ~100k vertices matching the label, I would like to drop a property from these vertices. What would be the best way to do that? I tried these, however it times out.
Another option I can think of is to use What would be my best way to accomplish this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can use either |
Beta Was this translation helpful? Give feedback.
You can use either
FulgoraGraphComputer
,MapReduce
, orSpark
to get vertex ids and then drop them in batches. We do similar workload every day by using aMapReduce
job to scan the whole database and delete applicable ones within the same job.