|
Re: JanusGraph configuration for scala
I'll note that those product versions are a bit ahead of what is listed in the version compatibility matrix.
Also, as discussed in a previous thread, the supported Scala version is 2.10.5.
I'll note that those product versions are a bit ahead of what is listed in the version compatibility matrix.
Also, as discussed in a previous thread, the supported Scala version is 2.10.5.
|
By
Jason Plurad <plu...@...>
·
#253
·
|
|
JanusGraph configuration for scala
I am trying to configure JanusGraph with Apache Cassandra 3.1 and Solr 6.1.0 .
I cannot connect to the Storage backend from the code , though all of my configuration are correct ..
I am trying to configure JanusGraph with Apache Cassandra 3.1 and Solr 6.1.0 .
I cannot connect to the Storage backend from the code , though all of my configuration are correct ..
|
By
Prabin acharya <pra5...@...>
·
#252
·
|
|
Re: Who is using JanusGraph in production?
Great! Thank you for your work!
Misha Brukman <mbru...@...>于2017年5月27日周六 上午5:29写道:
--
Liu-Cheng Xu
Great! Thank you for your work!
Misha Brukman <mbru...@...>于2017年5月27日周六 上午5:29写道:
--
Liu-Cheng Xu
|
By
Liu-Cheng Xu <xuliuc...@...>
·
#251
·
|
|
Re: Who is using JanusGraph in production?
Hi Jimmy,
I started building a list of companies using JanusGraph in production; you can see the current list here: https://github.com/JanusGraph/janusgraph#users (and the logos at the bottom of
Hi Jimmy,
I started building a list of companies using JanusGraph in production; you can see the current list here: https://github.com/JanusGraph/janusgraph#users (and the logos at the bottom of
|
By
Misha Brukman <mbru...@...>
·
#250
·
|
|
Re: Production users of JanusGraph
Hi Anurag,
I started a list of companies using JanusGraph in production; you can see the current list here: https://github.com/JanusGraph/janusgraph#users (and the logos at the bottom of
Hi Anurag,
I started a list of companies using JanusGraph in production; you can see the current list here: https://github.com/JanusGraph/janusgraph#users (and the logos at the bottom of
|
By
Misha Brukman <mbru...@...>
·
#249
·
|
|
Re: Bulk loading CPU busy
Can u try setting this property and compare?
query.fast-property=true
Thanks
Rafa
Can u try setting this property and compare?
query.fast-property=true
Thanks
Rafa
|
By
Rafael Fernandes <luizr...@...>
·
#248
·
|
|
Re: Bulk loading CPU busy
I put Vertices in Map. This was the reason for frequent equals calls.
I removed this.
Now hot spots is:
java.lang.Object.hashCode[native]
I put Vertices in Map. This was the reason for frequent equals calls.
I removed this.
Now hot spots is:
java.lang.Object.hashCode[native]
|
By
CGen <new...@...>
·
#247
·
|
|
Bulk loading CPU busy
Hello!
I need to load CSV files into JanusGraph with a size of 1.7 gigabytes.
How can I increase the load speed?
I added to the config:
storage.batch-loading=true
schema.default=none
I have almost no
Hello!
I need to load CSV files into JanusGraph with a size of 1.7 gigabytes.
How can I increase the load speed?
I added to the config:
storage.batch-loading=true
schema.default=none
I have almost no
|
By
CGen <new...@...>
·
#246
·
|
|
Re: Query requires iterating over all vertices
Thanks to all. It works as it should.
пятница, 19 мая 2017 г., 21:44:46 UTC+3 пользователь Jason Plurad написал:
Thanks to all. It works as it should.
пятница, 19 мая 2017 г., 21:44:46 UTC+3 пользователь Jason Plurad написал:
|
By
CGen <new...@...>
·
#245
·
|
|
Re: Query requires iterating over all vertices
Ah, you used indexOnly() to restrict the index by vertex label, so in order to utilize the index, your query must include the vertex label. Either of these would work since ultimately they are
Ah, you used indexOnly() to restrict the index by vertex label, so in order to utilize the index, your query must include the vertex label. Either of these would work since ultimately they are
|
By
Jason Plurad <plu...@...>
·
#244
·
|
|
Re: Query requires iterating over all vertices
So the "indexOnly(ip4addressVertexLabel)" is a label constraint and means this index only applies to traversals that specify that vertex label.
If you simply change your traversal to this, the index
So the "indexOnly(ip4addressVertexLabel)" is a label constraint and means this index only applies to traversals that specify that vertex label.
If you simply change your traversal to this, the index
|
By
Kevin Schmidt <ktsc...@...>
·
#243
·
|
|
Re: Query requires iterating over all vertices
PropertyKey ip4addressStringPropertyKey = mgmt.makePropertyKey("ip4addressString").dataType(String.class).make();
VertexLabel ip4addressVertexLabel =
PropertyKey ip4addressStringPropertyKey = mgmt.makePropertyKey("ip4addressString").dataType(String.class).make();
VertexLabel ip4addressVertexLabel =
|
By
CGen <new...@...>
·
#242
·
|
|
Re: Query requires iterating over all vertices
Can you share your property and index definition?
Can you share your property and index definition?
|
By
Jason Plurad <plu...@...>
·
#241
·
|
|
Re: Installation of JanusGraph
You shouldn't need to load the JanusGraph imports if you're using a JanusGraph release zip.
Which JanusGraph release zip file are you using? What operating system? What Java
You shouldn't need to load the JanusGraph imports if you're using a JanusGraph release zip.
Which JanusGraph release zip file are you using? What operating system? What Java
|
By
Jason Plurad <plu...@...>
·
#240
·
|
|
Re: Query requires iterating over all vertices
And one more thing. My index exists and works because
Adding this property for key [ip4addressString] and value [192.168.155.212] violates a uniqueness constraint
And one more thing. My index exists and works because
Adding this property for key [ip4addressString] and value [192.168.155.212] violates a uniqueness constraint
|
By
CGen <new...@...>
·
#239
·
|
|
Re: Query requires iterating over all vertices
Thanks for the answer. I do not understand a little.
In my case I'm looking for a Vertex: traversalSource.V().has("ip4addressString", addressString);
And I get a warning: Query requires iterating over
Thanks for the answer. I do not understand a little.
In my case I'm looking for a Vertex: traversalSource.V().has("ip4addressString", addressString);
And I get a warning: Query requires iterating over
|
By
CGen <new...@...>
·
#238
·
|
|
Re: Installation of JanusGraph
Going by the getting started documentation, how do I load janusgraph methods in the gremlin terminal?
When I try to run the JanusGraphFactory's open method it obviously says NameError: name
Going by the getting started documentation, how do I load janusgraph methods in the gremlin terminal?
When I try to run the JanusGraphFactory's open method it obviously says NameError: name
|
By
123...@...
·
#237
·
|
|
[WARNING] 0.1.0 to 0.1.1 upgrade
Hello,A step was missed during the release prep and the 0.1.1 release was not marked as compatible with JanusGraph 0.1.0. Consequently, if you point 0.1.1 at a previously loaded 0.1.0 backend (not
Hello,A step was missed during the release prep and the 0.1.1 release was not marked as compatible with JanusGraph 0.1.0. Consequently, if you point 0.1.1 at a previously loaded 0.1.0 backend (not
|
By
Ted Wilmes <twi...@...>
·
#236
·
|
|
Re: ClassNotFoundException running Gremlin on Spark
A similar message came up on the gremlin-users mailing list. You might want to compare notes with that thread.
https://groups.google.com/d/msg/gremlin-users/LYv-cvZ66hU/vqZJD4OzBQAJ
A similar message came up on the gremlin-users mailing list. You might want to compare notes with that thread.
https://groups.google.com/d/msg/gremlin-users/LYv-cvZ66hU/vqZJD4OzBQAJ
|
By
Jason Plurad <plu...@...>
·
#235
·
|
|
Re: Query requires iterating over all vertices
No, it is not a bug. It is a warning letting you know that there is a query that is doing a global scan of all vertices. In this case, the specific call is `g.V().count().next()` which is trying to
No, it is not a bug. It is a warning letting you know that there is a query that is doing a global scan of all vertices. In this case, the specific call is `g.V().count().next()` which is trying to
|
By
Jason Plurad <plu...@...>
·
#234
·
|