|
Re: Log4j Vulnerability for janusgraph
@ronnie i agree. Patch release would help. But we are not sure when that’s going to come. Do we have any other alternative?
@ronnie i agree. Patch release would help. But we are not sure when that’s going to come. Do we have any other alternative?
|
By
nidhi.vinaykiya27@...
·
#6493
·
|
|
Re: Log4j Vulnerability for janusgraph
Even the latest release janusgraph 0.6.1 used log4j 1.2.x . How were you able to fix it?
Even the latest release janusgraph 0.6.1 used log4j 1.2.x . How were you able to fix it?
|
By
nidhi.vinaykiya27@...
·
#6492
·
|
|
Re: Log4j Vulnerability for janusgraph
https://docs.janusgraph.org/master/changelog/#upgrade-of-log4j-to-version-2 - i see a fix for this in the upcoming 1.0.0 release, but it will be great of this can be available as a patch release
https://docs.janusgraph.org/master/changelog/#upgrade-of-log4j-to-version-2 - i see a fix for this in the upcoming 1.0.0 release, but it will be great of this can be available as a patch release
|
By
Ronnie
·
#6491
·
|
|
Re: Log4j Vulnerability for janusgraph
Hi Nidhi,
I have faced the same problem. Log4j previous versions have vulnerability and security threats. But the good part is those issues were addressed in latest versions. Using the latest version
Hi Nidhi,
I have faced the same problem. Log4j previous versions have vulnerability and security threats. But the good part is those issues were addressed in latest versions. Using the latest version
|
By
Vinayak Bali
·
#6490
·
|
|
Log4j Vulnerability for janusgraph
I am using Janusgraph 0.5.2. How can I get rid of log4j vulnerability that 1.2.x has? Will 0.5.2 support log4j 2.17.x [Maybe install the binary of log4j 2.17.x] ? Or do we have any other log4j
I am using Janusgraph 0.5.2. How can I get rid of log4j vulnerability that 1.2.x has? Will 0.5.2 support log4j 2.17.x [Maybe install the binary of log4j 2.17.x] ? Or do we have any other log4j
|
By
nidhi.vinaykiya27@...
·
#6489
·
|
|
Re: StackOverflowError
OK, you can try and increase the java stack size used by Gremlin Server:
$ export JAVA_OPTIONS='-Xss4m'
$ bin/janusgraph.sh start
https://www.baeldung.com/jvm-configure-stack-sizes
OK, you can try and increase the java stack size used by Gremlin Server:
$ export JAVA_OPTIONS='-Xss4m'
$ bin/janusgraph.sh start
https://www.baeldung.com/jvm-configure-stack-sizes
|
By
hadoopmarc@...
·
#6488
·
|
|
Re: StackOverflowError
Yes, it works for polygons up to ~70 points long
Yes, it works for polygons up to ~70 points long
|
By
dmitryzezix@...
·
#6487
·
|
|
Re: StackOverflowError
So, after interpolation, your string expressions looks like:
g.addV("place").property("location", Geoshape.geoshape(Geoshape.getShapeFactory().polygon().pointXY(42.5636137,
So, after interpolation, your string expressions looks like:
g.addV("place").property("location", Geoshape.geoshape(Geoshape.getShapeFactory().polygon().pointXY(42.5636137,
|
By
hadoopmarc@...
·
#6486
·
|
|
Re: StackOverflowError
Pythonfrom gremlin_python.driver import clientclient.submit("expression as a string")
Pythonfrom gremlin_python.driver import clientclient.submit("expression as a string")
|
By
dmitryzezix@...
·
#6485
·
|
|
Re: StackOverflowError
Your code does work in the Gremlin console::
gremlin> graph = JanusGraphFactory.open('conf/janusgraph-inmemory.properties')
==>standardjanusgraph[inmemory:[127.0.0.1]]
gremlin> g =
Your code does work in the Gremlin console::
gremlin> graph = JanusGraphFactory.open('conf/janusgraph-inmemory.properties')
==>standardjanusgraph[inmemory:[127.0.0.1]]
gremlin> g =
|
By
hadoopmarc@...
·
#6484
·
|
|
Re: Janusgraph evaluation/POC with large semiconductor measurement data advice needed
Hi Boxuan,
using values('name','parvalue’) instead of valueMap() works much faster. Using valueMap() i got some runs which takes 46s. Now it's about 800ms.
Thank you a lot.
Yes i think as well that
Hi Boxuan,
using values('name','parvalue’) instead of valueMap() works much faster. Using valueMap() i got some runs which takes 46s. Now it's about 800ms.
Thank you a lot.
Yes i think as well that
|
By
eric.neufeld@...
·
#6483
·
|
|
StackOverflowError
Trying to create a V with this data. Getting StackOverflowError. Are there any length limitations for geoshapes? What should I
Trying to create a V with this data. Getting StackOverflowError. Are there any length limitations for geoshapes? What should I
|
By
dmitryzezix@...
·
#6482
·
|
|
Re: Geo Mapping. How to index/query a non-point geo property?
Hi Marc,
I confirm, that this works:g.V().has("location", geoContains(Geoshape.point({lat}, {lon}))).elementMap()g.V().has("location", geoIntersect(Geoshape.circle({lat}, {lon},
Hi Marc,
I confirm, that this works:g.V().has("location", geoContains(Geoshape.point({lat}, {lon}))).elementMap()g.V().has("location", geoIntersect(Geoshape.circle({lat}, {lon},
|
By
dmitryzezix@...
·
#6481
·
|
|
Re: Janusgraph evaluation/POC with large semiconductor measurement data advice needed
Hi Eric,
Could you try the following query instead?
lots=g.V().hasLabel('Lot').has('name',"abc").out('lotFile').out('thxxFilePValue').values('name','parvalue’)
Make sure you also enable the
Hi Eric,
Could you try the following query instead?
lots=g.V().hasLabel('Lot').has('name',"abc").out('lotFile').out('thxxFilePValue').values('name','parvalue’)
Make sure you also enable the
|
By
Boxuan Li
·
#6480
·
|
|
Re: Janusgraph evaluation/POC with large semiconductor measurement data advice needed
I forgot:
In that example parvalue contains 5 double values (list property) for each parameter. Might be a bit confusing. However that PropertyMapStep is slow. When i put some similar data into e.g.
I forgot:
In that example parvalue contains 5 double values (list property) for each parameter. Might be a bit confusing. However that PropertyMapStep is slow. When i put some similar data into e.g.
|
By
eric.neufeld@...
·
#6479
·
|
|
Janusgraph evaluation/POC with large semiconductor measurement data advice needed
Hi all,
i am working on a proof of concept if Janusgraph could be used for measurement data in semiconductor industry. Now it's that point i need some advice. What i did was some comparisons
Hi all,
i am working on a proof of concept if Janusgraph could be used for measurement data in semiconductor industry. Now it's that point i need some advice. What i did was some comparisons
|
By
eric.neufeld@...
·
#6478
·
|
|
Re: Geo Mapping. How to index/query a non-point geo property?
Hi Dmytro,
Can you please present an easily reproducible scenario, preferably using the default "bin/janusgraph.sh start", like I showed, with gremlin console output and starting with an empty
Hi Dmytro,
Can you please present an easily reproducible scenario, preferably using the default "bin/janusgraph.sh start", like I showed, with gremlin console output and starting with an empty
|
By
hadoopmarc@...
·
#6477
·
|
|
Re: Geo Mapping. How to index/query a non-point geo property?
Hi Marc,
The same works for me as well. But it stops when the index is added. You can query only indexed points. Indexed shapes are not retrievable. Please, try to add index and query everything
Hi Marc,
The same works for me as well. But it stops when the index is added. You can query only indexed points. Indexed shapes are not retrievable. Please, try to add index and query everything
|
By
dmitryzezix@...
·
#6476
·
|
|
Re: Geo Mapping. How to index/query a non-point geo property?
Hi Dmitry,
Here you go again:
g.addV().property('location', Geoshape.line([[52, 0] as double[], [52, 2] as double[]]))
g.V().elementMap()
21:09:39 WARN
Hi Dmitry,
Here you go again:
g.addV().property('location', Geoshape.line([[52, 0] as double[], [52, 2] as double[]]))
g.V().elementMap()
21:09:39 WARN
|
By
hadoopmarc@...
·
#6475
·
Edited
|
|
Re: Geo Mapping. How to index/query a non-point geo property?
Hi, Marc!
This works. But I need to query complex geoshape, not point. I am able to query complex geoshape only if there is no index created. And after the index for property "location" created -
Hi, Marc!
This works. But I need to query complex geoshape, not point. I am able to query complex geoshape only if there is no index created. And after the index for property "location" created -
|
By
dmitryzezix@...
·
#6474
·
|