Re: Issues with coordinates in Solr during updating of fields

2016-06-14 Thread Zheng Lin Edwin Yeo
Hi David, Thanks for your explanation. I don't see there's a need to to use the gps_0_coordinate and gps_1_coordinate field for the time being, as the query which I'm using are querying directly to the gps field. Regards, Edwin On 14 June 2016 at 12:39, David Smiley wrote: > Zheng, > There ar

Re: Issues with coordinates in Solr during updating of fields

2016-06-13 Thread David Smiley
Zheng, There are a few Solr FieldTypes that are basically composite fields -- a virtual field of other fields. AFAIK they are all spatial related. You don't necessarily need to pay attention to the fact that gps_1_coordinate exists under the hood unless you wish to customize the options on that f

Re: Issues with coordinates in Solr during updating of fields

2016-06-10 Thread Zheng Lin Edwin Yeo
Would like to check, what is the use of the gps_0_coordinate and gps_1_coordinate field then? Is it just to store the data points, or does it have any other use? When I do the query, I found that we are only querying the gps_field, which is something like this: http://localhost:8983/solr/collectio

Re: Issues with coordinates in Solr during updating of fields

2016-05-26 Thread Erick Erickson
Should be fine. When the location field is re-indexed (as it is with Atomic Updates) the two fields will be filled back in. Best, Erick On Thu, May 26, 2016 at 4:45 PM, Zheng Lin Edwin Yeo wrote: > Thanks Erick for your reply. > > It works when I remove the 'stored="true" ' from the gps_0_coordi

Re: Issues with coordinates in Solr during updating of fields

2016-05-26 Thread Zheng Lin Edwin Yeo
Thanks Erick for your reply. It works when I remove the 'stored="true" ' from the gps_0_coordinate and gps_1_coordinate. But will this affect the search functions of the gps coordinates in the future? Yes, I am referring to Atomic Updates. Regards, Edwin On 27 May 2016 at 02:02, Erick Erickso

Re: Issues with coordinates in Solr during updating of fields

2016-05-26 Thread Erick Erickson
Try removing the 'stored="true" ' from the gps_0_coordinate and gps_1_coordinate. When you say "...tried to do an update on any other fileds" I'm assuming you're talking about Atomic Updates, which require that the destinations of copyFields are single valued. Under the covers the location type is

Re: Issues with coordinates in Solr during updating of fields

2016-05-26 Thread Zheng Lin Edwin Yeo
Anyone has any solutions to this problem? I tried to remove the gps_0_coordinate and gps_1_coordinate, but I will get the following error during indexing. ERROR: [doc=id1] unknown field 'gps_0_coordinate' Regards, Edwin On 25 May 2016 at 11:37, Zheng Lin Edwin Yeo wrote: > Hi, > > I have an i

Issues with coordinates in Solr during updating of fields

2016-05-24 Thread Zheng Lin Edwin Yeo
Hi, I have an implementation of storing the coordinates in Solr during indexing. During indexing, I will only store the value in the field name ="gps". For the field name = "gps_0_coordinate" and "gps_1_coordinate", the value will be auto filled and indexed from the "gps" field. But