|
Re: Local lock contention on edges
My guess would be that it's because you have some kind of index that is being updated when you add those edges (note 'BackendTransaction.acquireIndexLock' in your call stack). I would see if you can
My guess would be that it's because you have some kind of index that is being updated when you add those edges (note 'BackendTransaction.acquireIndexLock' in your call stack). I would see if you can
|
By
Austin Sharp <austins...@...>
·
#162
·
|
|
Re: How can I tell if indices are being used in a query (intercepting the log)
You can set the configuration property 'query-force-index' to true and JanusGraph will throw an exception instead of printing the
You can set the configuration property 'query-force-index' to true and JanusGraph will throw an exception instead of printing the
|
By
Austin Sharp <austins...@...>
·
#161
·
|
|
Re: 0.1.0 Release
Great, congrats from me too!
Marc
Op woensdag 19 april 2017 20:26:16 UTC+2 schreef Collin Scangarella:
Great, congrats from me too!
Marc
Op woensdag 19 april 2017 20:26:16 UTC+2 schreef Collin Scangarella:
|
By
HadoopMarc <m.c.d...@...>
·
#160
·
|
|
0.1.0 Release
Cheers, congrats on the release. We'll be switching over shortly.
Cheers, congrats on the release. We'll be switching over shortly.
|
By
Collin Scangarella <collinsc...@...>
·
#159
·
|
|
Re: Cassandra 3 support?
JanusGraph has 2 drivers for Cassandra, one using Astyanax ('cassandra') and using Thrift directly ('cassandrathrift'). The first release will continue this support, as we're looking for solid
JanusGraph has 2 drivers for Cassandra, one using Astyanax ('cassandra') and using Thrift directly ('cassandrathrift'). The first release will continue this support, as we're looking for solid
|
By
Jason Plurad <plu...@...>
·
#158
·
|
|
Cassandra 3 support?
Hi all,
Question to cassandra module developers.
I see that JanusGraph uses Astyanax for Cassandra 2. As there will be no Astyanax for Cassandra 3, have you decided on what to do? Are you going to
Hi all,
Question to cassandra module developers.
I see that JanusGraph uses Astyanax for Cassandra 2. As there will be no Astyanax for Cassandra 3, have you decided on what to do? Are you going to
|
By
Vladyslav Kosulin <vkos...@...>
·
#157
·
|
|
Re: Data Transfer from Titan to Janusgraph
Hey,
That worked perfectly. Thanks a lot!!!!
Regards,
Neelesh
Hey,
That worked perfectly. Thanks a lot!!!!
Regards,
Neelesh
|
By
sambhajic...@...
·
#156
·
|
|
Re: Data Transfer from Titan to Janusgraph
The idea is that you shouldn't have to transfer any data, you can just configure JanusGraph flags to match the default values in Titan, such that it would just work in-place.
Since Titan/JanusGraph
The idea is that you shouldn't have to transfer any data, you can just configure JanusGraph flags to match the default values in Titan, such that it would just work in-place.
Since Titan/JanusGraph
|
By
Misha Brukman <mbru...@...>
·
#155
·
|
|
Data Transfer from Titan to Janusgraph
I am currently using Titan 1.0.0 with Cassandra backend and Elasticsearch for indexing. Our graph has 100 million nodes and 170 million edges with a replication factor of 2 and distributed across a
I am currently using Titan 1.0.0 with Cassandra backend and Elasticsearch for indexing. Our graph has 100 million nodes and 170 million edges with a replication factor of 2 and distributed across a
|
By
sambhajic...@...
·
#154
·
|
|
Re: Who is using JanusGraph in production?
since we don't have the first release yet, I hope no one. lol
We (where I work) are planing on switching from Titan to JanusGraph as soon as it gets released. We already moved some of our code to
since we don't have the first release yet, I hope no one. lol
We (where I work) are planing on switching from Titan to JanusGraph as soon as it gets released. We already moved some of our code to
|
By
Marcelo Freitas <marcel...@...>
·
#153
·
|
|
How can I tell if indices are being used in a query (intercepting the log)
Trying to write unit tests to determine whether indices are being used. The best indication I've seen is the log message:
15:56:00,517 WARN StandardJanusGraphTx:1273 - Query requires iterating over
Trying to write unit tests to determine whether indices are being used. The best indication I've seen is the log message:
15:56:00,517 WARN StandardJanusGraphTx:1273 - Query requires iterating over
|
By
Jamie Lawson <jamier...@...>
·
#152
·
|
|
Re: JanusGraph in Gremlin
Joe, thanks for reporting back with your solution. This sounds like a bug. I've opened up an issue to track it.
https://github.com/JanusGraph/janusgraph/issues/220
-- Jason
Joe, thanks for reporting back with your solution. This sounds like a bug. I've opened up an issue to track it.
https://github.com/JanusGraph/janusgraph/issues/220
-- Jason
|
By
Jason Plurad <plu...@...>
·
#150
·
|
|
Re: JanusGraph in Gremlin
Thanks for the help Marc. Turns out I set storage.hbase.short-cf-named to false in my code and didn't set that in the gremlin properties file. You have no idea how many days I've been
Thanks for the help Marc. Turns out I set storage.hbase.short-cf-named to false in my code and didn't set that in the gremlin properties file. You have no idea how many days I've been
|
By
Joe Obernberger <joseph.o...@...>
·
#151
·
|
|
Re: JanusGraph in Gremlin
Thank you Marc. You raise a good point - I can access the graph fine from Java code using gremlin commands like:
JanusGraphQuery query = graph.query.has("name", "test");
if
Thank you Marc. You raise a good point - I can access the graph fine from Java code using gremlin commands like:
JanusGraphQuery query = graph.query.has("name", "test");
if
|
By
Joe Obernberger <joseph.o...@...>
·
#149
·
|
|
Re: JanusGraph in Gremlin
Hi Joseph,
I am still on Titan/HBase, but the things should work the same.
Code to connect:
config = new
Hi Joseph,
I am still on Titan/HBase, but the things should work the same.
Code to connect:
config = new
|
By
HadoopMarc <m.c.d...@...>
·
#147
·
|
|
Re: JanusGraph in Gremlin
Hi Joseph,
I am still on Titan/HBase, but the things should work the same.
Code to connect:
config = new
Hi Joseph,
I am still on Titan/HBase, but the things should work the same.
Code to connect:
config = new
|
By
marc.d...@...
·
#146
·
|
|
Re: JanusGraph in Gremlin
Thank you Marc. Yes, I've even tried very simple graphs of just a few vertices, commit, write out graphML, and then close. I can also load the graph from HBase, and export graphML OK. It
Thank you Marc. Yes, I've even tried very simple graphs of just a few vertices, commit, write out graphML, and then close. I can also load the graph from HBase, and export graphML OK. It
|
By
Joe Obernberger <joseph.o...@...>
·
#148
·
|
|
Re: JanusGraph in Gremlin
Hi Joseph,
My first idea: did you commit the transactions that inserted the vertices and edges into JanusGrpah?
Cheers, Marc
Op dinsdag 18 april 2017 04:48:02 UTC+2 schreef Joseph Obernberger:
Hi Joseph,
My first idea: did you commit the transactions that inserted the vertices and edges into JanusGrpah?
Cheers, Marc
Op dinsdag 18 april 2017 04:48:02 UTC+2 schreef Joseph Obernberger:
|
By
HadoopMarc <m.c.d...@...>
·
#145
·
|
|
Re: Kerberos Secured Hadoop Cluster Support
Sure, you can find it at:
https://github.com/apache/tinkerpop/pull/534
https://issues.apache.org/jira/browse/TINKERPOP-1566
Cheers, Marc
Op dinsdag 18 april 2017 04:21:19 UTC+2 schreef Jerry He:
Sure, you can find it at:
https://github.com/apache/tinkerpop/pull/534
https://issues.apache.org/jira/browse/TINKERPOP-1566
Cheers, Marc
Op dinsdag 18 april 2017 04:21:19 UTC+2 schreef Jerry He:
|
By
HadoopMarc <m.c.d...@...>
·
#144
·
|
|
Query Building throws IllegalArgumentException
I have a COMPOSITE index. It builds correctly, awaits completion as per JanusGraph Chapter 8 docs. All that is well. But I CANNOT USE THE INDEX.
When I call getIndexStatus() on the index it reports
I have a COMPOSITE index. It builds correctly, awaits completion as per JanusGraph Chapter 8 docs. All that is well. But I CANNOT USE THE INDEX.
When I call getIndexStatus() on the index it reports
|
By
Jamie Lawson <jamier...@...>
·
#143
·
|