Re: Search opening hours

2015-09-06 Thread O. Klein
OK. Just wanted to see if it was possible for documentation. I am using stateless script, so can fix it in client. Thank you for the help. -- View this message in context: http://lucene.472066.n3.nabble.com/Search-opening-hours-tp4225250p4227405.html Sent from the Solr - User mailing list arc

Maximum Number of entires in External Field?

2015-09-06 Thread Aman Tandon
Hi, How much ids information can I define in External File? Currently I am having the 100 Million records in my index. With Regards Aman Tandon

Re: Strange interpretation of invalid ISO date strings

2015-09-06 Thread Paul Libbrecht
Just a word of warning: iso-8601, the date format standard, is quite big, to say the least, and I thus expect very few implementations to be complete.  I survived one such interoperability issue with Safari on iOS6. While they (and JS I think) claim iso-8601, it was not complete and fine grained

Problems upgrading to Solr 5.3.0

2015-09-06 Thread Zheng Lin Edwin Yeo
Hi, I'm trying to upgrade from Solr 5.2.1 to 5.3.0. My Solr is running on SolrCloud and also on external zookeeper 3.4.6. When I tried to migrate the index over from Solr 5.2.1 to Solr 5.3.0, the Solr is not able to startup, and it just give the error saying Solr did not come online within 30 sec

Re: Search opening hours

2015-09-06 Thread Darren Spehr
I think the client code has to normalize the input. There are methods in the spatial libraries that will do this - or maybe I wrote them my code, can't remember. How are you handling parsing the hours? - Darren > On Sep 6, 2015, at 4:56 PM, O. Klein wrote: > > Saw that, but not a lot of info

Re: Search opening hours

2015-09-06 Thread O. Klein
Saw that, but not a lot of info about it. >From my understanding, the way it supposed to work is that a value bigger then boundary get's normalized. I just get an exception "bad x not in boundary rect" Any pointers? -- View this message in context: http://lucene.472066.n3.nabble.com/Search-o

Re: ghostly config issues

2015-09-06 Thread Shawn Heisey
On 9/6/2015 11:27 AM, Mark Fenbers wrote: > This issue still persists. :-(( > > I have moved all the jars to /lib. I have commented out > all references in solrconfig.xml. I have moved all jars to > /lib and removed them from /lib. But nothing has > changed with any of these steps. > > I only

Re: Search opening hours

2015-09-06 Thread Upayavira
I can't answer it, but I wonder if searches related to the international date line might help - that's where the equivalent issue is in spatial terms. Upayavira On Sun, Sep 6, 2015, at 06:32 PM, O. Klein wrote: > OK. I got most of it working. > > I created a worldBounds="0 -1 762 1" > > 15 minu

Re: Search opening hours

2015-09-06 Thread O. Klein
OK. I got most of it working. I created a worldBounds="0 -1 762 1" 15 minute intervals for a week. And use "linestring(1 0, 2 0)" to index data for Monday 00:15 to 00:30 How do I get to index Sunday 24:00 to Monday 01:00 ? I have a feeling the linestring just goes back and doesn't wrap around

Re: ghostly config issues

2015-09-06 Thread Mark Fenbers
On 9/6/2015 12:00 PM, Shawn Heisey wrote: It looks like you have jars in the solrhome/lib directory, which is good. You probably don't need the dataimporthandler jar for -extras if you just want to load from a database. It does appear that you also have directives in your solrconfig.xml, which

Strange interpretation of invalid ISO date strings

2015-09-06 Thread Shawn Heisey
Here's some debug info from a query our code was generating: "querystring": "post_date:[2015-09-0124T00:00:00Z TO 2015-09-0224T00:00:00Z]", "parsedquery": "post_date:[145169280 TO 146033280]", The "24" is from part of our code that interprets the hour, it was being incorrectly added. We

Re: solr now relational between tags?!!

2015-09-06 Thread Erick Erickson
The closest thing to this I know of would be "more like this", you might want to take a look at that capability: https://cwiki.apache.org/confluence/display/solr/MoreLikeThis Best, Erick On Sat, Sep 5, 2015 at 11:29 PM, sara hajili wrote: > hi > i have a social app and i wanna to index all peop

Re: ghostly config issues

2015-09-06 Thread Shawn Heisey
On 9/6/2015 5:28 AM, Mark Fenbers wrote: > Yes, indeed. Moving core.properties up to the parent directory did the > trick. I also created a lib subdir and copied the postgres jar file and > the Solr import handlers into it -- according to the advice from Kevin > Lee responding to my "Config error

Re: ghostly config issues

2015-09-06 Thread Mark Fenbers
On 9/5/2015 10:40 PM, Shawn Heisey wrote: Your solr home is /localapps/dev/EventLog ... Solr automatically loads any jar found in the lib directory in the solr home, so it is attempting to use /localapps/dev/EventLog/lib for the classloader. For the other things you noticed, I believe I know why