|
janusgraph and deeplearning
Hi Jonathan, One thing is not yet clear to me: does your graph fit into a single node (regarding memory and GPU) or do you plan to use distributed pytorch? Either way, I guess it would be most efficie
Hi Jonathan, One thing is not yet clear to me: does your graph fit into a single node (regarding memory and GPU) or do you plan to use distributed pytorch? Either way, I guess it would be most efficie
|
By
hadoopmarc@...
· #6058
·
|
|
How to split graph in multiple graphml files and load them separately
Hi Laura, Without checking this in the code, it only seems logical that the graph id is ignored, because you have to supply the io readers with an existing Graph instance. Apparently it was chosen to
Hi Laura, Without checking this in the code, it only seems logical that the graph id is ignored, because you have to supply the io readers with an existing Graph instance. Apparently it was chosen to
|
By
hadoopmarc@...
· #6057
·
|
|
How to split graph in multiple graphml files and load them separately
Hi Laura, I do not see an easy solution. Although JanusGraph supports custom vertex id's, I do not belief this is compatible with the gremlin io readers (at least, not out of the box, I tried...). An
Hi Laura, I do not see an easy solution. Although JanusGraph supports custom vertex id's, I do not belief this is compatible with the gremlin io readers (at least, not out of the box, I tried...). An
|
By
hadoopmarc@...
· #6047
·
|
|
janusgraph and deeplearning
Hi Jonathan, Can you elaborate on why you make the connection between janusgraph and deep learning? I can only imagine the wish to apply graph data stored in Janusgraph to train a GNN. I do not think
Hi Jonathan, Can you elaborate on why you make the connection between janusgraph and deep learning? I can only imagine the wish to apply graph data stored in Janusgraph to train a GNN. I do not think
|
By
hadoopmarc@...
· #6046
·
|
|
Tinkerpop 3.4.1 with Hadoop3
Hi Anjani, JanusGraph receives the hadoop dependency from Apache TinkerPop, so Apache TinkerPop will be in the driver seat regarding the upgrade of hadoop. Making a custom build of janusgraph with had
Hi Anjani, JanusGraph receives the hadoop dependency from Apache TinkerPop, so Apache TinkerPop will be in the driver seat regarding the upgrade of hadoop. Making a custom build of janusgraph with had
|
By
hadoopmarc@...
· #6042
·
Edited
|
|
Could not execute operation due to backend exception
Hi Laura, Down the stacktrace you can note: After some googling you can conclude that your JanusGraph disk is short of 4.7 GB of space for running JanusGraph with BerkeleyjeDB. Maybe check the logs fo
Hi Laura, Down the stacktrace you can note: After some googling you can conclude that your JanusGraph disk is short of 4.7 GB of space for running JanusGraph with BerkeleyjeDB. Maybe check the logs fo
|
By
hadoopmarc@...
· #6026
·
|
|
What are the implications of using Object.class property type?
Hi Laura, A similar question was posed recently: https://lists.lfaidata.foundation/g/janusgraph-users/message/5986 So, 1. Only for the CompositeIndex 2. In your specific example, you could use the jav
Hi Laura, A similar question was posed recently: https://lists.lfaidata.foundation/g/janusgraph-users/message/5986 So, 1. Only for the CompositeIndex 2. In your specific example, you could use the jav
|
By
hadoopmarc@...
· #6025
·
|
|
JanusGraph combined with Belief Propagation
Hi, You can first try to write a custom VertexProgram for belief propagation with Apache TinkerPop. A custom VertexProgram supports the massive message parsing needed for belief propagation. If it wor
Hi, You can first try to write a custom VertexProgram for belief propagation with Apache TinkerPop. A custom VertexProgram supports the massive message parsing needed for belief propagation. If it wor
|
By
hadoopmarc@...
· #6021
·
|
|
Bulk loading
Hi Laura, JanusGraph support for loading data does not go further than the Traversal API (used in https://tinkerpop.apache.org/docs/current/reference/#addvertex-step ) and the JanusGraphManagement API
Hi Laura, JanusGraph support for loading data does not go further than the Traversal API (used in https://tinkerpop.apache.org/docs/current/reference/#addvertex-step ) and the JanusGraphManagement API
|
By
hadoopmarc@...
· #6020
·
|
|
Very slow performance when opening a new session
Hi Roy, I can confirm your observation using the standard 'bin/janusgraph.sh start' from the full janusgraph distribution. I just used the the gremlin console with: :remote connect tinkerpop.server co
Hi Roy, I can confirm your observation using the standard 'bin/janusgraph.sh start' from the full janusgraph distribution. I just used the the gremlin console with: :remote connect tinkerpop.server co
|
By
hadoopmarc@...
· #6016
·
|
|
Indexing on sub-attribute of custom data type
Regarding documentation on custom attributes: Jason Plurad published an example project a few years ago (so, for an older JanusGraph version). See, https://github.com/pluradj/janusgraph-attribute-seri
Regarding documentation on custom attributes: Jason Plurad published an example project a few years ago (so, for an older JanusGraph version). See, https://github.com/pluradj/janusgraph-attribute-seri
|
By
hadoopmarc@...
· #5987
·
|
|
Indexing on sub-attribute of custom data type
Hi Ronnie, Actually, "creating an associated vertex which defines this custom data type" sounds like an excellent idea! If an attribute is important enough to define an index on, it probably deserves
Hi Ronnie, Actually, "creating an associated vertex which defines this custom data type" sounds like an excellent idea! If an attribute is important enough to define an index on, it probably deserves
|
By
hadoopmarc@...
· #5986
·
|
|
Union with Count returning unexpected results
Hi Vinayak, I guess this has to do with differences in lazy vs eager evaluation between the two queries. The TinkerPop ref docs reference the aggregated values with cap('ACount','E1Count','BCount','E2
Hi Vinayak, I guess this has to do with differences in lazy vs eager evaluation between the two queries. The TinkerPop ref docs reference the aggregated values with cap('ACount','E1Count','BCount','E2
|
By
hadoopmarc@...
· #5984
·
|
|
Dynamic control of graph configuration
Hi Frederick, This is a good question, but I have no answer. For myself, I have always take a fresh janusgraph instance if I wanted to change one of the properties! Best wishes, Marc
Hi Frederick, This is a good question, but I have no answer. For myself, I have always take a fresh janusgraph instance if I wanted to change one of the properties! Best wishes, Marc
|
By
hadoopmarc@...
· #5976
·
|
|
Avoiding duplicate vertex creation using unique indices
Hi Umesh, I read this yesterday and thought your reasoning was sound, but at the same time it seemed unlikely it was in the ref docs for no reason. Just now, a scenario appeared to me where both locks
Hi Umesh, I read this yesterday and thought your reasoning was sound, but at the same time it seemed unlikely it was in the ref docs for no reason. Just now, a scenario appeared to me where both locks
|
By
hadoopmarc@...
· #5975
·
|
|
Count Query
Hi Vinayak, Can you please provide a script to generate a sample graph so that we can work on the same graph? The current question is a follow-up on an earlier discussion on this list in May, see http
Hi Vinayak, Can you please provide a script to generate a sample graph so that we can work on the same graph? The current question is a follow-up on an earlier discussion on this list in May, see http
|
By
hadoopmarc@...
· #5948
·
|
|
Issues while iterating over self-loop edges in Apache Spark
Hi Mladen, Indeed, the self-loop logic you point to still exists in: https://github.com/JanusGraph/janusgraph/blob/master/janusgraph-hadoop/src/main/java/org/janusgraph/hadoop/formats/util/JanusGraphV
Hi Mladen, Indeed, the self-loop logic you point to still exists in: https://github.com/JanusGraph/janusgraph/blob/master/janusgraph-hadoop/src/main/java/org/janusgraph/hadoop/formats/util/JanusGraphV
|
By
hadoopmarc@...
· #5943
·
|
|
Janus Graph Performance with Cassandra vs BigTable
Hi Vishal, Your question is very general. What is most important to you: write performance, simple queries, complex queries? Do you mean comparison between managed Cassandra and managed Bigtable in te
Hi Vishal, Your question is very general. What is most important to you: write performance, simple queries, complex queries? Do you mean comparison between managed Cassandra and managed Bigtable in te
|
By
hadoopmarc@...
· #5942
·
|
|
Difference Between JanusGraph Server and Embedded JanusGraph in Java
Hi Zach, 1. For building an API service you do not need Gremlin Server. Gremlin Server has all kinds of features though that might (slightly) relieve the complexity of your service (with the complexit
Hi Zach, 1. For building an API service you do not need Gremlin Server. Gremlin Server has all kinds of features though that might (slightly) relieve the complexity of your service (with the complexit
|
By
hadoopmarc@...
· #5936
·
|
|
Getting org.janusgraph.graphdb.database.idassigner.IDPoolExhaustedException consistently
Hi, There does not seem to be much that helps in finding a root cause (no similar questions or issues in history). The most helpful thing I found is the following javadoc: https://javadoc.io/doc/org.j
Hi, There does not seem to be much that helps in finding a root cause (no similar questions or issues in history). The most helpful thing I found is the following javadoc: https://javadoc.io/doc/org.j
|
By
hadoopmarc@...
· #5934
·
|