|
Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hi Yingjie, See my earlier comment, with respect to janusgraph-0.6.2: >>My suggestion was incomplete. In addition to removing the log4j-1.2.17.jar file from the lib folder, you have to remove the slf4
Hi Yingjie, See my earlier comment, with respect to janusgraph-0.6.2: >>My suggestion was incomplete. In addition to removing the log4j-1.2.17.jar file from the lib folder, you have to remove the slf4
|
By
hadoopmarc@...
· #6656
·
|
|
Composite Indexing not working as expected for property on vertex in janusgraph 0.6.1
Hi Nikita, Can you please provide me with the complete steps to reproduce your issue? Preferably code lines that work in the Gremlin Console for the JanusGraph inmemory graph, including the schema and
Hi Nikita, Can you please provide me with the complete steps to reproduce your issue? Preferably code lines that work in the Gremlin Console for the JanusGraph inmemory graph, including the schema and
|
By
hadoopmarc@...
· #6653
·
|
|
Composite Indexing not working as expected for property on vertex in janusgraph 0.6.1
> Can the indexing work with property of single cardinality? Yes.
> Can the indexing work with property of single cardinality? Yes.
|
By
hadoopmarc@...
· #6651
·
|
|
Required Capacity Error - JanusGraph on Cassandra
Hi Joe, With "an index on type and range" you really mean: mgmt.buildIndex('byTypeAndRange', Vertex.class).addKey(type).addKey(range).buildCompositeIndex() Indeed, supernodes have little value in trav
Hi Joe, With "an index on type and range" you really mean: mgmt.buildIndex('byTypeAndRange', Vertex.class).addKey(type).addKey(range).buildCompositeIndex() Indeed, supernodes have little value in trav
|
By
hadoopmarc@...
· #6649
·
|
|
Composite Indexing not working as expected for property on vertex in janusgraph 0.6.1
Hi Nikita, Indeed, the janusgraph query optimizer can not handle the has("newid",unfold().is("hash data")) construct in the right way and the index does not trigger. But then, this construct is not ne
Hi Nikita, Indeed, the janusgraph query optimizer can not handle the has("newid",unfold().is("hash data")) construct in the right way and the index does not trigger. But then, this construct is not ne
|
By
hadoopmarc@...
· #6648
·
|
|
Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hi Yingjie, As edited in my previous reaction, the Cassandra jars in the JanusGraph distribution do not include the log4j jar. As to elasticsearch, your best choices are: not use mixed indices (check
Hi Yingjie, As edited in my previous reaction, the Cassandra jars in the JanusGraph distribution do not include the log4j jar. As to elasticsearch, your best choices are: not use mixed indices (check
|
By
hadoopmarc@...
· #6646
·
|
|
Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hi Yingjie, As to the short term workaround with removing the log4j jars, from the lib folder you can still use the gremlin console if you edit the ext/plugins.txt file and remove the lines with the h
Hi Yingjie, As to the short term workaround with removing the log4j jars, from the lib folder you can still use the gremlin console if you edit the ext/plugins.txt file and remove the lines with the h
|
By
hadoopmarc@...
· #6644
·
Edited
|
|
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 giv
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 giv
|
By
hadoopmarc@...
· #6634
·
|
|
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 val
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 val
|
By
hadoopmarc@...
· #6633
·
Edited
|
|
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
·
|
|
Connecting to server from java: can't lock berkeleyje
You can take a look at: https://docs.janusgraph.org/interactions/connecting/java/ Apparently, you used JanusGraphFactory, which opens an embedded JanusGraph instance in the client. If you want to clie
You can take a look at: https://docs.janusgraph.org/interactions/connecting/java/ Apparently, you used JanusGraphFactory, which opens an embedded JanusGraph instance in the client. If you want to clie
|
By
hadoopmarc@...
· #6618
·
|
|
Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hi Yingjie, My suggestion was incomplete. In addition to removing the log4j-1.2.17.jar file from the lib folder, you have to remove the slf4j-log4j12-1.7.30.jar file as well. Otherwise, JanusGraph ser
Hi Yingjie, My suggestion was incomplete. In addition to removing the log4j-1.2.17.jar file from the lib folder, you have to remove the slf4j-log4j12-1.7.30.jar file as well. Otherwise, JanusGraph ser
|
By
hadoopmarc@...
· #6615
·
|
|
Java Heap Space - Vertex.edges
Hi Joe, The section in the blog "When Predicate Pushdown Fails" shows that you definitely have to include the edge label, so: .inE('your-label') Best wishes, Marc
Hi Joe, The section in the blog "When Predicate Pushdown Fails" shows that you definitely have to include the edge label, so: .inE('your-label') Best wishes, Marc
|
By
hadoopmarc@...
· #6606
·
|
|
Java Heap Space - Vertex.edges
Hi Joe, Can you take a look at this blog from Boxuan Li: https://li-boxuan.medium.com/janusgraph-deep-dive-part-3-speed-up-edge-queries-3b9eb5ba34f8 In general, it is better to use the TinkerPop API s
Hi Joe, Can you take a look at this blog from Boxuan Li: https://li-boxuan.medium.com/janusgraph-deep-dive-part-3-speed-up-edge-queries-3b9eb5ba34f8 In general, it is better to use the TinkerPop API s
|
By
hadoopmarc@...
· #6603
·
|
|
berkeleyje and lucene NoSuchMethodError
Probably, janusgraph and tinkerpop versions got mixed up. If you use maven, can you show the janusgraph dependencies you used in the pom.xml (and tinkerpop if present in the pom.xml). Best wishes, Mar
Probably, janusgraph and tinkerpop versions got mixed up. If you use maven, can you show the janusgraph dependencies you used in the pom.xml (and tinkerpop if present in the pom.xml). Best wishes, Mar
|
By
hadoopmarc@...
· #6595
·
|
|
Janusgraph-full-0.6.1: how to fix "WARNING: Critical severity vulnerabilities were found with Log4j!"
Hi Yingjie, The JanusGraph and TinkerPop code only explicitly depend on slfj4j, so you can choose the logging implementation. you want You can simply remove the log4j-1.2.17.jar from the lib folder of
Hi Yingjie, The JanusGraph and TinkerPop code only explicitly depend on slfj4j, so you can choose the logging implementation. you want You can simply remove the log4j-1.2.17.jar from the lib folder of
|
By
hadoopmarc@...
· #6593
·
Edited
|
|
Incorrect result when lucene index is present
OK, I repeated the experiment and got "0 1" again, so I expand on what I did. I use the janusgraph-0.6.2 full binary distribution and start cassandra and elasticsearch with: $ bin/janusgraph.sh start
OK, I repeated the experiment and got "0 1" again, so I expand on what I did. I use the janusgraph-0.6.2 full binary distribution and start cassandra and elasticsearch with: $ bin/janusgraph.sh start
|
By
hadoopmarc@...
· #6587
·
Edited
|
|
Using ConfiguredGraphFactory from docker image
Thanks for bringing this up. Indeed, managing custom images is a barrier that you sometimes want to avoid. Can you give the runtime configuration of the standard image a try and report back where this
Thanks for bringing this up. Indeed, managing custom images is a barrier that you sometimes want to avoid. Can you give the runtime configuration of the standard image a try and report back where this
|
By
hadoopmarc@...
· #6584
·
Edited
|
|
Incorrect result when lucene index is present
Hi inverseintegral, You have been quite succesful as a test driver, that is detecting easily reproducible issues! The current issue seems more like an issue of undefined behaviour, rather than an issu
Hi inverseintegral, You have been quite succesful as a test driver, that is detecting easily reproducible issues! The current issue seems more like an issue of undefined behaviour, rather than an issu
|
By
hadoopmarc@...
· #6583
·
|
|
Lucene index inconsistency
I assume you reposted this inadvertenly? I saw you created issue https://github.com/JanusGraph/janusgraph/issues/3146 to document this inconvenience. Thanks, Marc
I assume you reposted this inadvertenly? I saw you created issue https://github.com/JanusGraph/janusgraph/issues/3146 to document this inconvenience. Thanks, Marc
|
By
hadoopmarc@...
· #6580
·
|