|
Re: Odd behavior with elasticsearch and metapropeties
Meta-properties only support single value. http://tinkerpop.apache.org/docs/current/reference/#vertex-properties
Robert Dale
Meta-properties only support single value. http://tinkerpop.apache.org/docs/current/reference/#vertex-properties
Robert Dale
|
By
Robert Dale <rob...@...>
·
#282
·
|
|
Re: Odd behavior with elasticsearch and metapropeties
Hi,
Your ES does not allowed groovy script.
So you have to set "script.engine.groovy.inline.update" to "true" in the yaml of the ES conf.
David
Hi,
Your ES does not allowed groovy script.
So you have to set "script.engine.groovy.inline.update" to "true" in the yaml of the ES conf.
David
|
By
david.c...@...
·
#281
·
|
|
Odd behavior with elasticsearch and metapropeties
Here's the setup.
I have 4 property keys, all part of a Mixed Index.
- name_string, Cardinality.SINGLE, Mapping.STRING.asParameter
- meta_name_string, Cardinality.SINGLE, Mapping.STRING.asParameter
-
Here's the setup.
I have 4 property keys, all part of a Mixed Index.
- name_string, Cardinality.SINGLE, Mapping.STRING.asParameter
- meta_name_string, Cardinality.SINGLE, Mapping.STRING.asParameter
-
|
By
Adam Holley <holl...@...>
·
#280
·
|
|
Re: Who is using JanusGraph in production?
Great point! I welcome case studies and in-depth descriptions, but those take a significant effort to write as well as get approved by appropriate PR/Legal/etc. departments, so while I am always
Great point! I welcome case studies and in-depth descriptions, but those take a significant effort to write as well as get approved by appropriate PR/Legal/etc. departments, so while I am always
|
By
Misha Brukman <mbru...@...>
·
#279
·
|
|
Re: Who is using JanusGraph in production?
It would be great if the current user list also said a little bit about how they use it. It's impossible to tell how FiNQ and Seeq are using JanusGraph. We would benefit from having case study like
It would be great if the current user list also said a little bit about how they use it. It's impossible to tell how FiNQ and Seeq are using JanusGraph. We would benefit from having case study like
|
By
Michael Markieta <mark...@...>
·
#278
·
|
|
Re: Character case behaviour different with or without indices
I should point out that I am using a build from master 0.2.0.
I should point out that I am using a build from master 0.2.0.
|
By
ni...@...
·
#277
·
|
|
Re: Is textRegex using search backends?
I should point out that I am using a build from master 0.2.0.
I should point out that I am using a build from master 0.2.0.
|
By
ni...@...
·
#276
·
|
|
Is textRegex using search backends?
I have a text and string index in a graph and if I do a direct query on either of them, I can search for multiple tokens. (See below)
A textRegex query does not seem to use either of these, it returns
I have a text and string index in a graph and if I do a direct query on either of them, I can search for multiple tokens. (See below)
A textRegex query does not seem to use either of these, it returns
|
By
ni...@...
·
#275
·
|
|
Character case behaviour different with or without indices
This is odd behaviour in janusgraph.
If we have a user with a property, say Robert, we can't find him with a search for "Rob" but we can with a search for "rob".
gremlin> mgmt =
This is odd behaviour in janusgraph.
If we have a user with a property, say Robert, we can't find him with a search for "Rob" but we can with a search for "rob".
gremlin> mgmt =
|
By
ni...@...
·
#274
·
|
|
Re: Janus Graph performing OLAP with Spark/Yarn
I posted an answer for SparkGraphComputer with YARN for TinkerPop 3.2.4 over on gremlin-users. The approach works similarly for JanusGraph 0.1.1.
I'll echo sjudeng's comments on matching the Spark
I posted an answer for SparkGraphComputer with YARN for TinkerPop 3.2.4 over on gremlin-users. The approach works similarly for JanusGraph 0.1.1.
I'll echo sjudeng's comments on matching the Spark
|
By
Jason Plurad <plu...@...>
·
#273
·
|
|
Indexing issue...
Reindexing has been tough for me too, so I had to write few wrapper classes and tons of debugging to make sure I didn't miss anything, but what I found out was that, some of my transactions were still
Reindexing has been tough for me too, so I had to write few wrapper classes and tons of debugging to make sure I didn't miss anything, but what I found out was that, some of my transactions were still
|
By
Rafael Fernandes <luizr...@...>
·
#272
·
|
|
Indexing issue...
Hello,
Currently having issues creating indexes on our graphdb with the following configs..
- Gremlin Server (Janus Server)
- Cassandra backend
- ES index backend
From an empty graph, imported a
Hello,
Currently having issues creating indexes on our graphdb with the following configs..
- Gremlin Server (Janus Server)
- Cassandra backend
- ES index backend
From an empty graph, imported a
|
By
Gene Fojtik <genef...@...>
·
#271
·
|
|
Re: Buiding JanusGraph Cluster.
Hi Naveen,
You are right, the various JanusGraph deployment options are a bit hidden in the documentation. You can find them at:
http://docs.janusgraph.org/latest/cassandra.html
A bit older, but more
Hi Naveen,
You are right, the various JanusGraph deployment options are a bit hidden in the documentation. You can find them at:
http://docs.janusgraph.org/latest/cassandra.html
A bit older, but more
|
By
HadoopMarc <m.c.d...@...>
·
#270
·
|
|
Buiding JanusGraph Cluster.
Hey Guys,
I am new to this Graph database world, i am actually trying to build a 3 node JanusGraph cluster in Docker.
I am not sure how Janus instances communicate with each other.
Hey Guys,
I am new to this Graph database world, i am actually trying to build a 3 node JanusGraph cluster in Docker.
I am not sure how Janus instances communicate with each other.
|
By
Naveen Kumar Eppa <nave...@...>
·
#269
·
|
|
Re: Is JanusGraph suitable for Ad Tech ?
This may or may not help with hotspotting, depends on your access patterns. Also, If you are expecting to make queries that have to touch all of the incident edges on a high degree vertex, as opposed
This may or may not help with hotspotting, depends on your access patterns. Also, If you are expecting to make queries that have to touch all of the incident edges on a high degree vertex, as opposed
|
By
Ted Wilmes <twi...@...>
·
#268
·
|
|
Re: Reindex job
Looked at the code. The timeout is 180 seconds.
private static final int TIMEOUT_MS = 180000;
It is not customizable. There is a configuration property 'storage.read-time', which does not seem to
Looked at the code. The timeout is 180 seconds.
private static final int TIMEOUT_MS = 180000;
It is not customizable. There is a configuration property 'storage.read-time', which does not seem to
|
By
Jerry He <jerr...@...>
·
#267
·
|
|
Re: Is JanusGraph suitable for Ad Tech ?
Wow, I was looking for this whole day, thanks Ted !! It will need some serious play time but I believe that it must be used by people, especially
those having these hotspots.
This is exactly what
Wow, I was looking for this whole day, thanks Ted !! It will need some serious play time but I believe that it must be used by people, especially
those having these hotspots.
This is exactly what
|
By
Jakub Liska <liska...@...>
·
#266
·
|
|
Re: Is JanusGraph suitable for Ad Tech ?
Hi Jakub,
You have a few options with JanusGraph when it comes to high degree vertices, neither of them would I consider automatic though.
Commonly you'll see changes made to the graph model to
Hi Jakub,
You have a few options with JanusGraph when it comes to high degree vertices, neither of them would I consider automatic though.
Commonly you'll see changes made to the graph model to
|
By
Ted Wilmes <twi...@...>
·
#265
·
|
|
Is JanusGraph suitable for Ad Tech ?
Hey,
we've been using ScyllaDB for persisting and analyzing impressions and especially cookies, digital fingerprints and other similar internet "identities".
The ultimate goal is finding relationships
Hey,
we've been using ScyllaDB for persisting and analyzing impressions and especially cookies, digital fingerprints and other similar internet "identities".
The ultimate goal is finding relationships
|
By
Jakub Liska <liska...@...>
·
#264
·
|
|
Re: Reindex job
Hi Jerry - HBase appears to be healthy. The graph is about 65 million nodes and 74 million edges.
-Joe
On 6/1/2017 1:05 AM, Jerry He wrote:
Hi Jerry - HBase appears to be healthy. The graph is about 65 million nodes and 74 million edges.
-Joe
On 6/1/2017 1:05 AM, Jerry He wrote:
|
By
Joe Obernberger <joseph.o...@...>
·
#263
·
|