|
Could not execute operation due to backend exception
3 messages
What am I doing wrong? I cannot get Janus to start. $ java -version openjdk version "1.8.0_252" OpenJDK Runtime Environment (build 1.8.0_252-8u252-b09-1~deb9u1-b09) OpenJDK 64-Bit Server VM (build 25.
What am I doing wrong? I cannot get Janus to start. $ java -version openjdk version "1.8.0_252" OpenJDK Runtime Environment (build 1.8.0_252-8u252-b09-1~deb9u1-b09) OpenJDK 64-Bit Server VM (build 25.
|
By
Laura Morales
·
|
|
Bulk loading
3 messages
I've read the "Bulk Loading" chapter of the documentation several times but I still don't understand how to create a graph. Everything that I can find online is some Java or Groovy code. Given: 1. a g
I've read the "Bulk Loading" chapter of the documentation several times but I still don't understand how to create a graph. Everything that I can find online is some Java or Groovy code. Given: 1. a g
|
By
Laura Morales
·
|
|
JanusGraph combined with Belief Propagation
2 messages
I'm moving from AWS Neptune architecture to JanusGraph in CentOS. Anyone has tried implementing Belief Propagation with JanusGraph?
I'm moving from AWS Neptune architecture to JanusGraph in CentOS. Anyone has tried implementing Belief Propagation with JanusGraph?
|
By
ganeshanvinothkumar@...
·
|
|
Janus multiple subgraphs
3 messages
My understanding is that a Janus server can host multiple graphs, but they are isolated and cannot be queried together. I'd like to know if/how it's possible to split one single graph into multiple su
My understanding is that a Janus server can host multiple graphs, but they are isolated and cannot be queried together. I'd like to know if/how it's possible to split one single graph into multiple su
|
By
Laura Morales
·
|
|
Very slow performance when opening a new session
2 messages
I'm seeing very slow performance when opening a new session in JanusGraph. The message I'm sending is this: {"requestId":"02a58ee3-e4d3-11eb-bd29-04d4c4eaf347","op":"eval","processor":"session","args"
I'm seeing very slow performance when opening a new session in JanusGraph. The message I'm sending is this: {"requestId":"02a58ee3-e4d3-11eb-bd29-04d4c4eaf347","op":"eval","processor":"session","args"
|
By
Roy Reznik
·
|
|
Count Query
5 messages
Hi All, Please take a look at following issue and provide your feedbacks https://stackoverflow.com/questions/67908881/how-to-improve-performance-of-count-query?noredirect=1#comment120034631_67908881 T
Hi All, Please take a look at following issue and provide your feedbacks https://stackoverflow.com/questions/67908881/how-to-improve-performance-of-count-query?noredirect=1#comment120034631_67908881 T
|
By
Vinayak Bali
·
|
|
JanusGraph System Requirements
2 messages
Hello, What would the system requirements for JanusGraph be with 100 GB of data? Thanks
Hello, What would the system requirements for JanusGraph be with 100 GB of data? Thanks
|
By
csconnor257@...
·
|
|
Cassandra crashing after dropping large graph. Error: Scanned over 100001 tombstones...
6 messages
After loading a large graph 20k nodes into JanusGraph a couple of times and then deleting via g.V().drop() my cassandra server crashes with the below message. data_storage_1 | ERROR [ReadStage-2] 2018
After loading a large graph 20k nodes into JanusGraph a couple of times and then deleting via g.V().drop() my cassandra server crashes with the below message. data_storage_1 | ERROR [ReadStage-2] 2018
|
By
Michael Kaiser-Cross
·
|
|
Query failure due to cassandra backend tombstone exception #1675
3 messages
Hi all, I have raised a GitHub issue on the same (https://github.com/JanusGraph/janusgraph/issues/1675). Pasting the same below. Janus version- janusgraph-0.3.1 Cassandra - cassandra:3.11.4 When we ru
Hi all, I have raised a GitHub issue on the same (https://github.com/JanusGraph/janusgraph/issues/1675). Pasting the same below. Janus version- janusgraph-0.3.1 Cassandra - cassandra:3.11.4 When we ru
|
By
Alex Lawrence
·
|
|
How to filter out step 3 vertex list based on step 1 vertex
6 messages
Hi, Assuming following schema VertexA--edgeAB-->VertexB VertexA--edgeAC-->VertexC VertexC--edgeCB-->VertexB Traversal step 1: start with VertexB, step 2: traverse edgeAB to find connected VertexA, ste
Hi, Assuming following schema VertexA--edgeAB-->VertexB VertexA--edgeAC-->VertexC VertexC--edgeCB-->VertexB Traversal step 1: start with VertexB, step 2: traverse edgeAB to find connected VertexA, ste
|
By
Ronnie
·
|
|
Multiple or-steps are conflated when using the textRegex() predicate
3 messages
Hello! I came upon some unexpected behavior when running queries with multiple or() steps and string searches on mixed indexes and would like some clarification if this is intended or not. I have a gr
Hello! I came upon some unexpected behavior when running queries with multiple or() steps and string searches on mixed indexes and would like some clarification if this is intended or not. I have a gr
|
By
Mladen Marović
·
|
|
Indexing on sub-attribute of custom data type
4 messages
Hi, Few questions related to custom data types (https://docs.janusgraph.org/basics/common-questions/#custom-class-datatype) 1. Is it possible to index on a sub-attribute of a custom data type? If not,
Hi, Few questions related to custom data types (https://docs.janusgraph.org/basics/common-questions/#custom-class-datatype) 1. Is it possible to index on a sub-attribute of a custom data type? If not,
|
By
Ronnie
·
|
|
Could not call index
4 messages
Hi! Running JanusGraph 0.5.3 against BigTable, and ES is used as the Index backend. For a particular traversal I'm seeing the error message below. No clue what this means and where to look for a solut
Hi! Running JanusGraph 0.5.3 against BigTable, and ES is used as the Index backend. For a particular traversal I'm seeing the error message below. No clue what this means and where to look for a solut
|
By
schwartz@...
·
|
|
How to replay a transaction log from the begining
9 messages
Hi All, I have created a transaction log in hbase as backend using following code. JanusGraphTransaction tx = graph.buildTransaction().logIdentifier("addedPerson").start(); JanusGraphVertex u = tx.add
Hi All, I have created a transaction log in hbase as backend using following code. JanusGraphTransaction tx = graph.buildTransaction().logIdentifier("addedPerson").start(); JanusGraphVertex u = tx.add
|
By
Sandeep Mishra
·
|
|
Union with Count returning unexpected results
2 messages
Hi All, The objective is to count the number of nodes and edges. Query: g2.inject(1).union(V().has('title', 'A').aggregate('v1').union(outE().has('title', 'E1').aggregate('e').inV().has('title', 'B'),
Hi All, The objective is to count the number of nodes and edges. Query: g2.inject(1).union(V().has('title', 'A').aggregate('v1').union(outE().has('title', 'E1').aggregate('e').inV().has('title', 'B'),
|
By
Vinayak Bali
·
|
|
Dynamic control of graph configuration
3 messages
Which, if any, of the graph configuration properties are dynamic? In particular, I would like to toggle `storage.batch-loading`.
Which, if any, of the graph configuration properties are dynamic? In particular, I would like to toggle `storage.batch-loading`.
|
By
fredrick.eisele@...
·
|
|
Avoiding duplicate vertex creation using unique indices
2 messages
Hi All, To avoid a situation of duplicate vertex creation due to parallel transactions, we are using index uniqueness over property which defines uniqueness of vertex. As per doc, we need to specify l
Hi All, To avoid a situation of duplicate vertex creation due to parallel transactions, we are using index uniqueness over property which defines uniqueness of vertex. As per doc, we need to specify l
|
By
Umesh Gade
·
|
|
Failed to connect to a Cassandra cluster's all nodes without default port
13 messages
Hello everyone, when I try to connect to a Cassandra cluster which's port is not default, just like this StandardJanusGraph graph = (StandardJanusGraph) JanusGraphFactory.build().set("storage.backend"
Hello everyone, when I try to connect to a Cassandra cluster which's port is not default, just like this StandardJanusGraph graph = (StandardJanusGraph) JanusGraphFactory.build().set("storage.backend"
|
By
zhouyu74748585@...
·
|
|
EOL version components
7 messages
Hello We are using Janus 0.5.3 and there are some components which are either old or else EOL version being used. Old version used: hppc-0.7.1.jar jcabi-log-0.14.jar noggit-0.6.jar EOL version used: c
Hello We are using Janus 0.5.3 and there are some components which are either old or else EOL version being used. Old version used: hppc-0.7.1.jar jcabi-log-0.14.jar noggit-0.6.jar EOL version used: c
|
By
kumkar.dev@...
·
|
|
Custom analyzer with traversal queries
3 messages
Hello everyone, As it's my first post, I'd first thank you all for your work ! It has been pretty neat to discover all of the work ! We've started to investigate the use of custom analyzers in our sch
Hello everyone, As it's my first post, I'd first thank you all for your work ! It has been pretty neat to discover all of the work ! We've started to investigate the use of custom analyzers in our sch
|
By
florent@...
·
|