|
Re: How to list properties from gremlin console
Hi Gene,
Never tried to do it before seeing your post, but this seems workable:
gremlin> import static org.janusgraph.graphdb.configuration.GraphDatabaseConfiguration.*
==>groovy.grape.Grape,
Hi Gene,
Never tried to do it before seeing your post, but this seems workable:
gremlin> import static org.janusgraph.graphdb.configuration.GraphDatabaseConfiguration.*
==>groovy.grape.Grape,
|
By
Jason Plurad <plu...@...>
·
#302
·
|
|
Re: Indexes stuck in INSTALLED status
Thanks Rafael, I did see your post and I gave those settings a shot but that alone didn't seem to resolve the problem. Following the steps in my last post seems to be a repeatable solution to getting
Thanks Rafael, I did see your post and I gave those settings a shot but that alone didn't seem to resolve the problem. Following the steps in my last post seems to be a repeatable solution to getting
|
By
Brandon Dean <engr...@...>
·
#301
·
|
|
Re: [WARNING] 0.1.0 to 0.1.1 upgrade
It seems like 0.2.0 is on the horizon for June/early July. If the next TinkerPop release slips, we may consider a 0.1.2 release to fix the JG 0.1.0 compatibility issue and include the following
It seems like 0.2.0 is on the horizon for June/early July. If the next TinkerPop release slips, we may consider a 0.1.2 release to fix the JG 0.1.0 compatibility issue and include the following
|
By
Alexander Patrikalakis <amcpatr...@...>
·
#300
·
|
|
Re: Indexes stuck in INSTALLED status
I've helped another user that asked me me in private exactly the same issue as yourself and my solution worked for him... you may wanna try it as well:
Let me know if it works so I can push a
I've helped another user that asked me me in private exactly the same issue as yourself and my solution worked for him... you may wanna try it as well:
Let me know if it works so I can push a
|
By
Rafael Fernandes <luizr...@...>
·
#299
·
|
|
Index not being used with 'Between" clause
Hello,
Have an index in a property "latitude", when using with the between clause, the index is not being utilized
g.V().has("latitude", 33.333") works well, however
g.V().has(“latitude”,
Hello,
Have an index in a property "latitude", when using with the between clause, the index is not being utilized
g.V().has("latitude", 33.333") works well, however
g.V().has(“latitude”,
|
By
Gene Fojtik <genef...@...>
·
#296
·
|
|
Re: Indexes stuck in INSTALLED status
After some further investigation, I realized I did apparently have one transaction that was holding things up. Using graph.tx().rollback() had no effect so I used this method I found after some
After some further investigation, I realized I did apparently have one transaction that was holding things up. Using graph.tx().rollback() had no effect so I used this method I found after some
|
By
Brandon Dean <engr...@...>
·
#295
·
|
|
Re: Geo Data
Thanks for feedback, very helpful.
Thanks for feedback, very helpful.
|
By
JZ <zamb...@...>
·
#294
·
|
|
Re: Geo Data
If it's an index query, it should use the index backend. If it's mid-traversal, it will likely use a geo predicate which uses spatial4j [1]. ES, solr use lucene. Lucene also uses spatial4j. So I
If it's an index query, it should use the index backend. If it's mid-traversal, it will likely use a geo predicate which uses spatial4j [1]. ES, solr use lucene. Lucene also uses spatial4j. So I
|
By
Robert Dale <rob...@...>
·
#297
·
|
|
Re: Who is using JanusGraph in production?
Awesome! Could you also share the links here when ready?
Tunay Gür <tuna...@...>于2017年6月7日周三 上午6:47写道:
--
Liu-Cheng Xu
Awesome! Could you also share the links here when ready?
Tunay Gür <tuna...@...>于2017年6月7日周三 上午6:47写道:
--
Liu-Cheng Xu
|
By
Liu-Cheng Xu <xuliuc...@...>
·
#298
·
|
|
Re: Character case behaviour different with or without indices
Ok, thanks. That is good to know.
Ok, thanks. That is good to know.
|
By
ni...@...
·
#293
·
|
|
Re: Character case behaviour different with or without indices
If you want to use both, you have to use TEXTSTRING mapping.
If you want to use both, you have to use TEXTSTRING mapping.
|
By
tpr...@...
·
#292
·
|
|
Re: Character case behaviour different with or without indices
Great.
I was using STRING and TEXT indices and janus was only finding the TEXT one. I stopped using the TEXT index and it started to behave as expected.
I had assumed that janus would use the right
Great.
I was using STRING and TEXT indices and janus was only finding the TEXT one. I stopped using the TEXT index and it started to behave as expected.
I had assumed that janus would use the right
|
By
ni...@...
·
#291
·
|
|
Geo Data
(1) Was looking at the GEOfacilities, does someone know what algorithm or approach is used by theimplementation for GEO location calculations?
(1) Was looking at the GEOfacilities, does someone know what algorithm or approach is used by theimplementation for GEO location calculations?
|
By
JZ <zamb...@...>
·
#290
·
|
|
Re: Character case behaviour different with or without indices
Are you using DEFAULT mapping or no Mapping ?
If so, DEFAULT mapping or no mapping use TEXT mapping which are bind to Text ES datatype
Are you using DEFAULT mapping or no Mapping ?
If so, DEFAULT mapping or no mapping use TEXT mapping which are bind to Text ES datatype
|
By
tpr...@...
·
#288
·
|
|
Re: Who is using JanusGraph in production?
We are (uber) using JG in production at the moment. We're recently started to contribute some of our code back and it's in plan to publish our learnings, benchmarks etc as series of blog posts.
We are (uber) using JG in production at the moment. We're recently started to contribute some of our code back and it's in plan to publish our learnings, benchmarks etc as series of blog posts.
|
By
Tunay Gür <tuna...@...>
·
#287
·
|
|
How to list properties from gremlin console
Is there a way to list the current graph properties from the gremlin console? Looking for the properties set in the *.properties file that have been sourced on start-up.
-gene
Is there a way to list the current graph properties from the gremlin console? Looking for the properties set in the *.properties file that have been sourced on start-up.
-gene
|
By
Gene Fojtik <genef...@...>
·
#286
·
|
|
Re: Character case behaviour different with or without indices
Elasticsearch 5.1.1
By
Nigel Brown <ni...@...>
·
#289
·
|
|
Re: Character case behaviour different with or without indices
which indexing backend do you use ?
which indexing backend do you use ?
|
By
tpr...@...
·
#285
·
|
|
Indexes stuck in INSTALLED status
I've been struggling with my indexes getting stuck in the INSTALLED status with no apparent way to get them out of that status. After much frustration, I started with a completely fresh install of
I've been struggling with my indexes getting stuck in the INSTALLED status with no apparent way to get them out of that status. After much frustration, I started with a completely fresh install of
|
By
Brandon Dean <engr...@...>
·
#284
·
|
|
Re: Odd behavior with elasticsearch and metapropeties
I know meta-properties only support single value. My question was, should it return an error when you have a property that is defined as cardinality SET or LIST and you're trying to use it in a
I know meta-properties only support single value. My question was, should it return an error when you have a property that is defined as cardinality SET or LIST and you're trying to use it in a
|
By
Adam Holley <holl...@...>
·
#283
·
|