|
Re: JanusGraph System Requirements
I think you need to qualify this a little better.
For example, 100GB data is relatively small. Would easily fit in a single AWS i3.large. But what's going to be your analytical load? How many queries
I think you need to qualify this a little better.
For example, 100GB data is relatively small. Would easily fit in a single AWS i3.large. But what's going to be your analytical load? How many queries
|
By
Peter Corless
·
#6011
·
|
|
Re: Cassandra crashing after dropping large graph. Error: Scanned over 100001 tombstones...
Next JanusGraph release will allow tuning Cassandra's gc_grace_seconds: https://github.com/JanusGraph/janusgraph/pull/2693
Next JanusGraph release will allow tuning Cassandra's gc_grace_seconds: https://github.com/JanusGraph/janusgraph/pull/2693
|
By
Clement de Groc
·
#6009
·
|
|
Re: Query failure due to cassandra backend tombstone exception #1675
Next JanusGraph release will allow tuning Cassandra's gc_grace_seconds: https://github.com/JanusGraph/janusgraph/pull/2693
Next JanusGraph release will allow tuning Cassandra's gc_grace_seconds: https://github.com/JanusGraph/janusgraph/pull/2693
|
By
Clement de Groc
·
#6008
·
|
|
Re: How to filter out step 3 vertex list based on step 1 vertex
Sounds good. Will check in the gremlin-users group. Thanks Boxuan!
Sounds good. Will check in the gremlin-users group. Thanks Boxuan!
|
By
Ronnie
·
#6007
·
|
|
JanusGraph System Requirements
Hello,
What would the system requirements for JanusGraph be with 100 GB of data?
Thanks
Hello,
What would the system requirements for JanusGraph be with 100 GB of data?
Thanks
|
By
csconnor257@...
·
#6006
·
|
|
Re: How to filter out step 3 vertex list based on step 1 vertex
That’s a great question! To be honest I am not sure about the reason. My assumption is the __.out("edgeCB").is("B") is an anonymous child traversal within where() step, and thus it has no access to
That’s a great question! To be honest I am not sure about the reason. My assumption is the __.out("edgeCB").is("B") is an anonymous child traversal within where() step, and thus it has no access to
|
By
Boxuan Li
·
#6005
·
|
|
Re: How to filter out step 3 vertex list based on step 1 vertex
Thanks Boxuan! I tried the single query and that worked accurately!
On the other hand, I am still trying to figure out why the where traversal e.g. where(__.out("edgeCB").is("B")) didnt work. Is it
Thanks Boxuan! I tried the single query and that worked accurately!
On the other hand, I am still trying to figure out why the where traversal e.g. where(__.out("edgeCB").is("B")) didnt work. Is it
|
By
Ronnie
·
#6004
·
|
|
Re: How to filter out step 3 vertex list based on step 1 vertex
Hi Ronnie,
Not sure if it's optimal but this should work:
g.V().hasLabel("VertexB").as("B").in("edgeAB").out("edgeAC").as("C").out("edgeCB").as("B2").where("B", eq("B2")).select("C")
You can also do
Hi Ronnie,
Not sure if it's optimal but this should work:
g.V().hasLabel("VertexB").as("B").in("edgeAB").out("edgeAC").as("C").out("edgeCB").as("B2").where("B", eq("B2")).select("C")
You can also do
|
By
Boxuan Li
·
#6003
·
|
|
Re: How to filter out step 3 vertex list based on step 1 vertex
Sorry the gremlin queries should be as
Sorry the gremlin queries should be as
|
By
Ronnie
·
#6002
·
|
|
How to filter out step 3 vertex list based on step 1 vertex
Hi,
Assuming following schema
VertexA--edgeAB-->VertexB
VertexA--edgeAC-->VertexC
VertexC--edgeCB-->VertexB
Traversal
step 1: start with VertexB,
step 2: traverse edgeAB to find connected VertexA,
Hi,
Assuming following schema
VertexA--edgeAB-->VertexB
VertexA--edgeAC-->VertexC
VertexC--edgeCB-->VertexB
Traversal
step 1: start with VertexB,
step 2: traverse edgeAB to find connected VertexA,
|
By
Ronnie
·
#6001
·
|
|
Re: Multiple or-steps are conflated when using the textRegex() predicate
Hi,
Thanks for the quick answer. That seems to be it. Hopefully the fix will be available soon.
Best regards,
Mladen Marović
Hi,
Thanks for the quick answer. That seems to be it. Hopefully the fix will be available soon.
Best regards,
Mladen Marović
|
By
Mladen Marović
·
#6000
·
|
|
Re: Multiple or-steps are conflated when using the textRegex() predicate
Hi,
Seems you are the victim of https://github.com/JanusGraph/janusgraph/issues/2231. There is an open PR to fix this: https://github.com/JanusGraph/janusgraph/pull/2567
Best,
Boxuan
Hi,
Seems you are the victim of https://github.com/JanusGraph/janusgraph/issues/2231. There is an open PR to fix this: https://github.com/JanusGraph/janusgraph/pull/2567
Best,
Boxuan
|
By
Boxuan Li
·
#5999
·
|
|
Multiple or-steps are conflated when using the textRegex() predicate
Hello!
I came upon some unexpected behavior when running queries with multiple or() steps and string searches on mixed indexes and would like some clarification if this is intended or not.
I have a
Hello!
I came upon some unexpected behavior when running queries with multiple or() steps and string searches on mixed indexes and would like some clarification if this is intended or not.
I have a
|
By
Mladen Marović
·
#5998
·
|
|
Re: Indexing on sub-attribute of custom data type
Hi Marc,
Thanks for confirming about "creating an associated vertex which defines this custom data type" approach. In which case i would not be experimenting custom data types for now. Thanks for the
Hi Marc,
Thanks for confirming about "creating an associated vertex which defines this custom data type" approach. In which case i would not be experimenting custom data types for now. Thanks for the
|
By
Ronnie
·
#5997
·
|
|
Re: Could not call index
At first I thought it might have something to do with 2 new indices I added yesterday, so I re-indexed them just in case. But the result is still the same.
I'm having a hard time what does the error
At first I thought it might have something to do with 2 new indices I added yesterday, so I re-indexed them just in case. But the result is still the same.
I'm having a hard time what does the error
|
By
schwartz@...
·
#5996
·
|
|
Re: Could not call index
This is all I have in Stackdriver. If there's a way to see more details logs from inside the container, please tell how to get them and I'll gladly post them here.
This is all I have in Stackdriver. If there's a way to see more details logs from inside the container, please tell how to get them and I'll gladly post them here.
|
By
schwartz@...
·
#5995
·
|
|
Re: Could not call index
Hi, is this the full stacktrace? Is there a nested exception?
Hi, is this the full stacktrace? Is there a nested exception?
|
By
Boxuan Li
·
#5994
·
|
|
Could not call index
Hi! Running JanusGraph 0.5.3 against BigTable, and ES is used as the Index backend.
For a particular traversal I'm seeing the error message below. No clue what this means and where to look for a
Hi! Running JanusGraph 0.5.3 against BigTable, and ES is used as the Index backend.
For a particular traversal I'm seeing the error message below. No clue what this means and where to look for a
|
By
schwartz@...
·
#5993
·
|
|
Re: Index stuck on INSTALLED (single instance of JanusGraph)
THANK YOU!!! :)
By
schwartz@...
·
#5992
·
|
|
Re: Index stuck on INSTALLED (single instance of JanusGraph)
I had a similar problem, how I solved it:
mgmt.getGraphIndex('my_index_name').getIndexStatus(mgmt.getPropertyKey("property_i_ised"))
==>INSTALLED graph.getOpenTransactions() - > showed me all the open
I had a similar problem, how I solved it:
mgmt.getGraphIndex('my_index_name').getIndexStatus(mgmt.getPropertyKey("property_i_ised"))
==>INSTALLED graph.getOpenTransactions() - > showed me all the open
|
By
sergeymetallic@...
·
#5991
·
Edited
|