|
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
·
|
|
Re: Reindex job
How big is your graph? Is your HBase healthy?
I wonder what the default timeout duration is.
It is like a JanusGraph timeout, not a HBase timeout.
Thanks.
Jerry
How big is your graph? Is your HBase healthy?
I wonder what the default timeout duration is.
It is like a JanusGraph timeout, not a HBase timeout.
Thanks.
Jerry
|
By
Jerry He <jerr...@...>
·
#262
·
|
|
Re: Janus Graph performing OLAP with Spark/Yarn
I think there are many success stories/snippets out there on this but no consolidated how-to that I'm aware of. Marc I'm pretty sure I've seen plenty of examples from you on this across various lists
I think there are many success stories/snippets out there on this but no consolidated how-to that I'm aware of. Marc I'm pretty sure I've seen plenty of examples from you on this across various lists
|
By
sju...@...
·
#261
·
|
|
Reindex job
Hi All - I have a graph that I'd like to add an index to. I've tried it through gremlin with a smaller graph and the procedure works fine. With a larger graph, however, I get a timeout
Hi All - I have a graph that I'd like to add an index to. I've tried it through gremlin with a smaller graph and the procedure works fine. With a larger graph, however, I get a timeout
|
By
Joe Obernberger <joseph.o...@...>
·
#260
·
|
|
Re: Janus Graph performing OLAP with Spark/Yarn
Hi John,
I have plans to try this, too, so question seconded. I have TinkerPop-3.1.1 OLAP working on Spark/Yarn (Hortonworks), but the JanusGraph HBase or Cassandra dependencies will make version
Hi John,
I have plans to try this, too, so question seconded. I have TinkerPop-3.1.1 OLAP working on Spark/Yarn (Hortonworks), but the JanusGraph HBase or Cassandra dependencies will make version
|
By
HadoopMarc <m.c.d...@...>
·
#258
·
|
|
Re: Janus Graph performing OLAP with Spark/Yarn
Hi John - I'm also very interested in how to do this. We recently built a graph stored in HBase, and when we run g.E().count(), it took some 5+ hours to complete from the gremlin shell
Hi John - I'm also very interested in how to do this. We recently built a graph stored in HBase, and when we run g.E().count(), it took some 5+ hours to complete from the gremlin shell
|
By
Joe Obernberger <joseph.o...@...>
·
#259
·
|
|
Re: JanusGraph configuration for scala
Filed https://github.com/JanusGraph/janusgraph/issues/295 to track this.
Filed https://github.com/JanusGraph/janusgraph/issues/295 to track this.
|
By
Misha Brukman <mbru...@...>
·
#257
·
|
|
Re: JanusGraph configuration for scala
May I second that? It would be helpful to have all of the versions in one place, even if they are repeating TinkerPop.
May I second that? It would be helpful to have all of the versions in one place, even if they are repeating TinkerPop.
|
By
John Helmsen <john....@...>
·
#255
·
|