|
Re: JanusGraph 0.3.1 + BigTable + ElasticSearch
Thanks Assaf! that was a long time ago.. indeed it was due to a liveliness check failure.
Thanks Assaf! that was a long time ago.. indeed it was due to a liveliness check failure.
|
By
Amotz Hoshen <am...@...>
·
#4293
·
|
|
Re: JanusGraph 0.3.1 + BigTable + ElasticSearch
Does your JanusGraph deployment contains any liveliness probe checks?
If you based your deployment on the GCP Tutorial, then it uses the 0.2 version with liveliness checks based on HTTP.
The default
Does your JanusGraph deployment contains any liveliness probe checks?
If you based your deployment on the GCP Tutorial, then it uses the 0.2 version with liveliness checks based on HTTP.
The default
|
By
schw...@...
·
#4292
·
|
|
Re: Janus 0.4.0 BigTable HBase Client Version compatibility
Hi Satyajit, can you elaborate a bit more on the configuration of Janus with the BigTable emulator?
I'm trying to run JanusGraph 0.3 (took my a while to realize 0.4 isn't compatible with BigTable)
Hi Satyajit, can you elaborate a bit more on the configuration of Janus with the BigTable emulator?
I'm trying to run JanusGraph 0.3 (took my a while to realize 0.4 isn't compatible with BigTable)
|
By
schw...@...
·
#4291
·
|
|
Best way to model a date with time as a property
Hi,
My graph has properties that represent a date with time. The ideal way to persist these would arguably be the Java OffsetDateTime class. However, I also need to perform indexed range queries on
Hi,
My graph has properties that represent a date with time. The ideal way to persist these would arguably be the Java OffsetDateTime class. However, I also need to perform indexed range queries on
|
By
sweaty...@...
·
#4290
·
|
|
Re: Unable to Update the Schema in JanusGraph docker container
There is more to the story. Running the command I previously stated, yes schema information was persisted. However, my original use case has a bit more depth. I am interacting with JanusGraph
There is more to the story. Running the command I previously stated, yes schema information was persisted. However, my original use case has a bit more depth. I am interacting with JanusGraph
|
By
Greg Valainis <valai...@...>
·
#4289
·
|
|
Re: Unable to Update the Schema in JanusGraph docker container
Interestingly enough, I am. Here is an approximate version of the docker command I am running:
docker run --rm -p 8182:8182 -v ./data:/var/lib/janusgraph janusgraph/janusgraph
I can see the Berkeley
Interestingly enough, I am. Here is an approximate version of the docker command I am running:
docker run --rm -p 8182:8182 -v ./data:/var/lib/janusgraph janusgraph/janusgraph
I can see the Berkeley
|
By
Greg Valainis <valai...@...>
·
#4288
·
|
|
Re: Unable to Update the Schema in JanusGraph docker container
The schema is lost if you don't use persistent storage for the data. You need to mount a volume and use that for your storage / index backends to make sure that the data survives restarts.
Am
The schema is lost if you don't use persistent storage for the data. You need to mount a volume and use that for your storage / index backends to make sure that the data survives restarts.
Am
|
By
Florian Hockmann <f...@...>
·
#4287
·
|
|
Re: Unable to Update the Schema in JanusGraph docker container
Thank you for the information about appling a schema. I now have another problem. When container is restarted, the schema is lost. How can I make the schema survive container shutdowns?
Thank you for the information about appling a schema. I now have another problem. When container is restarted, the schema is lost. How can I make the schema survive container shutdowns?
|
By
Greg Valainis <valai...@...>
·
#4286
·
|
|
Re: JanusGraph Gremlin query not giving all edges but it available in database
Hi Pawan,
Maybe you hit upon:
https://github.com/JanusGraph/janusgraph/issues/918
The issue appears when a traversal queries two or more mixed indices and it has been around for a while.
Cheers,
Hi Pawan,
Maybe you hit upon:
https://github.com/JanusGraph/janusgraph/issues/918
The issue appears when a traversal queries two or more mixed indices and it has been around for a while.
Cheers,
|
By
marc.d...@...
·
#4285
·
|
|
JanusGraph Gremlin query not giving all edges but it available in database
I am new to janusgraph. I am executing below gremlin queries in my graph environment where we have HBASE as backend but it is not giving me the correct data but the it is existed in graph
I am new to janusgraph. I am executing below gremlin queries in my graph environment where we have HBASE as backend but it is not giving me the correct data but the it is existed in graph
|
By
Pawan Shriwas <shriwa...@...>
·
#4284
·
|
|
Re: Mapped Properties new added are invisible after first commit
Ran into the same situation here and this ticket was reported to address.
Thanks,
Tyler
Ran into the same situation here and this ticket was reported to address.
Thanks,
Tyler
|
By
Tyler Batliner <tyler....@...>
·
#4283
·
|
|
Re: Edge propert doesn't support SET cardinality ?
Indeed, I did. There was a new post moderation phase I wasn't aware of, and so I didn't understand why my post was not showing up there at the time of my posting here.
Indeed, I did. There was a new post moderation phase I wasn't aware of, and so I didn't understand why my post was not showing up there at the time of my posting here.
|
By
sweaty...@...
·
#4282
·
|
|
Re: Edge propert doesn't support SET cardinality ?
JanusGraph implements the TinkerPop data model and you already got an answer to your question from Stephen Mallette for TinkerPop in the gremlin-users group.
Am Montag, 18. November 2019 16:51:44
JanusGraph implements the TinkerPop data model and you already got an answer to your question from Stephen Mallette for TinkerPop in the gremlin-users group.
Am Montag, 18. November 2019 16:51:44
|
By
Florian Hockmann <f...@...>
·
#4281
·
|
|
Mapped Properties new added are invisible after first commit
gremlin> m = ig.openManagement()
==>org.janusgraph.graphdb.database.management.ManagementSystem@386071d5
gremlin> p1 = m.makePropertyKey('P1').dataType(String.class).make()
==>P1
gremlin> v1 =
gremlin> m = ig.openManagement()
==>org.janusgraph.graphdb.database.management.ManagementSystem@386071d5
gremlin> p1 = m.makePropertyKey('P1').dataType(String.class).make()
==>P1
gremlin> v1 =
|
By
伪音 <tie...@...>
·
#4280
·
|
|
Re: Edge propert doesn't support SET cardinality ?
Hi,
I understand that this feature is not supported, but can someone explain to me the philosophy behind the decision of allowing only SINGLE cardinality for edge properties?
Hi,
I understand that this feature is not supported, but can someone explain to me the philosophy behind the decision of allowing only SINGLE cardinality for edge properties?
|
By
Kushal Agrawal <sweaty...@...>
·
#4279
·
|
|
[ANNOUNCE] JanusGraph.Net 0.2.0 Release
The JanusGraph Technical Steering Committee isexcited to announce the release of JanusGraph.Net0.2.0.
JanusGraph.Netis the .NET driver of JanusGraph. It extends Apache TinkerPop™'sGremlin.Net as its
The JanusGraph Technical Steering Committee isexcited to announce the release of JanusGraph.Net0.2.0.
JanusGraph.Netis the .NET driver of JanusGraph. It extends Apache TinkerPop™'sGremlin.Net as its
|
By
Florian Hockmann <f...@...>
·
#4278
·
|
|
Multi threading for edge insertion
Hi,
I am using janusgraph with cassandra backend and cql connection.
I am starting of with a graph consisting of nodes, each having a multi property "records". Initially there are no edges
Hi,
I am using janusgraph with cassandra backend and cql connection.
I am starting of with a graph consisting of nodes, each having a multi property "records". Initially there are no edges
|
By
Lilly <lfie...@...>
·
#4277
·
|
|
Re: Unable to Update the Schema in JanusGraph docker container
You're trying to instantiate a second graph object which isn't supported for Berkeley. You need to instead connect to the instance created by the Docker container available via JanusGraph Server on
You're trying to instantiate a second graph object which isn't supported for Berkeley. You need to instead connect to the instance created by the Docker container available via JanusGraph Server on
|
By
Florian Hockmann <f...@...>
·
#4276
·
|
|
Re: Unable to Update the Schema in JanusGraph docker container
I could be wrong but I don't think you can create a new graph instance in the startup script folder. I think graphs must be created by adding an entry in the 'graphs' object in the gremlin server
I could be wrong but I don't think you can create a new graph instance in the startup script folder. I think graphs must be created by adding an entry in the 'graphs' object in the gremlin server
|
By
Michael Kaiser-Cross <mkaise...@...>
·
#4275
·
|
|
Unable to Update the Schema in JanusGraph docker container
I am trying to update the schema of the graph in a docker container. Following the instructions for initialization at https://github.com/JanusGraph/janusgraph-docker, I have a groovy file that
I am trying to update the schema of the graph in a docker container. Following the instructions for initialization at https://github.com/JanusGraph/janusgraph-docker, I have a groovy file that
|
By
valai...@...
·
#4274
·
|