re:New Solr installation fails to create core

2015-08-07 Thread Scott Derrick
I upgraded to Java 1.8.51 no change, I downgraded solr to 5.1.0 no change? It must have something to do with the OS, this server is CentOS 6 Scott -- Even if you're on the right track, you'll get run over if you just sit there. Will Rogers

New Solr installation fails to create collection/core

2015-08-10 Thread Scott Derrick
I've sent this twice and it appears the list is dropping it. I think including the entire log output exceeds the size limit, so I've truncated the log in hopes it will get through. I installed solr 5.2.1 onCentOS 6 got the tgz file and extracted the install_solr_service.sh file ran the instal

Re: New Solr installation fails to create collection/core

2015-08-10 Thread Scott Derrick
, Erick On Mon, Aug 10, 2015 at 7:53 AM, Scott Derrick wrote: I've sent this twice and it appears the list is dropping it. I think including the entire log output exceeds the size limit, so I've truncated the log in hopes it will get through. I installed solr 5.2.1 onCentOS 6 got

Re: New Solr installation fails to create collection/core

2015-08-10 Thread Scott Derrick
Regards, Alex. Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter: http://www.solr-start.com/ On 10 August 2015 at 11:37, Scott Derrick wrote: I ran the command bin/solr create -c demo as root! Not sure how I can raise my permissions any more? Scott Original M

Re: New Solr installation fails to create collection/core

2015-08-10 Thread Scott Derrick
Shawn, That was it exactly! Thanks, Scott Original Message Subject: Re: New Solr installation fails to create collection/core From: Shawn Heisey To: solr-user@lucene.apache.org Date: 08/10/2015 11:08 AM On 8/10/2015 10:21 AM, Scott Derrick wrote: No I copied that

date field in the schema causing a problem

2015-08-10 Thread Scott Derrick
I'm attempting to index my data. Which are autogenerated html documents, the source being TEI(xml) documents. I created the collection with sudo su - solr -c "/opt/solr/bin/solr create -c mbepp -n data_driven_schema_configs" I'm indexing with find . -mindepth 2 -not -name "person_*.*" -not

Re: date field in the schema causing a problem

2015-08-10 Thread Scott Derrick
Chris, mucho thanks. The solr.RegexReplaceProcessorFactory looks like what I need. What a fantastic search engine this is! thanks again, Scott On 8/10/2015 5:21 PM, Chris Hostetter wrote: : : : : Most documents have a correctly formatted date string and I would like to keep : that data

Using the date field for searching

2015-08-11 Thread Scott Derrick
If I query date:1885 I get an error org.apache.solr.common.SolrException: Invalid Date String:'1885' If I query date:1885* I get no results. and yet there are numerous docs with a year of 1885 in the date string, like so 1885-02-08T00:00:00Z if I query date:1885-02-08T00:00:00Z I get 9 r

Re: Using the date field for searching

2015-08-11 Thread Scott Derrick
https://cwiki.apache.org/confluence/display/solr/Working+with+Dates :Sagar -Original Message- From: Scott Derrick [mailto:sc...@tnstaafl.net] Sent: Tuesday, August 11, 2015 3:02 PM To: solr-user@lucene.apache.org Subject: Using the date field for searching If I query date:1885 I get an

Highlighting

2015-08-11 Thread Scott Derrick
I guess I really don't get Highlighting in Solr. We are transitioning from Google Custom Search which generally sucks, but does return nicely formatted highlighted fragment. I turn highlighting on hl=true in the query and I get a highlighting section returned at the bottom of the page, each i

Re: Highlighting

2015-08-12 Thread Scott Derrick
.fl specifying which field(s) to highlight. p.s. Erick Erickson surely likes your e-mail domain :) — Erik Hatcher, Senior Solutions Architect http://www.lucidworks.com <http://www.lucidworks.com/> On Aug 11, 2015, at 9:02 PM, Scott Derrick wrote: I guess I really don't ge

Re: Highlighting

2015-08-12 Thread Scott Derrick
light. p.s. Erick Erickson surely likes your e-mail domain :) — Erik Hatcher, Senior Solutions Architect http://www.lucidworks.com <http://www.lucidworks.com/> On Aug 11, 2015, at 9:02 PM, Scott Derrick wrote: I guess I really don't get Highlighting in Solr. We are transitio

Highlighting, all matches show empty {}

2015-08-12 Thread Scott Derrick
tml": {}, "/home/scott/workspace/mbel-work/tei2html/build/web/./L13943/L13943.html": {}, "/home/scott/workspace/mbel-work/tei2html/build/web/./A10594/A10594.html": {}, "/home/scott/workspace/mbel-work/tei2html/build/web/./A10385B/A10385B.html": {}, "

Re: Highlighting, all matches show empty {}

2015-08-12 Thread Scott Derrick
ts: requests: Was: 117, Now: 156, Delta: 39 Looks to me like there were 39 fragments or something processed, yet you can see above the highlights are empty {}??? though all the the other libraries in the highlighter showed no changes. which are these... org.apache.solr.highlight.BreakIteratorBoundaryScann

Re: Highlighting, all matches show empty {}

