|
Re: How Can I make a statistics,i.e:how many vertexes or edges?
I run into a new problem when I config the gremlin and spark-onYarn according the post.
Am I lacking the dependencies or version conflicts?
10:47:47,199 INFO KryoShimServiceLoader:117 - Set
I run into a new problem when I config the gremlin and spark-onYarn according the post.
Am I lacking the dependencies or version conflicts?
10:47:47,199 INFO KryoShimServiceLoader:117 - Set
|
By
spirit...@...
·
#455
·
|
|
Re: How Can I make a statistics,i.e:how many vertexes or edges?
I config the gremlin and spark-on-yarn according to the post.
But I ran into the problem
10:47:47,199 INFO KryoShimServiceLoader:117 - Set KryoShimService provider to
I config the gremlin and spark-on-yarn according to the post.
But I ran into the problem
10:47:47,199 INFO KryoShimServiceLoader:117 - Set KryoShimService provider to
|
By
spirit...@...
·
#454
·
|
|
Re: Geoshape property in remote gremlin query, GraphSON
It seems Geoshape GraphSON support is hardcoded to v1 although I couldn't get it to work with that either. If you have to use GraphSON instead of Gryo, then you could checkout master, apply this
It seems Geoshape GraphSON support is hardcoded to v1 although I couldn't get it to work with that either. If you have to use GraphSON instead of Gryo, then you could checkout master, apply this
|
By
Robert Dale <rob...@...>
·
#453
·
|
|
Merging two graphs.
Hello,
I have an in-memory Janusgraph instance and I would like to merge that with my Cassandra/ES based graph. What is the best (efficient) way to do this?
When I merge, I don't need to insert the
Hello,
I have an in-memory Janusgraph instance and I would like to merge that with my Cassandra/ES based graph. What is the best (efficient) way to do this?
When I merge, I don't need to insert the
|
By
Gwiz <feed...@...>
·
#452
·
|
|
Re: How Can I make a statistics,i.e:how many vertexes or edges?
Oooops, I'm so sorry. HadoopMarc is a person.:)
在 2017年7月18日星期二 UTC+8下午10:13:53,Jason Plurad写道:
Oooops, I'm so sorry. HadoopMarc is a person.:)
在 2017年7月18日星期二 UTC+8下午10:13:53,Jason Plurad写道:
|
By
spirit...@...
·
#451
·
|
|
Re: How Can I make a statistics,i.e:how many vertexes or edges?
Thanks Jason for your reply.
I'll show my code on GitHub later.
And I want to know what the HadoopMarc is? You mean Hadoop MapReduce??
在 2017年7月18日星期二 UTC+8下午10:13:53,Jason
Thanks Jason for your reply.
I'll show my code on GitHub later.
And I want to know what the HadoopMarc is? You mean Hadoop MapReduce??
在 2017年7月18日星期二 UTC+8下午10:13:53,Jason
|
By
spirit...@...
·
#450
·
|
|
Geoshape property in remote gremlin query, GraphSON
I am trying to assign a value to a property with the native Geoshape type. I have it serialized into JSON as follows (where g is aliased to the traversal on gremlin server):
{"@value": {"type":
I am trying to assign a value to a property with the native Geoshape type. I have it serialized into JSON as follows (where g is aliased to the traversal on gremlin server):
{"@value": {"type":
|
By
rosen...@...
·
#449
·
|
|
Re: How Can I make a statistics,i.e:how many vertexes or edges?
If you scroll back just a few days in the message history of this group, you'll find a link to this nice blog post: "Configuring JanusGraph for spark-yarn"
If you scroll back just a few days in the message history of this group, you'll find a link to this nice blog post: "Configuring JanusGraph for spark-yarn"
|
By
Jason Plurad <plu...@...>
·
#448
·
|
|
Read partitioned vertex (ID=8202), but partitioned vertex filtering is disabled
I make graph statistics by using hadoop-gremlin and SparkGraphComputer.
config file
I make graph statistics by using hadoop-gremlin and SparkGraphComputer.
config file
|
By
spirit...@...
·
#447
·
|
|
Re: How Can I make a statistics,i.e:how many vertexes or edges?
anybody online? please help me~
在 2017年7月17日星期一 UTC+8下午5:53:32,spi...@...写道:
anybody online? please help me~
在 2017年7月17日星期一 UTC+8下午5:53:32,spi...@...写道:
|
By
spirit...@...
·
#446
·
|
|
Re: Exception: IllegalStateException: The vertex or type is not associated with this transaction
Thank you Robert! This helps :)
Arunabh
Thank you Robert! This helps :)
Arunabh
|
By
arunab...@...
·
#444
·
|
|
Re: Exception: IllegalStateException: The vertex or type is not associated with this transaction
Don't mix the Graph API and the Traversal API. Prefer the Traversal API.
// in two traversals
newNode = g.addV("B").property("x",x).property("y",y).property("z",z).property("w",
Don't mix the Graph API and the Traversal API. Prefer the Traversal API.
// in two traversals
newNode = g.addV("B").property("x",x).property("y",y).property("z",z).property("w",
|
By
Robert Dale <rob...@...>
·
#445
·
|
|
Exception: IllegalStateException: The vertex or type is not associated with this transaction
Hi all,
I am trying to add a new vertex and associate a new edge from it to an existing vertex. It doesn't allow me to add the edge and throws the exception:
java.lang.IllegalStateException: The
Hi all,
I am trying to add a new vertex and associate a new edge from it to an existing vertex. It doesn't allow me to add the edge and throws the exception:
java.lang.IllegalStateException: The
|
By
aa5186 <arunab...@...>
·
#443
·
|
|
How count the vertex or edge in Janus?
SnapshotCounter.HBaseGetter entryGetter = new SnapshotCounter.HBaseGetter();
EntryList entryList = StaticArrayEntryList.ofBytes(
SnapshotCounter.HBaseGetter entryGetter = new SnapshotCounter.HBaseGetter();
EntryList entryList = StaticArrayEntryList.ofBytes(
|
By
spirit...@...
·
#442
·
|
|
How Can I make a statistics,i.e:how many vertexes or edges?
My graph has about 100 million vertexes and 200 million edges. But if use the following code, it is too slow.
GraphTraversal<Vertex, Long> countV = traversal.V().count();while (countV.hasNext()){
My graph has about 100 million vertexes and 200 million edges. But if use the following code, it is too slow.
GraphTraversal<Vertex, Long> countV = traversal.V().count();while (countV.hasNext()){
|
By
spirit...@...
·
#441
·
|
|
Re: Bulk loading CPU busy
Hi!
sorry for the question but i'm new with janusgraph. How can I import csv file into janus???
Hi!
sorry for the question but i'm new with janusgraph. How can I import csv file into janus???
|
By
Edoardo N <e.n...@...>
·
#440
·
|
|
Re: [BLOG] Configuring JanusGraph for spark-yarn
Hi John,
Your assumption about different types of graph object for OLTP and OLAP is right (at least for JanusGraph, TinkerGraph supports both). I remember examples from the gremlin user list, though,
Hi John,
Your assumption about different types of graph object for OLTP and OLAP is right (at least for JanusGraph, TinkerGraph supports both). I remember examples from the gremlin user list, though,
|
By
HadoopMarc <bi...@...>
·
#439
·
|
|
Re: [BLOG] Configuring JanusGraph for spark-yarn
HadoopMarc,
It seems that we have two graph classes that need to be created:
The first is a standardjanusgraph object that runs a standard computer. This is able to perform OLTP data pushes and, I
HadoopMarc,
It seems that we have two graph classes that need to be created:
The first is a standardjanusgraph object that runs a standard computer. This is able to perform OLTP data pushes and, I
|
By
John Helmsen <john....@...>
·
#438
·
|
|
Re: JanusGraph support for Cassandra 3.x
Interesting, if you have a record of what your issues were, could you create a ticket? I haven't seen issues with Cassandra 3.10
and the Astyanax adapter but maybe your setup or usage patterns were
Interesting, if you have a record of what your issues were, could you create a ticket? I haven't seen issues with Cassandra 3.10
and the Astyanax adapter but maybe your setup or usage patterns were
|
By
Ted Wilmes <twi...@...>
·
#437
·
|
|
Re: janusgraph solr cassandra GraphOfTheGodsFactory
It looks like that is the case. I'm not a regular Solr user so maybe others can chime in here if they know otherwise.
The docs reference a "index.search.solr.configset" configuration property that
It looks like that is the case. I'm not a regular Solr user so maybe others can chime in here if they know otherwise.
The docs reference a "index.search.solr.configset" configuration property that
|
By
sju...@...
·
#436
·
|