|
Index on a vertex label from Java
How does one create an index on a vertex label from Java? I want to speed up queries that retrieve or count the vertices with a particular label, e.g. g.V().hasLabel("foo").count().next(). In
How does one create an index on a vertex label from Java? I want to speed up queries that retrieve or count the vertices with a particular label, e.g. g.V().hasLabel("foo").count().next(). In
|
By
kkup...@...
·
#513
·
|
|
Re: Do We Need Specialized Graph Databases? Benchmarking Real-Time Social Networking Applications
It did use parameters. They basically forked Jonathan Ellithorpe's work:
https://github.com/PlatformLab/ldbc-snb-impls
converted all the embedded Gremlin to strings.
It did use parameters. They basically forked Jonathan Ellithorpe's work:
https://github.com/PlatformLab/ldbc-snb-impls
converted all the embedded Gremlin to strings.
|
By
Stephen Mallette <spmal...@...>
·
#516
·
|
|
Re: Do We Need Specialized Graph Databases? Benchmarking Real-Time Social Networking Applications
This blew up a while ago on the Twitter last month https://twitter.com/adriancolyer/status/883226836561518594
The testing set up was less than ideal for Titan. Cassandra isn't really meant for a
This blew up a while ago on the Twitter last month https://twitter.com/adriancolyer/status/883226836561518594
The testing set up was less than ideal for Titan. Cassandra isn't really meant for a
|
By
Jason Plurad <plu...@...>
·
#512
·
|
|
Re: How can I load the GraphSON(JSON) to JanusGraph and how about update,delete vertices and edges?
That is an outdated version of TinkerPop and GraphSON as stated on that page. Use this current reference http://tinkerpop.apache.org/docs/current/reference/#graphson-reader-writer
Robert Dale
That is an outdated version of TinkerPop and GraphSON as stated on that page. Use this current reference http://tinkerpop.apache.org/docs/current/reference/#graphson-reader-writer
Robert Dale
|
By
Robert Dale <rob...@...>
·
#515
·
|
|
Re: Problem downloading JanusGraph as a maven artifact.
That dependency isn't found in Maven central, jbcrypt-0.4 is found in the jitpack.io repository. You'll need to add a remote repository for it.
If you're using the Gremlin Console, you can use the
That dependency isn't found in Maven central, jbcrypt-0.4 is found in the jitpack.io repository. You'll need to add a remote repository for it.
If you're using the Gremlin Console, you can use the
|
By
Jason Plurad <plu...@...>
·
#511
·
|
|
Re: Best practice setup for Go driver development & identifying the websocket serialization format
That's what I'm using.
By
Ray Scott <raya...@...>
·
#510
·
|
|
Re: Best practice setup for Go driver development & identifying the websocket serialization format
Have you seen this Go client? https://github.com/qasaur/gremgo
Have you seen this Go client? https://github.com/qasaur/gremgo
|
By
Robert Dale <rob...@...>
·
#509
·
|
|
Re: Best practice setup for Go driver development & identifying the websocket serialization format
That makes sense to me. Is there a suggested way to format data in the `data` section. I realise you can write a script to output anything you wish, but if I'm, say, wanting to do CRUD style work on a
That makes sense to me. Is there a suggested way to format data in the `data` section. I realise you can write a script to output anything you wish, but if I'm, say, wanting to do CRUD style work on a
|
By
Ray Scott <raya...@...>
·
#508
·
|
|
Re: Best practice setup for Go driver development & identifying the websocket serialization format
What you're receiving looks a lot like the `data` section of the response JSON. Not knowing what client you're using, I can't say that's normal behaviour, but I've seen http clients behave similarly.
What you're receiving looks a lot like the `data` section of the response JSON. Not knowing what client you're using, I can't say that's normal behaviour, but I've seen http clients behave similarly.
|
By
loh...@...
·
#507
·
|
|
Problem downloading JanusGraph as a maven artifact.
Hi,
I am trying to use JanusGraph 0.1.1 in a Scala project, and the SBT dependency on -
"org.janusgraph" % "janusgraph-core" % "0.1.1"
fails to download with these errors -
Error:Error while importing
Hi,
I am trying to use JanusGraph 0.1.1 in a Scala project, and the SBT dependency on -
"org.janusgraph" % "janusgraph-core" % "0.1.1"
fails to download with these errors -
Error:Error while importing
|
By
Manoj Waikar <mmwa...@...>
·
#506
·
|
|
Any idea on incremental import data(XML,JSON) to JanusGraph
Any suggestion?
By
hu junjie <hjj...@...>
·
#505
·
|
|
How can I load the GraphSON(JSON) to JanusGraph and how about update,delete vertices and edges?
I used 2 methods to import it all are failed.
gremlin> graph.io(graphson()).readGraph("import/test.json")
graph.io(IoCore.graphson()).readGraph("import/test.json");
But for the example graphson I can
I used 2 methods to import it all are failed.
gremlin> graph.io(graphson()).readGraph("import/test.json")
graph.io(IoCore.graphson()).readGraph("import/test.json");
But for the example graphson I can
|
By
hu junjie <hjj...@...>
·
#504
·
|
|
Re: [BLOG] Configuring JanusGraph for spark-yarn
Hi ... and others, I have been offline for a few weeks enjoying a holiday and will start looking into your questions and make the suggested corrections. Thanks for following the recipes and helping
Hi ... and others, I have been offline for a few weeks enjoying a holiday and will start looking into your questions and make the suggested corrections. Thanks for following the recipes and helping
|
By
HadoopMarc <bi...@...>
·
#503
·
|
|
Re: Best practice setup for Go driver development & identifying the websocket serialization format
Do you have a reference for that setting the response format? The driver documentation doesn't mention it, only that you can specify the format of the request. There is an example response in JSON,
Do you have a reference for that setting the response format? The driver documentation doesn't mention it, only that you can specify the format of the request. There is an example response in JSON,
|
By
Ray Scott <raya...@...>
·
#502
·
|
|
Re: Best practice setup for Go driver development & identifying the websocket serialization format
The server serializes the response in whichever format has been requested by the client. I'd imagine what you're seeing would be the unmarshalled version of the returned JSON that your go websockets
The server serializes the response in whichever format has been requested by the client. I'd imagine what you're seeing would be the unmarshalled version of the returned JSON that your go websockets
|
By
loh...@...
·
#501
·
|
|
Best practice setup for Go driver development & identifying the websocket serialization format
I want to develop a driver in Go that connects to Gremlin Server using a websocket, runs a parameterized Groovy script and parses the response. At this stage all I need to do is perform basic queries
I want to develop a driver in Go that connects to Gremlin Server using a websocket, runs a parameterized Groovy script and parses the response. At this stage all I need to do is perform basic queries
|
By
Ray Scott <raya...@...>
·
#500
·
|
|
Potential Fix for Indexes stuck in `INSTALLED` state
Hey guys, I know there have been a bunch of questions lately about indexes getting stuck in the `installed` state, and I recently discovered some more interesting potential causes for the problem;
Hey guys, I know there have been a bunch of questions lately about indexes getting stuck in the `installed` state, and I recently discovered some more interesting potential causes for the problem;
|
By
David Pitera <piter...@...>
·
#499
·
|
|
Re: how is janusgraph data stored in Cassandra
The edges and properties are serialized, encoded and optionally compressed in the backend table. Raw scan on the backend table will not easily show what they are.
The things you may be able to see
The edges and properties are serialized, encoded and optionally compressed in the backend table. Raw scan on the backend table will not easily show what they are.
The things you may be able to see
|
By
Jerry He <jerr...@...>
·
#498
·
|
|
Re: how is janusgraph data stored in Cassandra
Thanks,
Under Janusgraph keyspace in cassandra i see some tables with information stored as blob. Is there a way to find the row (containing data from janusgraph) in any table ?
Thanks,
Under Janusgraph keyspace in cassandra i see some tables with information stored as blob. Is there a way to find the row (containing data from janusgraph) in any table ?
|
By
Suny <sahithiy...@...>
·
#497
·
|
|
about janusgraph use spark(yarn-client) compute
1、configuration " conf/hadoop-graph/read-cassandra.properties " file ,as
1、configuration " conf/hadoop-graph/read-cassandra.properties " file ,as
|
By
liuzhip...@...
·
#496
·
|