|
Re: Release vs full release?
janusgraph-full includes Gremlin Server
janusgraph-full includes Gremlin Server
|
By
hadoopmarc@...
·
#6098
·
|
|
Release vs full release?
What is the difference between janusgraph-<version>.zip and janusgraph-full-<version>.zip?
What is the difference between janusgraph-<version>.zip and janusgraph-full-<version>.zip?
|
By
Laura Morales <lauretas@...>
·
#6097
·
|
|
Re: graphml <edge> inside <node>
Hi Laura,
Your assumption about ordering of nodes and edges is correct, see the warning at: https://tinkerpop.apache.org/docs/current/reference/#graphml
For your use case it seems that you can simply
Hi Laura,
Your assumption about ordering of nodes and edges is correct, see the warning at: https://tinkerpop.apache.org/docs/current/reference/#graphml
For your use case it seems that you can simply
|
By
hadoopmarc@...
·
#6096
·
|
|
Re: org.janusgraph.diskstorage.PermanentBackendException: Read 1 locks with our rid but mismatched timestamps
Hi Ronnie
No idea what is going on here, but just being pragmatic:
the bin/janusgraph.sh script starts Cassandra, Elasticsearch and Gremlin Server using the conf/janusgraph-cql-es.conf graph
Hi Ronnie
No idea what is going on here, but just being pragmatic:
the bin/janusgraph.sh script starts Cassandra, Elasticsearch and Gremlin Server using the conf/janusgraph-cql-es.conf graph
|
By
hadoopmarc@...
·
#6095
·
|
|
graphml <edge> inside <node>
Sorry I'm asking to this list because I can't find this information anywhere else.
Is it possible to have an <edge> element nested inside a <node> element with graphml? And will Janus be able to read
Sorry I'm asking to this list because I can't find this information anywhere else.
Is it possible to have an <edge> element nested inside a <node> element with graphml? And will Janus be able to read
|
By
Laura Morales <lauretas@...>
·
#6094
·
|
|
Re: Need info regarding transaction recovery completion
Thank you Boxuan for the response. I will create a feature request.
Regards,
Radhika
Thank you Boxuan for the response. I will create a feature request.
Regards,
Radhika
|
By
Radhika Kundam
·
#6093
·
|
|
Re: Need info regarding transaction recovery completion
Hi Radhika,
Unfortunately, there is no such API. If you are willing to dive into JanusGraph source code, you can modify StandardTransactionLogProcessor::fixSecondaryFailure method and build JanusGraph
Hi Radhika,
Unfortunately, there is no such API. If you are willing to dive into JanusGraph source code, you can modify StandardTransactionLogProcessor::fixSecondaryFailure method and build JanusGraph
|
By
Boxuan Li
·
#6092
·
|
|
Need info regarding transaction recovery completion
Hi Team,
I am using JanusGraphFactory.startTransactionRecovery to recover secondary failure entries.
We need to perform some other action once recovery is completed, I couldn't find any API to know
Hi Team,
I am using JanusGraphFactory.startTransactionRecovery to recover secondary failure entries.
We need to perform some other action once recovery is completed, I couldn't find any API to know
|
By
Radhika Kundam
·
#6091
·
Edited
|
|
org.janusgraph.diskstorage.PermanentBackendException: Read 1 locks with our rid but mismatched timestamps
Hi,
Environment
- JanusGraph 0.5.3 on JDK: 1.8
- Backend: Cassandra 3.11.3 running on JDK 1.8
Warning and error during first time server startup
Graph configuration:
Note: Explicitly set
Hi,
Environment
- JanusGraph 0.5.3 on JDK: 1.8
- Backend: Cassandra 3.11.3 running on JDK 1.8
Warning and error during first time server startup
Graph configuration:
Note: Explicitly set
|
By
Ronnie
·
#6090
·
|
|
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
·
|