|
Re: Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Sorry I am not sure about that… Maybe Jan (CCed) could answer that?
Sorry I am not sure about that… Maybe Jan (CCed) could answer that?
|
By
Boxuan Li
·
#6640
·
|
|
Re: Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hello Boxuan,
Does it mean there is no existing release version for full install with this issue being fixed? Would it be possible to have a release with the fix as the code seems available?
The
Hello Boxuan,
Does it mean there is no existing release version for full install with this issue being fixed? Would it be possible to have a release with the fix as the code seems available?
The
|
By
Yingjie Li
·
#6639
·
|
|
Re: Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hi Yingjie,
You might need to backport https://github.com/JanusGraph/janusgraph/pull/2890 to 0.6 branch and build your own JanusGraph. You are also welcome to use the master branch to build
Hi Yingjie,
You might need to backport https://github.com/JanusGraph/janusgraph/pull/2890 to 0.6 branch and build your own JanusGraph. You are also welcome to use the master branch to build
|
By
Boxuan Li
·
#6638
·
|
|
Re: Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Just wondering if anybody has a fix for this? The security issue is a roadblock for us to continue using Janusgraph in our project.
Thanks
Just wondering if anybody has a fix for this? The security issue is a roadblock for us to continue using Janusgraph in our project.
Thanks
|
By
Yingjie Li
·
#6637
·
|
|
Re: Required Capacity Error - JanusGraph on Cassandra
Hi Marc - as usual you are on the right path. The number of edges on the nodes in question was very high, so doing any sort of query on it is slow. The query was timing out; not sure what
Hi Marc - as usual you are on the right path. The number of edges on the nodes in question was very high, so doing any sort of query on it is slow. The query was timing out; not sure what
|
By
Joe Obernberger
·
#6636
·
|
|
Re: Composite Indexing not working as expected for property on vertex in janusgraph 0.6.1
hi @hadoopmarc So the problem is :
"gremlin> g.V().has("newid","xyz").valueMap(true).tryNext().isPresent()"however it gives false.
- This one would have given true response . Also it does use index
hi @hadoopmarc So the problem is :
"gremlin> g.V().has("newid","xyz").valueMap(true).tryNext().isPresent()"however it gives false.
- This one would have given true response . Also it does use index
|
By
Nikita Pande
·
#6635
·
Edited
|
|
Re: Composite Indexing not working as expected for property on vertex in janusgraph 0.6.1
H Nikita,
Two questions:
Do I understand right that g.V().has("newid", "xyz").count().profile() gives and index warning while g.V().has("newid","xyz").valueMap(true).tryNext().isPresent() does not
H Nikita,
Two questions:
Do I understand right that g.V().has("newid", "xyz").count().profile() gives and index warning while g.V().has("newid","xyz").valueMap(true).tryNext().isPresent() does not
|
By
hadoopmarc@...
·
#6634
·
|
|
Re: Required Capacity Error - JanusGraph on Cassandra
Hi Joe,
I have no detailed knowledge of the JanusGraph backend code myself, but just a reaction for clarification (so that others see more hints to the cause of the issue):
Is it possible that the
Hi Joe,
I have no detailed knowledge of the JanusGraph backend code myself, but just a reaction for clarification (so that others see more hints to the cause of the issue):
Is it possible that the
|
By
hadoopmarc@...
·
#6633
·
Edited
|
|
Re: Composite Indexing not working as expected for property on vertex in janusgraph 0.6.1
gremlin> g.V().has("newid","xyz").valueMap(true).tryNext().isPresent()
==>false
gremlin> g.V().has("newid",unfold().is("hash data")).valueMap(true).tryNext().isPresent()
07:01:35 WARN
gremlin> g.V().has("newid","xyz").valueMap(true).tryNext().isPresent()
==>false
gremlin> g.V().has("newid",unfold().is("hash data")).valueMap(true).tryNext().isPresent()
07:01:35 WARN
|
By
Nikita Pande
·
#6632
·
Edited
|
|
Composite Indexing not working as expected for property on vertex in janusgraph 0.6.1
g.V().has("newid", "xyz").count().profile()
04:31:35 WARN org.janusgraph.graphdb.transaction.StandardJanusGraphTx - Query requires iterating over all vertices [(newid xyz)].
Even though the newid
g.V().has("newid", "xyz").count().profile()
04:31:35 WARN org.janusgraph.graphdb.transaction.StandardJanusGraphTx - Query requires iterating over all vertices [(newid xyz)].
Even though the newid
|
By
Nikita Pande
·
#6631
·
|
|
Required Capacity Error - JanusGraph on Cassandra
Hi all - I'm getting the following error when executing the following query:
List<Object> correlationIDsListSource = traversal.V().has("source", source).outE("correlation").has("type",
Hi all - I'm getting the following error when executing the following query:
List<Object> correlationIDsListSource = traversal.V().has("source", source).outE("correlation").has("type",
|
By
Joe Obernberger
·
#6630
·
|
|
Re: BigTable - large rows (more than 256MB)
> I've seen cases in the past, where queries relying on a mixed index fail while the index backend still hasn't caught up to the storage backend.
Yes that could happen. You can use
> I've seen cases in the past, where queries relying on a mixed index fail while the index backend still hasn't caught up to the storage backend.
Yes that could happen. You can use
|
By
Boxuan Li
·
#6629
·
|
|
Re: BigTable - large rows (more than 256MB)
That's a great post. This is exactly the use-case we have, with a type property.
Regarding the usage of mixed indexes -
- I'm less concerned with property updates in this case (as opposed to
That's a great post. This is exactly the use-case we have, with a type property.
Regarding the usage of mixed indexes -
- I'm less concerned with property updates in this case (as opposed to
|
By
schwartz@...
·
#6628
·
|
|
Re: BigTable - large rows (more than 256MB)
Hi Assaf,
I see. That makes sense and unfortunately, I don't have a perfect solution. I would suggest you use a mixed index instead.
Regarding the data model, you can take a look at a blog I wrote
Hi Assaf,
I see. That makes sense and unfortunately, I don't have a perfect solution. I would suggest you use a mixed index instead.
Regarding the data model, you can take a look at a blog I wrote
|
By
Boxuan Li
·
#6627
·
|
|
Re: BigTable - large rows (more than 256MB)
Hi Boxuan - thanks for the quick response!
I get a feeling that 2) might be the issue. Since JanusGraph has never allowed us to index labels, we ended up having a "shadow property" which is set as a
Hi Boxuan - thanks for the quick response!
I get a feeling that 2) might be the issue. Since JanusGraph has never allowed us to index labels, we ended up having a "shadow property" which is set as a
|
By
schwartz@...
·
#6626
·
|
|
Re: BigTable - large rows (more than 256MB)
Hi Assaf,
Having too many vertices with the same label shouldn't be a problem. The two most possible causes are:
1) You have a super node that has too many edges.
2) You have a composite index with
Hi Assaf,
Having too many vertices with the same label shouldn't be a problem. The two most possible causes are:
1) You have a super node that has too many edges.
2) You have a composite index with
|
By
Boxuan Li
·
#6625
·
|
|
BigTable - large rows (more than 256MB)
Hi!
We are using JG on top of Bigtable. While trying to understand some slow queries, I found the following in the Bigtable query vizualizer: "Large rows — Found 1 single key storing more than
Hi!
We are using JG on top of Bigtable. While trying to understand some slow queries, I found the following in the Bigtable query vizualizer: "Large rows — Found 1 single key storing more than
|
By
schwartz@...
·
#6624
·
|
|
Re: Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hello Marc,
Actually my previous testing was incomplete. After removing those two log4j related jar files from the lib directory, I can start elasticsearch, cassandra and Janusgraph server
Hello Marc,
Actually my previous testing was incomplete. After removing those two log4j related jar files from the lib directory, I can start elasticsearch, cassandra and Janusgraph server
|
By
Yingjie Li
·
#6623
·
|
|
Re: Connecting to server from java: can't lock berkeleyje
Apparently it replaces the full path to the properties file with a relative path (conf/remote-graph.properties), which isn't found, of course.
So, I've copied them and now I can connect.
Thanks.
Apparently it replaces the full path to the properties file with a relative path (conf/remote-graph.properties), which isn't found, of course.
So, I've copied them and now I can connect.
Thanks.
|
By
queshaw
·
#6622
·
|
|
Re: Connecting to server from java: can't lock berkeleyje
The stacktrace is not very helpful, unfortunately, but that is not your doing. The original example does not use an "ats" variable but instantiates g with a oneliner, but it hard to see why this could
The stacktrace is not very helpful, unfortunately, but that is not your doing. The original example does not use an "ats" variable but instantiates g with a oneliner, but it hard to see why this could
|
By
hadoopmarc@...
·
#6621
·
|