|
professional support for JanusGraph
Hi All,
Are there companies that provide professional support for production deployments?
Regards,
Peter
Hi All,
Are there companies that provide professional support for production deployments?
Regards,
Peter
|
By
Peter Musial <pmmu...@...>
·
#361
·
|
|
Re: Cassandra/HBase storage backend issues
Jason, thanks for that! I learned something new. And for those using the latest 0.2-SNAPSHOT, here's the solr 6.6 guide -
Jason, thanks for that! I learned something new. And for those using the latest 0.2-SNAPSHOT, here's the solr 6.6 guide -
|
By
Robert Dale <rob...@...>
·
#363
·
|
|
Re: How can i keep the vertex which i want to add is unique?
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
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
|
By
huu...@...
·
#360
·
|
|
Re: Cassandra/HBase storage backend issues
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
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
|
By
Jason Plurad <plu...@...>
·
#359
·
|
|
Re: Streaming graph data
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
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
|
By
Jason Plurad <plu...@...>
·
#358
·
|
|
Re: MixedIndex naming convention
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
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
|
By
Jason Plurad <plu...@...>
·
#357
·
|
|
Re: When janusgraph can support ES 5.x in the future?
The next release will have support for ES 5.x. The code is already integrated on the master branch.
-- Jason
The next release will have support for ES 5.x. The code is already integrated on the master branch.
-- Jason
|
By
Jason Plurad <plu...@...>
·
#356
·
|
|
Re: How can i keep the vertex which i want to add is unique?
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,
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,
|
By
Jason Plurad <plu...@...>
·
#355
·
|
|
Re: Disabling Indexing Backend
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
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
|
By
Jason Plurad <plu...@...>
·
#354
·
|
|
Re: how to load a CSV file into janusgraph
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
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
|
By
HadoopMarc <m.c.d...@...>
·
#353
·
|
|
Re: creating a vertex with a LIST property in a single gremlin statement
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.
-
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.
-
|
By
Robert Dale <rob...@...>
·
#352
·
|
|
Re: Janus Graph Vertex Property limits only 20 Characters of String as Value
You're seeing the toString() of VertexProperty which truncates. Try remitterV.property("NAME").value()
Robert Dale
You're seeing the toString() of VertexProperty which truncates. Try remitterV.property("NAME").value()
Robert Dale
|
By
Robert Dale <rob...@...>
·
#350
·
|
|
Janus Graph Vertex Property limits only 20 Characters of String as Value
Hi All,
Im creating a graph using JanusGraph.Creating a Vertex andadded a property to it.I have assigned value to the property.The value ishaving more than 20 characters. After the graph commit, when
Hi All,
Im creating a graph using JanusGraph.Creating a Vertex andadded a property to it.I have assigned value to the property.The value ishaving more than 20 characters. After the graph commit, when
|
By
vennil...@...
·
#349
·
|
|
Re: Sample project on Janus Graph
Thanks a lot, Misha.
--
Cheers
YASHPAL SINGH
Ph. No. +91-9704811794
yadhuva...@...
yashpal....@...
Thanks a lot, Misha.
--
Cheers
YASHPAL SINGH
Ph. No. +91-9704811794
yadhuva...@...
yashpal....@...
|
By
Yashpal Singh <yadhuva...@...>
·
#351
·
|
|
Disabling Indexing Backend
When initializing the JanusGraph, is there a way to disable indexing backend? The below code always assumes using elasticsearch.
Configuration c = new BaseConfiguration();
When initializing the JanusGraph, is there a way to disable indexing backend? The below code always assumes using elasticsearch.
Configuration c = new BaseConfiguration();
|
By
Chris Ruppelt <chris....@...>
·
#348
·
|
|
Re: Janus Graph as replace for NOSQL database in Web Applications for non-bulk randomly generated data
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
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
|
By
Jane <shabs...@...>
·
#347
·
|
|
Re: how to load a CSV file into janusgraph
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
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
|
By
Elizabeth <hlf...@...>
·
#346
·
|
|
How can i keep the vertex which i want to add is unique?
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 ?
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 ?
|
By
huu...@...
·
#345
·
|
|
When janusgraph can support ES 5.x in the future?
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
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
|
By
huu...@...
·
#344
·
|
|
Re: Janus Graph as replace for NOSQL database in Web Applications for non-bulk randomly generated data
You could keep your schema-less data in your existing NoSQL db and then add a graph database for storing relations.
Or try a multi-model graph database. There are several listed here
You could keep your schema-less data in your existing NoSQL db and then add a graph database for storing relations.
Or try a multi-model graph database. There are several listed here
|
By
Robert Dale <rob...@...>
·
#343
·
|