Re: professional support for JanusGraph
Lynn Bender <ly...@...>
The folks at Expero do.
On Fri, Jun 23, 2017 at 8:30 AM, Peter Musial <pmmu...@...> wrote:
|
|
professional support for JanusGraph
Peter Musial <pmmu...@...>
Hi All, Regards, Peter
|
|
Re: Cassandra/HBase storage backend issues
Robert Dale <rob...@...>
Jason, thanks for that! I learned something new. And for those using the latest 0.2-SNAPSHOT, here's the solr 6.6 guide - https://lucene.apache.org/solr/guide/6_6/near-real-time-searching.html#near-real-time-searching Robert Dale
On Fri, Jun 23, 2017 at 1:45 AM, Jason Plurad <plu...@...> wrote:
|
|
Re: How can i keep the vertex which i want to add is unique?
huu...@...
Thank you Jason, and we have many of duplicated vertex, How can I do with janusgraph more effectively? We query a vertex and judge the existence then decide what next to do, that's very low effective especially when we need to import amount of vertex and edge. 在 2017年6月23日星期五 UTC+8上午11:47:34,Jason Plurad写道:
|
|
Re: Cassandra/HBase storage backend issues
Jason Plurad <plu...@...>
Hi Mike, One thing you should watch out for is making sure that your transaction handling is clean. Check out the TinkerPop docs on Graph Transactions, especially the 3rd paragraph. It helps to do a graph.tx().rollback() before running your queries, and then making sure you commit or rollback when you're done in a try/finally block. Do those traversal use a mixed index? Keep in mind that there is a refresh interval in ES (Solr has something similar), so if you're querying immediately after inserting the data, changes might not be visible yet. -- Jason
On Monday, June 19, 2017 at 11:09:33 AM UTC-4, HadoopMarc wrote:
|
|
Re: Streaming graph data
Jason Plurad <plu...@...>
The Gephi integration with TinkerPop was done as a Gremlin Console plugin, so it's not cleanly separated out for use from a standalone Java program. Ultimately, it looks like it only uses a couple files, so maybe it wouldn't be too hard to do. * GephiRemoteAcceptor.groovy * GephiTraversalVisualizationStrategy.groovy -- Jason
On Friday, June 16, 2017 at 10:36:19 AM UTC-4, JZ wrote:
|
|
Re: MixedIndex naming convention
Jason Plurad <plu...@...>
I think all of the answers are already in the docs (see the Note box in the ES Configuration Overview and Index Creation Options). If there are specific ways you think the docs could be improved, it would be good if you opened up an issue and even better if you submitted a pull request. In your graph configuration, you actually define the indexes and the shards. You can define more than one index by using a different name for [X]. If you don't set the number of shards, it will default to 5 as dictated by Elasticsearch. For example:
After you initialize your graph, you can verify that 2 indexes are created in ES, with different # shards in this example:
-- Jason
On Tuesday, June 20, 2017 at 8:31:56 AM UTC-4, Ravikumar Govindarajan wrote:
|
|
Re: When janusgraph can support ES 5.x in the future?
Jason Plurad <plu...@...>
The next release will have support for ES 5.x. The code is already integrated on the master branch. -- Jason
On Tuesday, June 20, 2017 at 11:18:47 PM UTC-4, huupon wrote:
|
|
Re: How can i keep the vertex which i want to add is unique?
Jason Plurad <plu...@...>
Check out the documentation for creating a unique composite index. Here's an example Gremlin Console session which creates a unique composite index on name. When you attempt to set a non-unique name, it will throw a SchemaViolationException.
-- Jason
On Wednesday, June 21, 2017 at 4:34:22 AM UTC-4, huupon wrote:
|
|
Re: Disabling Indexing Backend
Jason Plurad <plu...@...>
Hi Chris, You likely initialized the default graph previously (Cassandra keyspace named "janusgraph"), and it was initialized with C* + ES. Set a configuration property for storage.cassandra.keyspace using a non-default keyspace name, otherwise your graph configuration above would connect to the existing default graph. -- Jason
On Wednesday, June 21, 2017 at 5:26:28 PM UTC-4, Chris Ruppelt wrote:
|
|
Re: how to load a CSV file into janusgraph
HadoopMarc <m.c.d...@...>
Hi Elizabeth, OK, another resource I dug up by searching for CSV on the gremlin user list: http://www.datastax.com/dev/blog/powers-of-ten-part-i Translation to JanusGraph should be straightforward. HTH, Marc Op woensdag 21 juni 2017 11:15:51 UTC+2 schreef Elizabeth:
|
|
Re: creating a vertex with a LIST property in a single gremlin statement
Robert Dale <rob...@...>
It is supported syntax. It's part of the TinkerPop API. 0.1.0 and 0.1.1 both have the same version of TinkerPop Gremlin. Robert Dale
On Tue, Jun 20, 2017 at 2:21 PM, Peter Musial <pmmu...@...> wrote:
|
|
Re: Janus Graph Vertex Property limits only 20 Characters of String as Value
Robert Dale <rob...@...>
On Thu, Jun 22, 2017 at 7:44 AM, <vennil...@...> wrote: System.out.println("Value for NAME Property:"+remitterV.property( You're seeing the toString() of VertexProperty which truncates. Try remitterV.property("NAME").value() Robert Dale
|
|
Janus Graph Vertex Property limits only 20 Characters of String as Value
vennil...@...
Hi All, Im creating a graph using JanusGraph.Creating a Vertex and added a property to it.I have assigned value to the property.The value is having more than 20 characters. After the graph commit, when I query the particular property of the graph, Im getting only first 20 characters.
Kindly help me on How to store more than 20 characters as a value to the property.
PFB the example for the above scenario
|
|
Re: Sample project on Janus Graph
Yashpal Singh <yadhuva...@...>
Thanks a lot, Misha.
On Wed, Jun 21, 2017 at 12:36 AM, Misha Brukman <mbru...@...> wrote:
--
|
|
Disabling Indexing Backend
Chris Ruppelt <chris....@...>
When initializing the JanusGraph, is there a way to disable indexing backend? The below code always assumes using elasticsearch. Configuration c = new BaseConfiguration();
c.setProperty("gremlin.graph", "org.janusgraph.core.JanusGraphFactory"); c.setProperty("storage.backend", "cassandrathrift");
Graph graph = GraphFactory.open(c); Thanks Chris R
|
|
Re: Janus Graph as replace for NOSQL database in Web Applications for non-bulk randomly generated data
Jane <shabs...@...>
So by separating the data into two different databases, traversals on vertex properties would not be possible without external look ups. Would there be any specific optimizations that I could possibly do since I would like to also be able to use OLAP part of Janus.
On Tuesday, June 20, 2017 at 3:29:16 PM UTC-4, Robert Dale wrote:
|
|
Re: how to load a CSV file into janusgraph
Elizabeth <hlf...@...>
Hi Marc, Thanks so much for your information, however, I was wondering is there any complete code example about how to use "bulk-loading" in Janusgraph without Hadoop? Thanks again! Elis
On Thursday, June 15, 2017 at 9:59:10 PM UTC+8, HadoopMarc wrote:
|
|
How can i keep the vertex which i want to add is unique?
huu...@...
Hi, all: How can i keep the vertex which i want to add is unique? get and add? whether have any other methods to add unique vertex ?
|
|
When janusgraph can support ES 5.x in the future?
huu...@...
Hi, all We want to use janusgraph in our production, but we use hbase 1.2.x and ES 5.3.0 in our system, so I want to know when janusgraph can support ES 5.x in the future ,next version 0.2.0 ?
|
|