2015-08-12 Thread Scott Derrick
and fl=field1, field2, should be fine, let's start as simply as possible and work up maybe? Best, Erick On Wed, Aug 12, 2015 at 7:59 AM, Scott Derrick wrote: I think the highlighter is actually running, but I'm not getting the results?? with this request http://localhost:8983/solr/m

dataImportHandler

2015-08-12 Thread Scott Derrick
I am trying to index a slew of web pages but want to restrict what gets indexed I'm trying to use a dataImportHandler to do this. my initial config to test this approach isn't doing what I expect The FileListEntityProccessor is feeding

Default field for query

2015-08-13 Thread Scott Derrick
If i specify a search q=foo bar , Is there a way to set a default field if a field is not given? Sent by from my Android device. On 4:00am, August 13, 2015, griglo wrote: Hello, I have rather simple question regarding copyFields and appending of values. I am using Solr 3.7. Is it possible to de

Re: Default field for query

2015-08-13 Thread Scott Derrick
thanks Alex, I'll give it a shot. Scott Original Message Subject: Re: Default field for query From: Alexandre Rafalovitch To: solr-user Date: 08/13/2015 12:38 PM On 13 August 2015 at 12:19, Scott Derrick wrote: If i specify a search q=foo bar , Is there a way to

Admin Login

2015-08-15 Thread Scott Derrick
I'm somewhat puzzled there is no built in security. I can't image anybody is running a public facing solr server with the admin page wide open? I've searched and haven't found any solutions that work out of the box. I've tried the solutions here to no avail. https://wiki.apache.org/solr/Solr

Re: Admin Login

2015-08-15 Thread Scott Derrick
://observer.wunderwood.org/ (my blog) On Aug 15, 2015, at 4:15 PM, Scott Derrick wrote: I'm somewhat puzzled there is no built in security. I can't image anybody is running a public facing solr server with the admin page wide open? I've searched and haven't found any sol

Re: Admin Login

2015-08-16 Thread Scott Derrick
p://solr:port/solr/collection/update?commit=true&stream.body=*:* Best Erick On Sat, Aug 15, 2015 at 6:57 PM, Scott Derrick wrote: Walter, actually that explains it perfectly! I will move behind my apache server... thanks, Scott On 8/15/2015 6:15 PM, Walter Underwood wrote: No one runs a pub

Query term matches

2015-08-16 Thread Scott Derrick
Is there a way to get the list of terms that matched in a query response? I realize the q parameter is returned, but I'm looking for just the list of terms and not the operators. Scott -- To those leaning on the sustaining infinite, to-day is big with blessings. Mary Baker Eddy

Re: Query term matches

2015-08-16 Thread Scott Derrick
one document match's Mary another matches Mary and martyr I will look at splainer.io Scott Original Message Subject: Re: Query term matches From: Toke Eskildsen To: solr-user@lucene.apache.org Date: 08/16/2015 11:39 AM Scott Derrick wrote: Is there a way to get the list of

Re: Query term matches

2015-08-16 Thread Scott Derrick
the specific docs that are returned, highlighting will tell you _some_ of them. Why only some? Because usually only the best N snippets are returned, say 3 (it's configurable). And it's still possible that four terms beginning with "mar" were in the returned doc (or N+1...). FWIW,

Re: Query term matches

2015-08-16 Thread Scott Derrick
splainer doesn't return anything the debug parameter can. On 8/16/2015 11:39 AM, Toke Eskildsen wrote: Scott Derrick wrote: Is there a way to get the list of terms that matched in a query response? Add debug=query to your request: https://wiki.apache.org/solr/CommonQueryParameters#debug

xsl error

2015-08-16 Thread Scott Derrick
I'm using a dataimporthandler class="org.apache.solr.handler.dataimport.DataImportHandler"> html-config.xml I'm using the xsl attribute on all the entities, but this one is throwing an excpetion. This xsl is used in a production document conversion process with no problems

Re: Solr Matched Terms

2015-08-18 Thread Scott Derrick
I second that question! Inquiring minds want to know! On 8/18/2015 7:19 AM, Basheer Shaik wrote: Hi, I am new to Solr. We have a requirement to carry out fuzzy search. I am able to do this and figure out the documents that meet the fuzzy search criteria. Is there a way to find out the list of t

DIH FileDataSource and delta-import

2015-09-09 Thread Scott Derrick
I can't seem to get delta-imports to work with a FileDataSource DIH full-import works fine. delta-import always imports nothing, no error. I can add a new file or change an existing one, no joy. my requesthandler declaration class="org.apache.solr.handler.dataimport.DataImportHandler">

Modified stat of index

2016-08-16 Thread Scott Derrick
I need to retrieve the last modified timestamp of my search index. Is there a query I can use or is it stored in a particular file? thansk, Scott -- One man's "magic" is another man's engineering. "Supernatural" is a null word.” Robert A. Heinlein

Re: Modified stat of index

2016-08-17 Thread Scott Derrick
. Newsletter and resources for Solr beginners and intermediates: http://www.solr-start.com/ On 17 August 2016 at 07:18, Scott Derrick wrote: I need to retrieve the last modified timestamp of my search index. Is there a query I can use or is it stored in a particular file? thansk, Scott -- One man&#