Re: Indexing Strategies for RDF edges/predicates on Janusgraph
AMIYA KUMAR SAHOO
Hi Mathew, As per the below Note from Janusgraph docs, even if company is having 1k different types of edge related to it, traverse by edge lable will be fast. Such as find employees employedBy (edge lable) company. But if you have a high cardinality for a single edge type, then you have to manually create edge index on respective property. JanusGraph automatically builds vertex-centric indexes per edge label and property key. That means, even with thousands of incident battled edges, queries like g.V(h).out('mother') or g.V(h).values('age') are efficiently answered by the local index.Thanks, Amiya On Mon, 24 Jan 2022, 12:32 , <hadoopmarc@...> wrote: Hi Matthew, |
|