dynamic graphics, limits and global index
Hi Marc, just to be clear.
If I create Graph A and build an index on Vertex P via something like:
JanusGraphManagement mgmt = graph.openManagement();
PropertyKey propP = mgmt.getPropertyKey("propertyP"); // assume 'propertyP' has been created via makeProperty()
mgmt.buildIndex("byP", Vertex.class).addKey(propP).buildCompositeIndex();
and I create another Graph B and build the same index and I insert "Hello World" via
GraphA.V().addV().property("propertyP", "Hello World") and
GraphB.V().addV().property("propertyP", "Hello World")
There should be no conflict btwn the two graphs on propertyP correct? I assume not but something I want to be absolutely clear on. Also, are the limits on number of vertices (2^59?) and edges (2^60) per graph or per storage installation?
thx, matt
thx, matt
Adding to what I stated above about independent composite indices for separate graphs on the same storage backend, the issue turns out to more nuanced for mixed indices on an indexing bakend, see the recent question:
https://lists.lfaidata.foundation/g/janusgraph-users/topic/88879391
I though it useful to add it to this thread too.
Marc
PS Good to hear that JanusGraph can possibly support your usecase!
From: hadoopmarc@...
To: janusgraph-users@...
Sent: Sun, Feb 6, 2022 1:56 pm
Subject: Re: [janusgraph-users] dynamic graphics, limits and global index
Adding to what I stated above about independent composite indices for separate graphs on the same storage backend, the issue turns out to more nuanced for mixed indices on an indexing bakend, see the recent question:
https://lists.lfaidata.foundation/g/janusgraph-users/topic/88879391
I though it useful to add it to this thread too.
Marc
PS Good to hear that JanusGraph can possibly support your usecase!