|
Re: How do I display all results?
http://tinkerpop.apache.org/docs/current/reference/#console-preferences
:set max-iteration <number>
Robert Dale
http://tinkerpop.apache.org/docs/current/reference/#console-preferences
:set max-iteration <number>
Robert Dale
|
By
Robert Dale <rob...@...>
·
#742
·
|
|
How do I display all results?
When I execute a Gremlin query it will not display all the results. It displays 100 lines of output and follows that with ...
How do I have it list all the output, or even direct the output to a log
When I execute a Gremlin query it will not display all the results. It displays 100 lines of output and follows that with ...
How do I have it list all the output, or even direct the output to a log
|
By
Rohit Jain <rohit.j...@...>
·
#741
·
|
|
Re: TimedOutException
Hi,
Have you been able to resolve this issue?
Hi,
Have you been able to resolve this issue?
|
By
Annu Sharma <annu...@...>
·
#740
·
|
|
Custom attribute serializer
Hi all,
I'm porting my application from Titan to JanusGraph.
I was able to define a custom serializer for certain Java types, for example, ArrayList.
I cannot get this to work in JanusGraph.
I have
Hi all,
I'm porting my application from Titan to JanusGraph.
I was able to define a custom serializer for certain Java types, for example, ArrayList.
I cannot get this to work in JanusGraph.
I have
|
By
J MacNaught <jma...@...>
·
#739
·
|
|
Re: unique index per label
http://docs.janusgraph.org/latest/indexes.html#_label_constraint
When a composite index with label restriction is defined as unique, the uniqueness constraint only applies to properties on vertices or
http://docs.janusgraph.org/latest/indexes.html#_label_constraint
When a composite index with label restriction is defined as unique, the uniqueness constraint only applies to properties on vertices or
|
By
Robert Dale <rob...@...>
·
#738
·
|
|
Re: Graph visualization open source tool or framework
Please see this earlier answer to a similar question.
Please see this earlier answer to a similar question.
|
By
Misha Brukman <mbru...@...>
·
#737
·
|
|
Re: similar edges and how to prevent them
I guess the point is, that the edge's direction doesn't matter. Hence it should be more like:
...or, if performance matters, don't enable path computations (using otherV):
Cheers,
Daniel
I guess the point is, that the edge's direction doesn't matter. Hence it should be more like:
...or, if performance matters, don't enable path computations (using otherV):
Cheers,
Daniel
|
By
Daniel Kuppitz <me@...>
·
#736
·
|
|
Re: Adding a bunch of Vertices and edges takes for ever
You are using unique(), this takes lock for each operation. Try to handle uniqueness through application instead of Janus.
~AnkurG
You are using unique(), this takes lock for each operation. Try to handle uniqueness through application instead of Janus.
~AnkurG
|
By
Ankur Goel <ankur...@...>
·
#735
·
|
|
Re: unique index per label
Unique index is globally.
~AnkurG
Unique index is globally.
~AnkurG
|
By
Ankur Goel <ankur...@...>
·
#734
·
|
|
unique index per label
As I understand labels are used for partitioning. Does the same apply for clustering?
I.E I create vertices and edges with custom properties. Assume I have a unique property called: 'nodeId'.
Now I
As I understand labels are used for partitioning. Does the same apply for clustering?
I.E I create vertices and edges with custom properties. Assume I have a unique property called: 'nodeId'.
Now I
|
By
yair...@...
·
#733
·
|
|
Re: similar edges and how to prevent them
You can use coalesce step to do a check or insert query.
http://tinkerpop.apache.org/docs/current/reference/#coalesce-step
Something like
You can use coalesce step to do a check or insert query.
http://tinkerpop.apache.org/docs/current/reference/#coalesce-step
Something like
|
By
tpr...@...
·
#732
·
|
|
Re: Adding a bunch of Vertices and edges takes for ever
I should add I do this query (to eliminate duplicate vertices) before adding each Vertex as I know that in the existing RDBMS same nodes exist multiple
I should add I do this query (to eliminate duplicate vertices) before adding each Vertex as I know that in the existing RDBMS same nodes exist multiple
|
By
yair...@...
·
#731
·
|
|
Adding a bunch of Vertices and edges takes for ever
I am writing an app that loads an existing RDBMS based graph implementation into JanusGraph.
I create this index:
JanusGraphManagement mgmt = javaGraph.openManagement();
if
I am writing an app that loads an existing RDBMS based graph implementation into JanusGraph.
I create this index:
JanusGraphManagement mgmt = javaGraph.openManagement();
if
|
By
yair...@...
·
#730
·
|
|
Graph visualization open source tool or framework
Hi,
Like Neo4j has inbuilt graph visualization tool or datastax has studio; keylines is good framework to draw graph.
Do we have similar kind of open source tool/framework for JanusGraph.
~AnkurG
Hi,
Like Neo4j has inbuilt graph visualization tool or datastax has studio; keylines is good framework to draw graph.
Do we have similar kind of open source tool/framework for JanusGraph.
~AnkurG
|
By
Ankur Goel <ankur...@...>
·
#729
·
|
|
Re: similar edges and how to prevent them
One Option I thought of that should have worked but doesn't is:
Assuming I have a method to create between 'from' vertex and 'to' vertex:
Iterator<Edge> edgesIter = from.edges(Direction.OUT,
One Option I thought of that should have worked but doesn't is:
Assuming I have a method to create between 'from' vertex and 'to' vertex:
Iterator<Edge> edgesIter = from.edges(Direction.OUT,
|
By
yair...@...
·
#728
·
|
|
similar edges and how to prevent them
I have an app where I am migration a d non graph DB graph to Janus. So I create the graph when I first start the app. Using cassandra backend.
I have an issue where 2 vertices have "identical" edges
I have an app where I am migration a d non graph DB graph to Janus. So I create the graph when I first start the app. Using cassandra backend.
I have an issue where 2 vertices have "identical" edges
|
By
yair...@...
·
#727
·
|
|
Graph DB Meetup 9/19
Hello,
Netflix is hosting a Graph Database meetup on Sep 19: https://www.meetup.com/Graph-Databases-and-Frameworks/events/243156558/
Join us to learn how Netflix deployed TitanDB (the predecessor of
Hello,
Netflix is hosting a Graph Database meetup on Sep 19: https://www.meetup.com/Graph-Databases-and-Frameworks/events/243156558/
Join us to learn how Netflix deployed TitanDB (the predecessor of
|
By
Ioannis Papapanagiotou <idu...@...>
·
#726
·
|
|
Re: janusgraph a lot of time for a complete scan of graph conating 100K vertices
Hi Himanshu,
g.V().count() requires a full table scan, so normally you would use an OLAP query for that. Unfortunately, OLAP queries with HBase also still have some performance issues,
Hi Himanshu,
g.V().count() requires a full table scan, so normally you would use an OLAP query for that. Unfortunately, OLAP queries with HBase also still have some performance issues,
|
By
HadoopMarc <marc.d...@...>
·
#725
·
|
|
janusgraph a lot of time for a complete scan of graph conating 100K vertices
Hi all,
I have a Janusgraph with more than 100K vertices.
When I try to retrieve all the vertices through a java code using a gremlin query, it takes more than 10 mins to list all the vertices.
I am
Hi all,
I have a Janusgraph with more than 100K vertices.
When I try to retrieve all the vertices through a java code using a gremlin query, it takes more than 10 mins to list all the vertices.
I am
|
By
hmdc...@...
·
#724
·
|
|
Re: Gremlin-console unable to connect different keyspace
My bad, thnx Jason.
By
Ankur Goel <ankur...@...>
·
#723
·
|