RE: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4

2013-03-08 Thread David Smiley (@MITRE.org)
: Wednesday, March 06, 2013 9:34 PM To: solr-user@.apache Subject: Re: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4 Hi Harley, See: http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4 In SOLR-2155 you had to explicitly specify the prefix encoding length, whereas in Solr 4 you

RE: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4

2013-03-08 Thread David Smiley (@MITRE.org)
You're supposed to add geo point data in latitude, longitude format, although some other variations work. Is your updating process supplying a geohash instead? If so you could write a simple Solr UpdateRequestProcessor to convert it to the expected format. But that doesn't help the fact that

RE: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4

2013-03-08 Thread Parks, Harley
AM To: solr-user@lucene.apache.org Subject: RE: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4 You're supposed to add geo point data in latitude, longitude format, although some other variations work. Is your updating process supplying a geohash instead? If so you could write a simple Solr

RE: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4

2013-03-07 Thread Parks, Harley
(@MITRE.org) [mailto:dsmi...@mitre.org] Sent: Wednesday, March 06, 2013 9:34 PM To: solr-user@lucene.apache.org Subject: Re: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4 Hi Harley, See: http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4 In SOLR-2155 you had to explicitly specify

RE: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4

2013-03-07 Thread Parks, Harley
David Smiley: Because we use a 3rd party software.. I checked to see if this would still worked... search query still works. But adding data seems to be broken, likely because of the geohash type. So, below is the log file, which tells me to upgrade If possible, it would be great to simply

Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4

2013-03-06 Thread Parks, Harley
I'm having trouble migrating the geohash fields from my Solr 3.4 schema to the Solr 4 schema. this is the 3.4 type and class: fieldType name=geohash class=solr2155.solr.schema.GeoHashField length=12/ is the below Solr 4 spatial type the right configuration to implement data being stored in

Re: Migrate Solr 3.4 w/ solr-1255 GeoHash to Solr 4

2013-03-06 Thread David Smiley (@MITRE.org)
Hi Harley, See: http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4 In SOLR-2155 you had to explicitly specify the prefix encoding length, whereas in Solr 4 you specify how much precision you need and it figures out what the length is that satisfies that. When you first use the field, it'll