|
Re: Lucene index inconsistency
Yes that's correct. Initially, I sent a mail to the mailing list but it took 2 weeks to show up, so in the meantime I made an account and directly created the topic.
I have reported the topic to the
Yes that's correct. Initially, I sent a mail to the mailing list but it took 2 weeks to show up, so in the meantime I made an account and directly created the topic.
I have reported the topic to the
|
By
inverseintegral42@...
·
#6581
·
|
|
Re: Lucene index inconsistency
I assume you reposted this inadvertenly? I saw you created issue https://github.com/JanusGraph/janusgraph/issues/3146 to document this inconvenience.
Thanks,
Marc
I assume you reposted this inadvertenly? I saw you created issue https://github.com/JanusGraph/janusgraph/issues/3146 to document this inconvenience.
Thanks,
Marc
|
By
hadoopmarc@...
·
#6580
·
|
|
Lucene index inconsistency
Hey everyone,
I'm currently running janusgraph-inmemory with janusgraph-lucence both version 0.6.2
And I'm experiencing strange behaviour when creating an index that contains an underscore in its
Hey everyone,
I'm currently running janusgraph-inmemory with janusgraph-lucence both version 0.6.2
And I'm experiencing strange behaviour when creating an index that contains an underscore in its
|
By
Inverse Integral <inverseintegral42@...>
·
#6579
·
|
|
Incorrect result when lucene index is present
When I run the following code with janusgraph-inmemory and janusgraph-lucene both in version 0.6.2
PropertiesConfiguration conf =
When I run the following code with janusgraph-inmemory and janusgraph-lucene both in version 0.6.2
PropertiesConfiguration conf =
|
By
inverseintegral42@...
·
#6578
·
|
|
Re: Lucene index long overflow
OK, good catch, it is a bug. I had not recognized Long.MAX_VALUE in your query. The LuceneIndex class converts the neq to a range query and adds + 1 to the requested value without any check. The
OK, good catch, it is a bug. I had not recognized Long.MAX_VALUE in your query. The LuceneIndex class converts the neq to a range query and adds + 1 to the requested value without any check. The
|
By
hadoopmarc@...
·
#6577
·
|
|
Re: Lucene index long overflow
Your example indeed seems to work fine. If you change the traversal as such:
g.V().has("age", P.neq(9223372036854775807L))
it should throw an exception. The neq predicate seems to be the problem
Your example indeed seems to work fine. If you change the traversal as such:
g.V().has("age", P.neq(9223372036854775807L))
it should throw an exception. The neq predicate seems to be the problem
|
By
inverseintegral42@...
·
#6576
·
|
|
Re: Lucene index long overflow
I am not sure what the trouble is in your approach. Using variable names key and label might be problematic (it is in the Gremlin Console). Rather than building out your example, I chose to rework the
I am not sure what the trouble is in your approach. Using variable names key and label might be problematic (it is in the Gremlin Console). Rather than building out your example, I chose to rework the
|
By
hadoopmarc@...
·
#6575
·
Edited
|
|
Re: Lucene index long overflow
A similar problem occurs when using the following traversal:graph.traversal()
.V()
.hasLabel("test")
.has("prop", P.neq(-9223372036854775808L))
.count()
A similar problem occurs when using the following traversal:graph.traversal()
.V()
.hasLabel("test")
.has("prop", P.neq(-9223372036854775808L))
.count()
|
By
inverseintegral42@...
·
#6574
·
|
|
Re: Unsatisfied Link Error - Jansi
Turns out that I needed to set the java.io.tmpdir somewhere other than /tmp (assuming that's the default). Not sure why exactly, but by setting JAVA_OPTIONS
Turns out that I needed to set the java.io.tmpdir somewhere other than /tmp (assuming that's the default). Not sure why exactly, but by setting JAVA_OPTIONS
|
By
Joe Obernberger
·
#6573
·
|
|
Unsatisfied Link Error - Jansi
Getting this error when trying to run Gremlin on an AWS EC2 instance - exactly
Getting this error when trying to run Gremlin on an AWS EC2 instance - exactly
|
By
Joe Obernberger
·
#6572
·
|
|
Lucene index long overflow
When I run the following code with janusgraph-inmemory and janusgraph-lucene both in version 0.6.2.
PropertiesConfiguration conf =
When I run the following code with janusgraph-inmemory and janusgraph-lucene both in version 0.6.2.
PropertiesConfiguration conf =
|
By
inverseintegral42@...
·
#6571
·
|
|
Re: sorl janusgraph indexing with http basic authentication
Thanks Marc for the Quick Update.
Thanks Marc for the Quick Update.
|
By
Real Life Adventure
·
#6570
·
|
|
Re: sorl janusgraph indexing with http basic authentication
Unfortunately, JanusGraph does not support basic authentication on its SOLR client yet, see https://github.com/JanusGraph/janusgraph/issues/1056
Before finding this JanusGraph issue, I came across
Unfortunately, JanusGraph does not support basic authentication on its SOLR client yet, see https://github.com/JanusGraph/janusgraph/issues/1056
Before finding this JanusGraph issue, I came across
|
By
hadoopmarc@...
·
#6569
·
|
|
sorl janusgraph indexing with http basic authentication
Hello Everyone,
iam trying to index dynamic graphs with solr index,but iam facing below error.
#############################################
gremlin> sg.V().has('state',
Hello Everyone,
iam trying to index dynamic graphs with solr index,but iam facing below error.
#############################################
gremlin> sg.V().has('state',
|
By
Real Life Adventure
·
#6568
·
Edited
|
|
Re: Lucene index inconsistency
I agree. If you start out with an empty graph, the Lucene index is not created until you add the first vertex. It is not easy to find why Lucene would only allow alphanumeric characters for names of
I agree. If you start out with an empty graph, the Lucene index is not created until you add the first vertex. It is not easy to find why Lucene would only allow alphanumeric characters for names of
|
By
hadoopmarc@...
·
#6567
·
|
|
Lucene index inconsistency
Hey everyone,I'm currently running janusgraph-inmemory with janusgraph-lucence both version 0.6.2
And I'm experiencing strange behaviour when creating an index that contains an underscore in its
Hey everyone,I'm currently running janusgraph-inmemory with janusgraph-lucence both version 0.6.2
And I'm experiencing strange behaviour when creating an index that contains an underscore in its
|
By
inverseintegral42@...
·
#6566
·
|
|
Re: Write vertex program output to HDFS using SparkGraphComputer
Are you sure the JanusGraph hadoop-2.x clients cannot be used with your hadoop-3.x cluster? See: https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/Compatibility.html#Policy
Marc
Are you sure the JanusGraph hadoop-2.x clients cannot be used with your hadoop-3.x cluster? See: https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/Compatibility.html#Policy
Marc
|
By
hadoopmarc@...
·
#6565
·
|
|
Re: Write vertex program output to HDFS using SparkGraphComputer
Thanks for response Mark. Yes i am using JanusGraph as input to SparkGraphComputer. We had Hadoop3 which is not supported in tinkerpop 3.5 but as per documentation its supported by Tinkerpop 3.6, so
Thanks for response Mark. Yes i am using JanusGraph as input to SparkGraphComputer. We had Hadoop3 which is not supported in tinkerpop 3.5 but as per documentation its supported by Tinkerpop 3.6, so
|
By
anjanisingh22@...
·
#6564
·
|
|
Re: Write vertex program output to HDFS using SparkGraphComputer
Hi Anjani,
Does hdfs work from the Gremlin Console? See the example
Hi Anjani,
Does hdfs work from the Gremlin Console? See the example
|
By
hadoopmarc@...
·
#6563
·
Edited
|
|
Re: Nodes with lots of edges
Saw the same thing awhile back. Boxuan put in a Jira for it: https://github.com/JanusGraph/janusgraph/issues/2966
Saw the same thing awhile back. Boxuan put in a Jira for it: https://github.com/JanusGraph/janusgraph/issues/2966
|
By
Matthew Nguyen <nguyenm9@...>
·
#6562
·
|