|
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
·
|
|
Query requires iterating over all vertices
Hello!
I get the example : https://github.com/pluradj/janusgraph-java-example
Why is there a warning in the log?
"WARN org.janusgraph.graphdb.transaction.StandardJanusGraphTx - Query requires
Hello!
I get the example : https://github.com/pluradj/janusgraph-java-example
Why is there a warning in the log?
"WARN org.janusgraph.graphdb.transaction.StandardJanusGraphTx - Query requires
|
By
Ярослав Станко <new...@...>
·
#233
·
|
|
ClassNotFoundException running Gremlin on Spark
Hello,
I'm attempting to transition from Titan to JanusGraph 0.1.0 and am having problems getting OLAP queries to work via Spark. I've loaded a graph with about 2 million vertices and tried to
Hello,
I'm attempting to transition from Titan to JanusGraph 0.1.0 and am having problems getting OLAP queries to work via Spark. I've loaded a graph with about 2 million vertices and tried to
|
By
borde...@...
·
#232
·
|
|
Re: 0.1.0 JanusGraph Docs issues, typos and whatnot
I went ahead and did this https://github.com/JanusGraph/janusgraph/issues/272
I went ahead and did this https://github.com/JanusGraph/janusgraph/issues/272
|
By
Robert Dale <rob...@...>
·
#231
·
|
|
Re: 0.1.0 JanusGraph Docs issues, typos and whatnot
Thanks for the feedback, John.
Issues with the code and documentation are tracked on the project's GitHub issues https://github.com/JanusGraph/janusgraph/issues
Please go ahead and open up an issue
Thanks for the feedback, John.
Issues with the code and documentation are tracked on the project's GitHub issues https://github.com/JanusGraph/janusgraph/issues
Please go ahead and open up an issue
|
By
Jason Plurad <plu...@...>
·
#230
·
|
|
0.1.0 JanusGraph Docs issues, typos and whatnot
Hello, I read through the docs and found various flaws. Some were key concepts not congruent with the codeblock and some were various typos. And since there is no link to report them, I thought I'd
Hello, I read through the docs and found various flaws. Some were key concepts not congruent with the codeblock and some were various typos. And since there is no link to report them, I thought I'd
|
By
John Folkers <12gr...@...>
·
#229
·
|
|
Re: HBase ScannerTimeoutException
Hi Joseph,
Sounds like OLAP is not going to help you here (you would need a gremlin database query step or a customer vertexprogram), You need a JanusGraph index on a unique property of your vertices.
Hi Joseph,
Sounds like OLAP is not going to help you here (you would need a gremlin database query step or a customer vertexprogram), You need a JanusGraph index on a unique property of your vertices.
|
By
HadoopMarc <m.c.d...@...>
·
#227
·
|
|
Re: HBase ScannerTimeoutException
Hi Marc - thank you for the reply. I've written java code to take some data and use it to generate a graph. After that data is put into JanusGraph, I then loop over all the nodes (in the
Hi Marc - thank you for the reply. I've written java code to take some data and use it to generate a graph. After that data is put into JanusGraph, I then loop over all the nodes (in the
|
By
Joe Obernberger <joseph.o...@...>
·
#228
·
|
|
Re: HBase ScannerTimeoutException
Hi Joseph,
If you want to process all vertices (map operation) you need an OLAP query (currently only works for readonly
Hi Joseph,
If you want to process all vertices (map operation) you need an OLAP query (currently only works for readonly
|
By
HadoopMarc <m.c.d...@...>
·
#225
·
|
|
Re: Adding dependencies to target 'install'
I think you're looking for janusgraph-core/pom.xml. All of these dependencies end up in the distribution zip.
I think you're looking for janusgraph-core/pom.xml. All of these dependencies end up in the distribution zip.
|
By
Jason Plurad <plu...@...>
·
#224
·
|
|
HBase ScannerTimeoutException
Hi All - I'm using a loop to do a task on all vertices in fairly large graph (million+ nodes), and the operation that I'm doing takes some time. I'm getting a
Hi All - I'm using a loop to do a task on all vertices in fairly large graph (million+ nodes), and the operation that I'm doing takes some time. I'm getting a
|
By
Joe Obernberger <joseph.o...@...>
·
#226
·
|
|
Adding dependencies to target 'install'
Hi Folks,
Forgive me for the simple question, but I've got:
# git clone https://github.com/JanusGraph/janusgraph.git
# mvn clean install -DskipTests
This all works fine. But I want to add a new JAR to
Hi Folks,
Forgive me for the simple question, but I've got:
# git clone https://github.com/JanusGraph/janusgraph.git
# mvn clean install -DskipTests
This all works fine. But I want to add a new JAR to
|
By
tfin...@...
·
#223
·
|