|
Re: Janusgraph 0.6.0
Thanks. I opened the PR here: https://github.com/JanusGraph/janusgraph/pull/2760
Thanks. I opened the PR here: https://github.com/JanusGraph/janusgraph/pull/2760
|
By
Oleksandr Porunov
·
#6089
·
|
|
Re: Janusgraph 0.6.0
I confirm, adding lucene-backward-codecs-8.9.0.jar in lib folder solves my problem.
Toom.
I confirm, adding lucene-backward-codecs-8.9.0.jar in lib folder solves my problem.
Toom.
|
By
toom@...
·
#6088
·
|
|
Re: Janusgraph 0.6.0
Hi, we upgraded Lucene to 8.9.0 version. Do you think the problem will be resolved if we include `lucene-backward-codecs.jar` in the classpath?
Hi, we upgraded Lucene to 8.9.0 version. Do you think the problem will be resolved if we include `lucene-backward-codecs.jar` in the classpath?
|
By
Oleksandr Porunov
·
#6087
·
|
|
Janusgraph 0.6.0
Hi,
I'm testing the new pre-release of Janusgraph (from https://github.com/JanusGraph/janusgraph/releases/download/v0.6.0/janusgraph-0.6.0.zip) with the Berkeley/Lucene database created from JG 0.5.3
Hi,
I'm testing the new pre-release of Janusgraph (from https://github.com/JanusGraph/janusgraph/releases/download/v0.6.0/janusgraph-0.6.0.zip) with the Berkeley/Lucene database created from JG 0.5.3
|
By
toom@...
·
#6086
·
|
|
Re: What are the implications of using Object.class property type?
Hi Laura,
One code example says more than 1000 words:
gremlin> graph = TinkerFactory.createModern()
==>tinkergraph[vertices:6 edges:6]
gremlin> g=graph.traversal(
traversal( traversal()
gremlin>
Hi Laura,
One code example says more than 1000 words:
gremlin> graph = TinkerFactory.createModern()
==>tinkergraph[vertices:6 edges:6]
gremlin> g=graph.traversal(
traversal( traversal()
gremlin>
|
By
hadoopmarc@...
·
#6085
·
|
|
Re: What are the implications of using Object.class property type?
What would be an example of a OLAP query? There is a way to get a property's type in a gremlin query?
What would be an example of a OLAP query? There is a way to get a property's type in a gremlin query?
|
By
Laura Morales <lauretas@...>
·
#6084
·
|
|
Re: What are the implications of using Object.class property type?
Hi Laura,
Some remarks:
primitive types can be stored more efficiently than general objects (an integer is exactly 32 bits, an object an be any size)
for the CompositeIndex the objects are fine as
Hi Laura,
Some remarks:
primitive types can be stored more efficiently than general objects (an integer is exactly 32 bits, an object an be any size)
for the CompositeIndex the objects are fine as
|
By
hadoopmarc@...
·
#6083
·
|
|
Fw: Re: [janusgraph-users] What are the implications of using Object.class property type?
ERRATA
I get the warning but the vertex with name=42 *is* returned correctly
ERRATA
I get the warning but the vertex with name=42 *is* returned correctly
|
By
Laura Morales <lauretas@...>
·
#6082
·
|
|
Re: What are the implications of using Object.class property type?
I'd like to understand a little bit more about what's going on under the hood when creating a new property with .dataType(Object.class) vs any other specific type eg. .dataType(String.class) or
I'd like to understand a little bit more about what's going on under the hood when creating a new property with .dataType(Object.class) vs any other specific type eg. .dataType(String.class) or
|
By
Laura Morales <lauretas@...>
·
#6081
·
|
|
Re: JanusGraph-GRPC
Hi!
As far as I know, your assumption is correct. However, Janusgraph-GRPC is still in the early stages of development and I guess it will still take a few versions before it will become available.
Hi!
As far as I know, your assumption is correct. However, Janusgraph-GRPC is still in the early stages of development and I guess it will still take a few versions before it will become available.
|
By
rngcntr
·
#6080
·
|
|
JanusGraph-GRPC
Hello!
I've seen some references for JanusGraph-GRPC as something that might replace the ManagementSystem, but can't quite find any more documentation.
Can anyone shed some light?
Many thanks!
Hello!
I've seen some references for JanusGraph-GRPC as something that might replace the ManagementSystem, but can't quite find any more documentation.
Can anyone shed some light?
Many thanks!
|
By
schwartz@...
·
#6079
·
|
|
Re: Not able to enable Write-ahead logs using tx.log-tx for existing JanusGraph setup
Boxuan,
Thank you for the response. Will try again as mentioned in the configuration.
Regards,
Radhika
Boxuan,
Thank you for the response. Will try again as mentioned in the configuration.
Regards,
Radhika
|
By
Radhika Kundam
·
#6078
·
|
|
Re: Data Loading Script Optimization
Hi Vinayak,
Good to see some progress!
Some suggestions:
Is 40% relative to a single core or to all cores (e.g. CPU usage for a java process in top can be 800% if 8 cores are present)?
Ncore * 100%
Hi Vinayak,
Good to see some progress!
Some suggestions:
Is 40% relative to a single core or to all cores (e.g. CPU usage for a java process in top can be 800% if 8 cores are present)?
Ncore * 100%
|
By
hadoopmarc@...
·
#6077
·
|
|
Re: Data Loading Script Optimization
Hi,
You could first create a local cache for ORG by retrying first all ORG:
Map<String, Long> orgCache = g.V().has('vertexLabel', 'ORG').project("name", "id").by("orgName").by(T.id)...
Then replace
Hi,
You could first create a local cache for ORG by retrying first all ORG:
Map<String, Long> orgCache = g.V().has('vertexLabel', 'ORG').project("name", "id").by("orgName").by(T.id)...
Then replace
|
By
Nicolas Trangosi <nicolas.trangosi@...>
·
#6076
·
|
|
Re: Data Loading Script Optimization
Hi Marc,
To avoid confusion, including a new transaction at line number 39, as well as at line no 121.
Line 39: GraphTraversalSource g = graph.newTransaction().traversal();
Line 121: g = ctx.g =
Hi Marc,
To avoid confusion, including a new transaction at line number 39, as well as at line no 121.
Line 39: GraphTraversalSource g = graph.newTransaction().traversal();
Line 121: g = ctx.g =
|
By
Vinayak Bali
·
#6075
·
|
|
Re: Data Loading Script Optimization
Hi Vinayak,
Yes, it should be possible to improve on the 3% CPU usage.
The newTransaction() should be added to line 39 (GraphTraversalSource g = graph.traversal();) as the global g from line 121 is
Hi Vinayak,
Yes, it should be possible to improve on the 3% CPU usage.
The newTransaction() should be added to line 39 (GraphTraversalSource g = graph.traversal();) as the global g from line 121 is
|
By
hadoopmarc@...
·
#6074
·
|
|
Re: Data Loading Script Optimization
Hi Marc,
The storage backend used is Cassandra.
Yes, storage backend janusgraph and load scripts are on the same server.
specified storage.batch-loading=true
CPU usage is very low not more than 3
Hi Marc,
The storage backend used is Cassandra.
Yes, storage backend janusgraph and load scripts are on the same server.
specified storage.batch-loading=true
CPU usage is very low not more than 3
|
By
Vinayak Bali
·
#6073
·
|
|
Re: Data Loading Script Optimization
Hi Vinayak,
What storage backend do you use? Do I understand right that the storage backend and the load script all run on the same server? If, so, are all available CPU resources actively used during
Hi Vinayak,
What storage backend do you use? Do I understand right that the storage backend and the load script all run on the same server? If, so, are all available CPU resources actively used during
|
By
hadoopmarc@...
·
#6072
·
|
|
Re: Not able to enable Write-ahead logs using tx.log-tx for existing JanusGraph setup
No. It should work well for your existing JanusGraph setup too. Note that it is a GLOBAL option so it must be changed for the entire cluster. See
No. It should work well for your existing JanusGraph setup too. Note that it is a GLOBAL option so it must be changed for the entire cluster. See
|
By
Boxuan Li
·
#6071
·
|
|
Not able to enable Write-ahead logs using tx.log-tx for existing JanusGraph setup
Hi All,
I am trying to enable write-ahead logs by using the config property: tx.log-tx to handle transaction recovery.
It's working fine for new JanusGraph setup but not working for Janusgraph setup
Hi All,
I am trying to enable write-ahead logs by using the config property: tx.log-tx to handle transaction recovery.
It's working fine for new JanusGraph setup but not working for Janusgraph setup
|
By
Radhika Kundam
·
#6070
·
|