Implement new storage backend using Tablestore
Is there a way to connect janusgraph to an existing opensearch instance as the index backend?
janusgraph.index.search.backend: elasticsearch
janusgraph.index.search.hostname: <my-opensearch-hostname>:9200
janusgraph.index.search.backend: elasticsearch
janusgraph.index.search.hostname: <my-opensearch-hostname>:9200
Janusgraph Servers start throwing Exceptions when load increases

Granular configuration options for such as JANUSGRAPH_RELATION_DELIMITER on driver
Schema creation with groovy script does not work on inmemory setup
What would be the ideal way to set up deep learning on janusgraph data?
from_vertex
, relationship
and the to_vertex
ex: "London", "isCapitalOf", "UK"
...How does remote gremlin server reacts to credential rotation.
Infinite recursion error when evaluating script on Inmemory setup
Incremental schema changes - Indices get stuck in 'Installed' state
Is there a suitable JanusGraph visualizer where you can see your created graphs?
MergeV "get or create" performance asymmetry
Incremental schema changes - Property Key constraint does not exist
firstName
property.
2. day 2: we try adding lastName
property to the person node. This still works and one can create persons with lastName
3. day 3: we try adding fullName
property to the person node. This does not work any more as gp_traversal.addV('person').property('fullName', 'test full name')
throws error: Property Key constraint does not exist for given Vertex Label [person] and property key [fullName].
...Text predicate not serializable (containsPhrase, notContainsX, etc)

How do we generate transaction logs ?
RpcRetryingCallerImp while trying to connect JanusGraph with Hbase 2.2.7 under Cloudera Distribution
Potentially useless allocations when checking a field cardinality
JanusGraphVertexFeatures#getCardinality
(https://github.com/JanusGraph/janusgraph/blob/2c71b378339a3ab49b961eef29b5a042d018f513/janusgraph-core/src/main/java/org/janusgraph/graphdb/tinkerpop/JanusGraphFeatures.java#L161-L169).
From a profile (attached), it looks like...
Unable to load GraphSON file
.json
graph into JanusGraph from the gremlin console, but I get this error:
gremlin> g.io("/opt/janusgraph/graphson-test1.json").read().iterate();
Label can not be null
gremlin> g.io("/opt/janusgraph/graphson-test1.json").read().iterate();
Label can not be null
Gremlin statement exceeds the maximum compilation size
'status': {'message': 'The Gremlin statement that was submitted exceeds the maximum compilation size allowed by the JVM, please split it into multiple smaller statements ...}
'status': {'message': 'The Gremlin statement that was submitted exceeds the maximum compilation size allowed by the JVM, please split it into multiple smaller statements ...}
maxContentLength: 524288
in the server .yaml
file to allow my client to sbmit larger scripts, because I found a significant performance improvement when submitting a larger set of queries at once. But now I'm hitting the JVM limit for compilation size, which I'd like to increase, if possible. ...Method too large
error. At least from a quick search, it looks like this is a hard limit which can be configured.
That's at least what I got from this Stack Overflow question: https://stackoverflow.com/questions/3192896/how-to-circumvent-the-method-too-large-error-in-java-compilation...Comma Separated Config Options Values Via Environment Variable?
janusgraph.index.some_index_name_here.elasticsearch.retry-error-codes=408,429
Much like was done in the unit test I wrote (https://github.com/JanusGraph/janusgraph/blob/487e10ca276678862fd8fb369d6d17188703ba67/janusgraph-es/src/test/java/org/janusgraph/diskstorage/es/rest/RestClientSetupTest.java#L240). But to my surprise it doesn't seem to be received well during startup:...