|
Re: Proper way to define metaproperties in schema
A bit of a follow up on this. I have determined that the source of my problem relates to selecting an individual vertex property from a list cardinality property. I use this traversal:
A bit of a follow up on this. I have determined that the source of my problem relates to selecting an individual vertex property from a list cardinality property. I use this traversal:
|
By
David Brown <dave...@...>
·
#661
·
|
|
Re: Proper way to define metaproperties in schema
On Monday, August 28, 2017 at 4:01:40 PM UTC-4, David Brown wrote:
Thanks for the quick replies. Thanks to the examples, I've determined this is a bug in Goblin.
On Monday, August 28, 2017 at 2:07:38
On Monday, August 28, 2017 at 4:01:40 PM UTC-4, David Brown wrote:
Thanks for the quick replies. Thanks to the examples, I've determined this is a bug in Goblin.
On Monday, August 28, 2017 at 2:07:38
|
By
David Brown <dave...@...>
·
#660
·
|
|
New committer: David Clement
On behalf of the JanusGraph Technical Steering Committee (TSC), I'm pleased to welcome a new committer on the project!
David Clement has submitted several good pull requests which enhanced the
On behalf of the JanusGraph Technical Steering Committee (TSC), I'm pleased to welcome a new committer on the project!
David Clement has submitted several good pull requests which enhanced the
|
By
Jason Plurad <plu...@...>
·
#665
·
|
|
extras that provide business value
Janus is such a compelling database to switch to. Right now we use Neo4j. There are a couple of features that neo4j has that are very useful and I was wondering if they are on the roadmap for
Janus is such a compelling database to switch to. Right now we use Neo4j. There are a couple of features that neo4j has that are very useful and I was wondering if they are on the roadmap for
|
By
an...@...
·
#659
·
|
|
Re: Proper way to define metaproperties in schema
Thanks for the quick replies. Thanks to the examples, I've determined this is a bug in Goblin.
Thanks for the quick replies. Thanks to the examples, I've determined this is a bug in Goblin.
|
By
David Brown <dave...@...>
·
#658
·
|
|
Re: Proper way to define metaproperties in schema
I opened up an issue to add docs on meta-properties and multi-properties.
This worked in the Gremlin Console:
gremlin> graph = JanusGraphFactory.build().set('storage.backend',
I opened up an issue to add docs on meta-properties and multi-properties.
This worked in the Gremlin Console:
gremlin> graph = JanusGraphFactory.build().set('storage.backend',
|
By
Jason Plurad <plu...@...>
·
#657
·
|
|
Proper way to define metaproperties in schema
Hello JanusGraph users,
I have been experimenting with Janus, and using the automatic schema generation, metaproperties work as expected. However, when I set `schema.default=none` in the conf and
Hello JanusGraph users,
I have been experimenting with Janus, and using the automatic schema generation, metaproperties work as expected. However, when I set `schema.default=none` in the conf and
|
By
David Brown <dave...@...>
·
#656
·
|
|
Re: How can we bulk load the edges while we have the vertexes in our JanusGraph DB?
兄弟?加我qq 175501069我们群里也在讨论janusgraph,都在最近第一次用的
在 2017年8月9日星期三 UTC+8下午2:26:33,hu junjie写道:
兄弟?加我qq 175501069我们群里也在讨论janusgraph,都在最近第一次用的
在 2017年8月9日星期三 UTC+8下午2:26:33,hu junjie写道:
|
By
stan...@...
·
#655
·
|
|
Re: JanusGraph seems to force embedded ElasticSearch
This commonly happens if you're connecting to a graph instance that was previously created. The initial configuration is stored within the graph itself.
For BerkeleyJE, try pointing storage.directory
This commonly happens if you're connecting to a graph instance that was previously created. The initial configuration is stored within the graph itself.
For BerkeleyJE, try pointing storage.directory
|
By
Jason Plurad <plu...@...>
·
#654
·
|
|
JanusGraph seems to force embedded ElasticSearch
This is my
By
mikert...@...
·
#653
·
|
|
Re: hey guys ,how to query a person relational depth
ok thanks ,another question , how to skip a super vertex ,this vertex has lots of edge ,for example .the phone is 911 or this phone is custom service, so a lots of people has relation with this
ok thanks ,another question , how to skip a super vertex ,this vertex has lots of edge ,for example .the phone is 911 or this phone is custom service, so a lots of people has relation with this
|
By
李平 <lipin...@...>
·
#652
·
|
|
Re: hey guys ,how to query a person relational depth
Any of the following 2 queries should do the trick:
Pretty much depends on how you define "relation depth".
Cheers,
Daniel
Any of the following 2 queries should do the trick:
Pretty much depends on how you define "relation depth".
Cheers,
Daniel
|
By
Daniel Kuppitz <me@...>
·
#651
·
|
|
Versioning the structure of a graph.
I've seen examples of designing a graph separating structure from state so that its easy to version the state of an entity (vertex) as it's modified through the months and years. However, I've been
I've seen examples of designing a graph separating structure from state so that its easy to version the state of an entity (vertex) as it's modified through the months and years. However, I've been
|
By
Ray Scott <raya...@...>
·
#650
·
|
|
Re: Can BulkLoaderVertexProgram also add mixed indexes
Thanks Marc, your blog post is helpful.
I started the set-up from scratch but I did replace/added distribution specific jars for hadoop and hbase to be able to interact with maprfs and mapr-db.
Also I
Thanks Marc, your blog post is helpful.
I started the set-up from scratch but I did replace/added distribution specific jars for hadoop and hbase to be able to interact with maprfs and mapr-db.
Also I
|
By
mystic m <mita...@...>
·
#649
·
|
|
Re: hey guys ,how to query a person relational depth
Use simplePath() to avoid cycles http://tinkerpop.apache.org/docs/current/reference/#simplepath-step
gremlin> graph = JanusGraphFactory.open('inmemory'); g =
Use simplePath() to avoid cycles http://tinkerpop.apache.org/docs/current/reference/#simplepath-step
gremlin> graph = JanusGraphFactory.open('inmemory'); g =
|
By
Jason Plurad <plu...@...>
·
#648
·
|
|
Re: hey guys ,how to query a person relational depth
gremlin> g.addV().property('name', 'A').as('a'). addV().property('phone', '110').as('b'). addV().property('name', 'C').as('c'). addV().property('phone', '111').as('d').
gremlin> g.addV().property('name', 'A').as('a'). addV().property('phone', '110').as('b'). addV().property('name', 'C').as('c'). addV().property('phone', '111').as('d').
|
By
李平 <lipin...@...>
·
#647
·
|
|
Re: [BLOG] Configuring JanusGraph for spark-yarn
Hi Joe,
Thanks for reporting back your results and confirming the recipe for CDH. Also, your job execution times seem consistent now with the ones I posted above. As to your question whether these
Hi Joe,
Thanks for reporting back your results and confirming the recipe for CDH. Also, your job execution times seem consistent now with the ones I posted above. As to your question whether these
|
By
HadoopMarc <bi...@...>
·
#646
·
|
|
Re: Can BulkLoaderVertexProgram also add mixed indexes
Hi m
You might also try the approach I explained in (also discussed in another thread on this forum):
http://yaaics.blogspot.nl/2017/07/configuring-janusgraph-for-spark-yarn.html
Here I show that you
Hi m
You might also try the approach I explained in (also discussed in another thread on this forum):
http://yaaics.blogspot.nl/2017/07/configuring-janusgraph-for-spark-yarn.html
Here I show that you
|
By
HadoopMarc <bi...@...>
·
#645
·
|
|
Re: Can BulkLoaderVertexProgram also add mixed indexes
You are right Jason that ElasticSearchIndex class is in janusgraph-es-0.1.1.jar, also this jar is available in SPARK_EXECUTOR_CLASSPATH on all the nodes, I can see all janusgraph specific jars (lib +
You are right Jason that ElasticSearchIndex class is in janusgraph-es-0.1.1.jar, also this jar is available in SPARK_EXECUTOR_CLASSPATH on all the nodes, I can see all janusgraph specific jars (lib +
|
By
mystic m <mita...@...>
·
#644
·
|
|
Re: Configuring TTL in edges and vertices of graph
It doesn't look like you committed the management transaction with mgmt.commit()
http://docs.janusgraph.org/latest/advanced-schema.html#_vertex_ttl
It doesn't look like you committed the management transaction with mgmt.commit()
http://docs.janusgraph.org/latest/advanced-schema.html#_vertex_ttl
|
By
Jason Plurad <plu...@...>
·
#643
·
|