Re: Arabic words search in solr

2017-01-29 Thread Steve Rowe
Hi Mohan, The analyzer in your text_ar field type looks like an expanded version of the one suggested in the Solr Reference Guide[1]. Can you give an example of a query and the indexed text you expect to match but doesn't? ArabicNormalizationFilterFactory, which uses Lucene’s ArabicNormalizer[

Re: How to use the StandardTokenizer with currency

2016-12-06 Thread Steve Rowe
> > replacement="xxdollarxx"/> > > replacement="\$" replace="all"/> > ignoreCase="true" expand="true"/> > words="stopwords.txt" enablePositionIncrements="true"/> > generateNum

Re: Solr Doc Site Down?

2016-12-01 Thread Steve Rowe
Yup, same for me - see -- Steve www.lucidworks.com > On Dec 1, 2016, at 11:11 AM, Matt Kuiper wrote: > > FYI - This morning I am no longer able to access - > https://cwiki.apache.org/confluence/display/solr/Apache+Solr+Reference+Guide > > Matt

Re: How to use the StandardTokenizer with currency

2016-11-30 Thread Steve Rowe
Hi Vinay, You should be able to use a char filter to convert “$” characters into something that will survive tokenization, and then a token filter to convert it back. Something like this (untested): http://stackoverflow.com/questions/40877567/using-standardtokenizerfactory-wit

Re: Solr Analyzer Language

2016-11-27 Thread Steve Rowe
Hi Chien, By “unsigned” I think you mean without diacritics, for example ‘D’ instead of ‘Đ'. I think you can get what you want by including ICUFoldingFilterFactory in your analyzer - see .

Re: Problem with Han character in ICUFoldingFilter

2016-10-30 Thread Steve Rowe
Among several other foldings, ICUFoldingFilter performs the Unicode NFC transform, which consists of canonical decomposition (NFD) followed by canonical composition. NFD transforms U+FA04 to U+5B85, and canonical composition leaves U+5B85 as-is. U+FA04 is in the “Pronunciation variants from KS

Re: Tutorial not working for me

2016-09-19 Thread Steve Rowe
the scope of "updating" you want to do. > > Regards, > Alex. > > Newsletter and resources for Solr beginners and intermediates: > http://www.solr-start.com/ > > > On 20 September 2016 at 00:02, Steve Rowe wrote: >> Hi Alex, >> >>

Re: Tutorial not working for me

2016-09-19 Thread Steve Rowe
Hi Alex, Sure - I assume you mean independently from SOLR-9526 and SOLR-6871? -- Steve www.lucidworks.com > On Sep 19, 2016, at 12:40 PM, Alexandre Rafalovitch > wrote: > > On 19 September 2016 at 23:37, Steve Rowe wrote: >> I’m going to start working on updating the qu

Re: Tutorial not working for me

2016-09-19 Thread Steve Rowe
In the data driven configset, autoguessing text fields as the “strings" field type is intended to enable faceting. The catch-all _text_ field enables search on all fields, but this may not be a good alternative to fielded search. I’m going to start working on updating the quick start tutorial

Re: How can I set the defaultOperator to be AND?

2016-09-05 Thread Steve Rowe
ast > > On 05/08/2016 14:57, Bastien Latard | MDPI AG wrote: >> Hi Steve, >> >> I read the thread you sent me (SOLR-8812) and it seems that the 6.1 includes >> this fix, as you said. >> I will upgrade. >> Thank you! >> >> Kind regards, >&g

Re: Getting dynamic fields using LukeRequest.

2016-08-09 Thread Steve Rowe
Not sure what the issue is with LukeRequest, but Solrj has Schema API support: You can see which options are supported here:

Re: How can I set the defaultOperator to be AND?

2016-08-05 Thread Steve Rowe
Hi Bastien, Have you tried upgrading to 6.1? SOLR-8812, mentioned earlier in the thread, was released with 6.1, and is directly aimed at fixing the problem you are having in 6.0 (also a problem in 5.5): when mm is not explicitly provided and the query contains explicit operators (except for AN

Re: Difference in boolean query parsing. Solr-5.4.0 VS Solr.6.1.0

2016-08-04 Thread Steve Rowe
It’s fairly likely these differences are as a result of SOLR-2649[1] (released with 5.5) and SOLR-8812[2] (released with 6.1). If you haven’t seen it, I recommend you read Hoss'ss blog “Why Not AND, OR, And NOT?” . If you can, add

Re: EmbeddedSolrServer problem when using one-jar-with-dependency including solr

2016-08-03 Thread Steve Rowe
em in your pom.xml. I hope this >> solves your issue, >> >> >> Thanks >> Rohit >> >> >> On Tue, Aug 2, 2016 at 9:44 AM, Steve Rowe wrote: >> >>> solr-core[1] and solr-solrj[2] POMs have parent POM solr-parent[3], which

Re: EmbeddedSolrServer problem when using one-jar-with-dependency including solr

2016-08-02 Thread Steve Rowe
solr-core[1] and solr-solrj[2] POMs have parent POM solr-parent[3], which in turn has parent POM lucene-solr-grandparent[4], which has a section that specifies dependency versions & exclusions *for all direct dependencies*. The intent is for all Lucene/Solr’s internal dependencies to be manage

Re: How to Add New Fields and Fields Types Programmatically Using Solrj

2016-07-18 Thread Steve Rowe
Hi Jeniba, You can add fields and field types using Solrj with SchemaRequest.Update subclasses - see here for a list: There are quite a few examples of doing both in the tests:

Re: analyzer for _text_ field

2016-07-16 Thread Steve Rowe
ng for a way to specify in schema.xml theh analyzer for the _text_ > field > > On Sat, Jul 16, 2016 at 12:22 PM, Steve Rowe wrote: > >> Waldyr, >> >> I don’t understand your first question - are you asking how to change the >> schema without using the Schema AP

Re: analyzer for _text_ field

2016-07-16 Thread Steve Rowe
david.santama...@gmail.com> wrote: >> >>> >>> The opening and closing single quotes don't match >>> >>> -data-binary '{ ... }’ >>> >>> it should be: >>> >>> -data-binary '{ ... }' >>>

Re: analyzer for _text_ field

2016-07-15 Thread Steve Rowe
; > curl: (3) [globbing] unmatched brace in column 1 > > curl: (3) [globbing] unmatched close brace/bracket in column 28 > > curl: (3) [globbing] unmatched brace in column 1 > > curl: (6) Could not resolve host: name > > curl: (6) Could not resolve host: _text_,type &g

Re: analyzer for _text_ field

2016-07-15 Thread Steve Rowe
Hi Waldyr, An example of changing the _text_ analyzer by first creating a new field type, and then changing the _text_ field to use the new field type (after starting Solr 6.1 with “bin/solr start -e schemaless”): - PROMPT$ curl -X POST -H 'Content-type: application/json’ \ http://local

[ANNOUNCE] Apache Solr 5.5.2 released

2016-06-25 Thread Steve Rowe
25 June 2016, Apache Solr™ 5.5.2 available The Lucene PMC is pleased to announce the release of Apache Solr 5.5.2 Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted se

Re: Fail to load org.apache.solr.schema.PreAnalyzedField$PreAnalyzedAnalyzer for fieldType "preanalyzed"

2016-06-24 Thread Steve Rowe
Hi Liu Peng, Did you mix parts of an older Solr installation into your 6.0.0 installation? There were changes to PreAnalyzedField recently (in 5.5.0: ), and so if you mix old Solr jars with newer ones, you might see things like the error you sho

Re: Solr 6.1.x Release Date ??

2016-06-16 Thread Steve Rowe
Tomorrow-ish. -- Steve www.lucidworks.com > On Jun 16, 2016, at 4:14 AM, Ramesh shankar wrote: > > Hi, > > Yes, i used the solr-6.1.0-79 nightly builds and [subquery] transformer is > working fine in, any idea of the expected release date for 6.1 ? > > Regards > Ramesh > > > > -- > View th

[ANNOUNCE] Apache Solr 6.0.1 released

2016-05-28 Thread Steve Rowe
28 May 2016, Apache Solr™ 6.0.1 available The Lucene PMC is pleased to announce the release of Apache Solr 6.0.1 Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted

Re: Solr Cloud and Multi-word Synonyms :: synonym_edismax parser

2016-05-27 Thread Steve Rowe
I’m working on addressing problems using multi-term synonyms at query time in Lucene and Solr. I recommend these two blogs for understanding the issues (the second one was mentioned earlier in this thread):

Re: Requesting to be added to ContributorsGroup

2016-05-20 Thread Steve Rowe
Hi Sheece, I have CC’d your address for this email, but ordinarily all discussion goes only to the mailing list, so you have to either subscribe to this mailing list - see - or follow the discussion on a service like Nabble. I added

Re: Specifying dynamic field type without polluting actual field names with type indicators

2016-05-19 Thread Steve Rowe
gt; Yes, I know the schema API, however I do not want to specify the field type > problematically for every single field. > > I would like to be able to specify the field type when it is being added > (similar to the name postfixes, but without affecting the field names). > > Thanks,

Re: Specifying dynamic field type without polluting actual field names with type indicators

2016-05-17 Thread Steve Rowe
Hi Peter, Are you familiar with the Schema API?: You can use it to create fields, field types, etc. prior to ingesting your data. -- Steve www.lucidworks.com > On May 17, 2016, at 11:05 AM, Horváth Péter Gergely > wrote: > > Hi A

Re: Requesting to be added to ContributorsGroup

2016-05-03 Thread Steve Rowe
Welcome Sheece, I’ve added you to the ContributorsGroup. -- Steve www.lucidworks.com > On May 3, 2016, at 10:03 AM, Syed Gardezi wrote: > > Hello, > I am a Master student as part of Free and Open Source Software > Development COMP8440 - http://programsandcourses.anu.edu.au/course/COMP8440

Re: Paging and cursorMark

2016-03-22 Thread Steve Rowe
Hi Tom, There is an outstanding JIRA issue to directly support what you want (with a patch even!) but no work on it recently: . If you’re so inclined, please pitch in: bring the patch up-to-date, test it, contribute improvements, etc. -- Steve

Re: Failed to set SSL solr 5.2.1 Windows OS

2016-03-09 Thread Steve Rowe
Debug that module? I will try only to install clean jetty with ssl first. > > Another question. The files jetty.xml\jetty-ssl.xml and the rest of files > in /etc are being used in solr 5.2.1? > On Mar 9, 2016 12:08 AM, "Steve Rowe" wrote: > >> Hmm, not sure

Re: Failed to set SSL solr 5.2.1 Windows OS

2016-03-08 Thread Steve Rowe
ith echo to see the parameters are ok.. > This is the original file as found in > https://www.apache.org/dist/lucene/solr/5.2.1/solr-5.2.1.zip > > > > On Tue, Mar 8, 2016 at 10:25 PM, Steve Rowe wrote: > Hi Ilan, > > Looks like you’re modifying solr.in.sh instead of

Re: Failed to set SSL solr 5.2.1 Windows OS

2016-03-08 Thread Steve Rowe
Hi Ilan, Looks like you’re modifying solr.in.sh instead of solr.in.cmd? FYI running under Cygwin is not supported. -- Steve www.lucidworks.com > On Mar 8, 2016, at 11:51 AM, Ilan Schwarts wrote: > > Hi all, I am trying to integrate solr with SSL on Windows 7 OS > I followed the enable ssl gui

Re: How to convert string field to date

2016-01-28 Thread Steve Rowe
g * in the dynamic field name. > > I can see similar problems in workaround 2. > > Any other suggestions? > > Advanced Thanks. > --sreenivasa kallu > > -Original Message- > From: Steve Rowe [mailto:sar...@gmail.com] > Sent: Thursday, January 28, 2016 1:

Re: How to convert string field to date

2016-01-28 Thread Steve Rowe
Hi Sreenivasa, This is a known bug: https://issues.apache.org/jira/browse/SOLR-8607 (though the problem is not just about catch-all fields as the issue currently indicates - all dynamic fields are affected) Two workarounds (neither tested): 1. Add attr_date via add-dynamic-field instead of add

Re: schemaless vs schema based core

2016-01-22 Thread Steve Rowe
Yes, and also underflow in the case of double/float. -- Steve www.lucidworks.com > On Jan 22, 2016, at 12:25 PM, Shyam R wrote: > > I think, schema-less mode might allocate double instead of float, long > instead of int to guard against overflow, which increases index size. Is my > assumption v

Re: how to change uniqueKey?

2015-11-04 Thread Steve Rowe
Hi Oleksandr, > On Nov 3, 2015, at 9:24 AM, Oleksandr Yermolenko wrote: > > Hello, All, > > I can't find the way to change uniqueKey in "managed-schema" environment!!! […] > 7. The first and the last question: the correct way changing uniqueKey in > schemaless environment? what I missed? Th

Re: contributor request

2015-11-02 Thread Steve Rowe
Yes, sorry, the wiki took so long to come back after changing it to include Alex’s username that I forgot to send notification… Thanks Erick. > On Oct 31, 2015, at 11:27 PM, Erick Erickson wrote: > > Looks like Steve added you today, you should be all set. > > On Sat, Oct 31, 2015 at 12:50 P

Re: Tokenize ShingleFilterFactory results and apply filters to tokens

2015-10-19 Thread Steve Rowe
Hi Vitaliy, I don’t know of any combination of built-in Lucene/Solr analysis components that would do what you want, but there used to be filter called ShingleMatrixFilter that (if I understand both that filter and what you want correctly), would do what you want, following an EdgeNGramFilter:

Re: Can I use tokenizer twice ?

2015-10-14 Thread Steve Rowe
Hi, Analyzers must have exactly one tokenizer, no more and no less. You could achieve what you want by copying to another field and defining a separate analyzer for each. One would create shingles, and the other edge ngrams. Steve > On Oct 14, 2015, at 11:58 AM, vit wrote: > > I have Sol

Re: ctargett commented on http://people.apache.org/~ctargett/RefGuidePOC/current/Index-Replication.html

2015-09-21 Thread Steve Rowe
, > > I'm doing some experiments with other formats for the Ref Guide and playing > around with options for comments. I didn't realize this old experiment from > https://issues.apache.org/jira/browse/SOLR-4889 would send email - I'm > talking to Steve Rowe to see if we

Re: Indexing Fixed length file

2015-08-28 Thread Steve Rowe
Hi Tim, I haven’t heard of people indexing this kind of input with Solr, but the format is quite similar to CSV/TSV files, with the exception that the field separators have fixed positions and are omitted. You could write a short script to insert separators (e.g. commas) at these points (but b

Re: Supported languages

2015-08-04 Thread Steve Rowe
Hi Steve, This page may be useful: In most cases the configurations described there are the only OOTB alternative, so optimality isn’t discussed. I think the path most people take i

Re: Querying Nested documents

2015-07-13 Thread Steve Rowe
Hi rameshn, Nabble has a nasty habit of stripping out HTML and XML markup before sending your mail out to the mailing list - see your message quoted below for how it appears to people who aren’t reading via Nabble. My suggestion: directly subscribe to the solr-user mailing list[1] and avoid Na

Re: unsubscribe

2015-07-07 Thread Steve Rowe
Hi Jacob, See https://lucene.apache.org/solr/resources.html#mailing-lists for unsubscribe info Notice also that every email from the solr-user mailing list contains the following header: List-Unsubscribe: Steve > On Jul 7, 2015, at 11:46 AM, J

Re: accent insensitive field-type

2015-07-03 Thread Steve Rowe
Hi Søren, > On Jul 3, 2015, at 4:27 AM, Søren wrote: > > Thanks Steve! Everything works now. > A little modification: > >"analyzer":{ >"charFilters": [ {"class":"solr.MappingCharFilterFactory", > "mapping":"mapping-ISOLatin1Accent.txt"} ], >"tokenizer": {"class"

Re: accent insensitive field-type

2015-07-02 Thread Steve Rowe
See https://issues.apache.org/jira/browse/SOLR-7749 > On Jul 2, 2015, at 8:31 AM, Steve Rowe wrote: > > Hi Søren, > > “charFilter” should be “charFilters”, and “filter” should be “filters”; and > both their values should be arrays - try this: > > { > &qu

Re: accent insensitive field-type

2015-07-02 Thread Steve Rowe
Hi Søren, “charFilter” should be “charFilters”, and “filter” should be “filters”; and both their values should be arrays - try this: { "add-field-type”: { "name":"myTxtField", "class":"solr.TextField", "positionIncrementGap":"100", "analyzer”: { "charFilters": [ {"class":

Re: Help: Problem in customized token filter

2015-06-18 Thread Steve Rowe
ried state from the previous document.* > > > Thanks for replying, but I am not able to understand this. > > With Regards > Aman Tandon > > On Fri, Jun 19, 2015 at 10:25 AM, Steve Rowe wrote: > >> Hi Aman, >> >> The admin UI screenshot you linked t

Re: Help: Problem in customized token filter

2015-06-18 Thread Steve Rowe
zero length by not emitting a token. Steve www.lucidworks.com > On Jun 19, 2015, at 12:55 AM, Steve Rowe wrote: > > Hi Aman, > > The admin UI screenshot you linked to is from an older version of Solr - what > version are you using? > > Lots of extraneous angle bracket

Re: Help: Problem in customized token filter

2015-06-18 Thread Steve Rowe
Hi Aman, The admin UI screenshot you linked to is from an older version of Solr - what version are you using? Lots of extraneous angle brackets and asterisks got into your email and made for a bunch of cleanup work before I could read or edit it. In the future, please put your code somewhere

Re: MappingCharFilterFactory and start and end offsets

2015-06-18 Thread Steve Rowe
Hi Dmitry, It’s weird that start and end offsets are the same - what do you see for the start/end of ‘$’, i.e. if you take out MCFF? (I think it should be start:5, end:6.) As far as offsets “respecting the remapped token”, are you asking for offsets to be set as if ‘dollarsign' were part of t

Re: ManagedStopFilterFactory not accepting ignoreCase

2015-06-17 Thread Steve Rowe
Oh, I see you already did :) - thanks. - Steve > On Jun 17, 2015, at 11:10 AM, Steve Rowe wrote: > > Hi Mike, > > Looks like a bug to me - would you please create a JIRA? > > Thanks, > Steve > >> On Jun 17, 2015, at 10:29 AM, Mike Thomsen wrote: >> &

Re: ManagedStopFilterFactory not accepting ignoreCase

2015-06-17 Thread Steve Rowe
Hi Mike, Looks like a bug to me - would you please create a JIRA? Thanks, Steve > On Jun 17, 2015, at 10:29 AM, Mike Thomsen wrote: > > We're running Solr 4.10.4 and getting this... > > Caused by: java.lang.IllegalArgumentException: Unknown parameters: > {ignoreCase=true} >at > org.ap

Re: Deleting Fields

2015-05-30 Thread Steve Rowe
Hi Joseph, > On May 30, 2015, at 8:18 AM, Joseph Obernberger > wrote: > > Thank you Erick. I was thinking that it actually went through and removed > the index data; that you for the clarification. I added more info to the Schema API page about this not being true. Here’s what I’ve got so

Re: schema.xml & xi:include -> copyField source :'_my_title' is not a glob and doesn't match any explicit field or dynamicField

2015-05-15 Thread Steve Rowe
... 27 more > Caused by: org.xml.sax.SAXParseException; systemId: solrres:/schema.xml; > lineNumber: 3; columnNumber: 84; Error attempting to parse XML file > (href='schema-common.xml'). > at org.apache.solr.core.Config.(Config.java:145) > ... 29 more > > -Ursprüng

Re: schema.xml & xi:include -> copyField source :'_my_title' is not a glob and doesn't match any explicit field or dynamicField

2015-05-15 Thread Steve Rowe
Hi Clemens, I think the problem is the structure of the composite schema - you’ll end up with: <- your other schema file <- the included schema-common.xml tags from your schema-common.xml. You won’t be able to use it alone in that case, but if you need to do that, you could j

Re: schema modification issue

2015-05-11 Thread Steve Rowe
Hi, Thanks for reporting, I’m working a test to reproduce. Can you please create a Solr JIRA issue for this?: https://issues.apache.org/jira/browse/SOLR/ Thanks, Steve > On May 7, 2015, at 5:40 AM, User Zolr wrote: > > Hi there, > > I have come accross a problem that when using managed

Re: A defect in Schema API with Add a New Copy Field Rule?

2015-05-07 Thread Steve Rowe
> On May 6, 2015, at 8:25 PM, Yonik Seeley wrote: > > On Wed, May 6, 2015 at 8:10 PM, Steve Rowe wrote: >> It’s by design that you can copyField the same source/dest multiple times - >> according to Yonik (not sure where this was discussed), this capability has >&g

Re: A defect in Schema API with Add a New Copy Field Rule?

2015-05-06 Thread Steve Rowe
Hi Steve, It’s by design that you can copyField the same source/dest multiple times - according to Yonik (not sure where this was discussed), this capability has been used in the past to effectively boost terms in the source field. The API isn’t symmetric here though: I’m guessing deleting a

Re: Schema API: add-field-type

2015-05-05 Thread Steve Rowe
Hi Steve, responses inline below: > On Apr 29, 2015, at 6:50 PM, Steven White wrote: > > Hi Everyone, > > When I pass the following: > http://localhost:8983/solr/db/schema/fieldtypes?wt=xml > > I see this (as one example): > > >date >solr.TrieDateField >0 >0 > > las

Re: Attributes in and

2015-04-28 Thread Steve Rowe
Hi Steve, From : > The properties that can be specified for a given field type fall into > three major categories: > • Properties specific to the field type's class. > • General Properties Solr supports f

Re: Add Entry to Support Page

2015-04-21 Thread Steve Rowe
Hi Christoph, I’ve added your wiki name to the ContributorsGroup page, so you should now be able to edit pages on the wiki. Steve > On Apr 21, 2015, at 8:15 AM, Christoph Schmidt > wrote: > > Solr Community, > > I’m Christoph Schmidt (http://www.moresophy.com/de/management), CEO of the >

Re: schemaless slow indexing

2015-03-23 Thread Steve Rowe
> On Mar 23, 2015, at 11:09 AM, Yonik Seeley wrote: > > On Mon, Mar 23, 2015 at 1:54 PM, Alexandre Rafalovitch > wrote: >> I looked at SOLR-7290, but I think the discussion should stay on the >> mailing list for at least one more iteration. >> >> My understanding that the reason copyField exist

Re: schemaless slow indexing

2015-03-23 Thread Steve Rowe
> On Mar 23, 2015, at 11:51 AM, Alexandre Rafalovitch > wrote: > For example, I am not even sure if we can create a copyField > definition via REST API yet.

Re: Solr 5: data_driven_schema_config's solrconfig causing error

2015-03-11 Thread Steve Rowe
like sample_techproducts_configs? Steve > On Mar 11, 2015, at 1:05 PM, Aman Tandon wrote: > > I removed/commented as it was not understood able and not for our use. > > With Regards > Aman Tandon > > On Tue, Mar 10, 2015 at 8:04 PM, Steve Rowe wrote: > >> Hi A

Re: Solr 5: data_driven_schema_config's solrconfig causing error

2015-03-10 Thread Steve Rowe
Hi Aman, The stack trace shows that the AddSchemaFieldsUpdateProcessorFactory specified in data_driven_schema_configs’s solrconfig.xml expects the “booleans” field type to exist. Solr 5’s data_driven_schema_configs includes the “booleans” field type:

Re: Importing XML into SOLR, identifying a failed import document

2015-02-04 Thread Steve Rowe
Fixed in trunk, branch_5x, lucene_solr_5_0 and lucene_solr_4_10. > On Feb 4, 2015, at 2:56 AM, Mikhail Khludnev > wrote: > > Developers, would you mind to fix typo: applying XSL Transformeation ? > > On Tue, Feb 3, 2015 at 9:10 PM, Morris, Paul E. wrote: > >> Caused by: org.apache.solr.hand

Re: Solr WIKI seems really dead this time

2014-12-10 Thread Steve Rowe
@infrabot tweeted 4 hours ago "Currently experiencing some issues with our OSUOSL colo. Current cause is unknown, and no ETA.” 45 minutes ago David Nalley (VP Infra) emailed infra@a.o: That network issue took down our entire presence in Oregon for almost 2 hours. The colo staff has gone

Re: I want to translate solr wiki to Korean.

2014-11-11 Thread Steve Rowe
Hi Jeon Woosung, The Solr community wiki is no longer the official Solr documentation location. The Solr Reference Guide is where Solr documentation is now maintained: . I’m not sure what you mean when you ask “Is t

Re: unable to build solr 4.10.1

2014-10-28 Thread Steve Rowe
Hi Karunakar, 4.10.2 (which will be released some time this week) has a fix for this: https://issues.apache.org/jira/browse/LUCENE-6007 The build failure is caused by solr/contrib/dataimporthandler-extras/ivy.xml Apply this patch to make the build succeed:

Re: Connecting to Solr via HTTPS

2014-09-08 Thread Steve Rowe
Hi Chris, Check out the Solr Reference Guide SolrJ example indexing a doc over HTTPS using CloudSolrServer: Steve www.lucidworks.com On Sep 8, 2014, at 2:19 PM, Christopher Gross wro

Re: Schema API synchronization question

2014-09-03 Thread Steve Rowe
The release vote has passed, the release packages are spreading out to the mirrors, and the announcement should appear in the next 12-24 hours. Steve www.lucidworks.com On Sep 2, 2014, at 11:56 PM, Matthias Broecheler wrote: > Yes, that is what we are seeing. Thanks for pointing me to the righ

Re: Query regarding URL Analysers

2014-08-21 Thread Steve Rowe
UAX29URLEmailTokenizer recognizes URLs (among other things) - you could start with its JFlex grammar and modify it to do what you want. Steve www.lucidworks.com On Aug 21, 2014, at 8:35 AM, Sathyam wrote: > Hi, > > I needed to generate tokens out of a URL such that I am able to get > hierarc

Re: Managed Schema

2014-08-15 Thread Steve Rowe
e > I'm in schema-less mode, sometimes that doesn't work either. If I managed > the schema all 'myself' using the schema API; would that work? > > > On Fri, Aug 15, 2014 at 11:34 AM, Steve Rowe wrote: > >> Hi Joseph, >> >> SOLR-61

Re: Managed Schema

2014-08-15 Thread Steve Rowe
Hi Joseph, SOLR-6137 fixed the NPE you encountered with 4.9, as well a couple other managed schema concurrency issues - it will be included in the next release of Solr: 4.10. Steve On Aug 15, 2014, at 11:00 AM, Joseph Obernberger wrote: > Hi

Re: ICUTokenizer acting very strangely with oriental characters

2014-08-14 Thread Steve Rowe
On Aug 13, 2014, at 1:53 PM, Shawn Heisey wrote: > On 8/12/2014 9:13 PM, Steve Rowe wrote: >> In the table below, the "IsSameS" (is same script) and "SBreak?" (script >> break = not IsSameS) decisions are based on what I mentioned in my previous >&

Re: ICUTokenizer acting very strangely with oriental characters

2014-08-12 Thread Steve Rowe
token boundaries inbetween script boundaries - in the above case, there are word boundaries between each character, but ICUTokenizer throws away punctuation-only sequences between token boundaries. Steve www.lucidworks.com On Tue, Aug 12, 2014 at 9:01 PM, Shawn Heisey wrote: &

Re: ICUTokenizer acting very strangely with oriental characters

2014-08-12 Thread Steve Rowe
Shawn, ICUTokenizer is operating as designed here. The key to understanding this is o.a.l.analysis.icu.segmentation.ScriptIterator.isSameScript(), called from ScriptIterator.next() with the scripts of two consecutive characters; these methods together find script boundaries. Here’s ScriptIt

Re: Solr Wiki ContributorsGroup request

2014-07-29 Thread Steve Rowe
Hi Josh, I’ve added you to the Solr ContributorsGroup page. Note that the Solr Reference Guide[1] is now Solr’s official documentation, and that stale documentation you find in the wiki may have already been fixed there. I encourage you to comment on Solr Reference Guide pages where you find

Re: Java heap space error

2014-07-25 Thread Steve Rowe
On Jul 25, 2014, at 9:13 AM, Shawn Heisey wrote: > On 7/24/2014 7:53 AM, Ameya Aware wrote: > The odd location of the commas in the start of this thread make it hard > to understand exactly what numbers you were trying to say On Jul 24, 2014, at 9:32 AM, Ameya Aware wrote: > I am in process o

Re: Any Solrj API to obtain field list?

2014-05-27 Thread Steve Rowe
Shawn’s code shows that SolrJ parses the JSON for you into NamedList (response.getResponse()). - Steve On May 27, 2014, at 7:11 PM, T. Kuro Kurosaka wrote: > On 05/27/2014 02:55 PM, Steve Rowe wrote: >> You can call the Schema API from SolrJ - see Shawn Heisey’s example code >

Re: Any Solrj API to obtain field list?

2014-05-27 Thread Steve Rowe
You can call the Schema API from SolrJ - see Shawn Heisey’s example code here: Steve On May 27, 2014, at 5:50 PM, T. Kuro Kurosaka wrote: > On 05/27/2014 02:29 PM, Jack Krupansky wrote

Re: special TItle Sorting etc

2014-05-24 Thread Steve Rowe
Hi Harry, You should be using solr.StrField, or KeywordTokenizer with solr.TextField - otherwise you’ll get multiple tokens, and for sorting, you want just one. Here’s one way to get what you want: copyfield your title to a sortable field with a fieldtype something like (untested):

Re: [ANNOUNCE] Apache Solr 4.8.0 released

2014-04-29 Thread Steve Rowe
https://issues.apache.org/jira/browse/SOLR-5228 On Apr 29, 2014, at 10:27 AM, Flavio Pompermaier wrote: > In which sense fields and types are now deprecated in schema.xml? Where can > I found any pointer about this? > > On Mon, Apr 28, 2014 at 6:54 PM, Uwe Schindler wrote: > >> 28 April 2014,

[ANNOUNCE] Apache Solr 4.7.1 released

2014-04-02 Thread Steve Rowe
April 2014, Apache Solr™ 4.7.1 available The Lucene PMC is pleased to announce the release of Apache Solr 4.7.1 Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted se

Re: Request for adding to Contributors Group

2014-03-31 Thread Steve Rowe
Aditya, I’ve added your username to the Solr ContributorsGroup page, so you should now be able to edit wiki pages. Steve On Mar 31, 2014, at 1:25 PM, Aditya Choudhuri wrote: > Hello! > > Please add my email and SolrWiki account in the ContributorsGroup. > > My Wiki name = AdityaChoudhuri <

Re: SolrCloud constantly crashes after upgrading to Solr 4.7

2014-03-19 Thread Steve Rowe
I’m glad it’s working for you now, thanks for reporting back. - Steve On Mar 19, 2014, at 5:32 AM, Martin de Vries wrote: > We are running stable now for a full day, so the bug has been fixed. > > Many thanks! > > Martin

Re: Edit config files

2014-03-18 Thread Steve Rowe
Hi Francois, The config file editing functionality was pulled out of Solr before the 4.7 release; what remains is a read-only config directory browser/file viewer. May I ask why you thought the config file editing functionality was in 4.7? Steve On Mar 18, 2014, at 4:39 PM, Francois Perron w

Re: Deep paging in parallel with solr cloud - OutOfMemory

2014-03-17 Thread Steve Rowe
17, 2014, at 4:40 PM, Mike Hugo wrote: > Thanks Steve, > > That certainly looks like it could be the culprit. Any word on a release > date for 4.7.1? Days? Weeks? Months? > > Mike > > > On Mon, Mar 17, 2014 at 3:31 PM, Steve Rowe wrote: > >> Hi M

Re: Deep paging in parallel with solr cloud - OutOfMemory

2014-03-17 Thread Steve Rowe
Hi Mike, The OOM you’re seeing is likely a result of the bug described in (and fixed by a commit under) SOLR-5875: . If you can build from source, it would be great if you could confirm the fix addresses the issue you’re facing. This fix will be

Re: SolrCloud constantly crashes after upgrading to Solr 4.7

2014-03-17 Thread Steve Rowe
No, only QueryComponent.mergeIds() is only called for distributed queries. Steve On Mar 17, 2014, at 12:18 PM, Walter Underwood wrote: > Does this bug happen in the non-sharded case? --wunder > > On Mar 17, 2014, at 9:15 AM, Steve Rowe wrote: > >> Martin, I’ve committed

Re: SolrCloud constantly crashes after upgrading to Solr 4.7

2014-03-17 Thread Steve Rowe
Martin, I’ve committed the SOLR-5875 fix, including to the lucene_solr_4_7 branch. Any chance you could test the fix? Thanks, Steve On Mar 17, 2014, at 11:16 AM, Steve Rowe wrote: > Martin, > > You’re right, a bug was introduced by SOLOR-5354. I’ve opened an issue

Re: SolrCloud constantly crashes after upgrading to Solr 4.7

2014-03-17 Thread Steve Rowe
Martin, You’re right, a bug was introduced by SOLOR-5354. I’ve opened an issue and will commit the fix shortly. I hope to include this fix in a 4.7.1 release. Steve On Mar 8, 2014, at 1:32 AM, Martin de Vries wrote: >> The memory leak seems

Re: ANNOUNCE: Apache Solr Reference Guide for 4.7

2014-03-05 Thread Steve Rowe
Not sure if it’s relevant anymore, but a few years ago Atlassian resolved as "won’t fix” a request to configure exported PDF compression ratio: . Their suggestion: zip the PDF. I tried that - the resulting zip size is roughly 9MB, so it’s definitel

Re: How does Solr parse schema.xml?

2014-02-26 Thread Steve Rowe
Check out org.apache.solr.schema.IndexSchema#readSchema(), which uses org.apache.solr.schema.FieldTypePluginLoader to parse analyzers. On Feb 26, 2014, at 7:00 PM, Software Dev wrote: > Can anyone point me in the right direction. I'm trying to duplicate the > functionality of the analysis requ

Re: please add me to the solr lucene contributors group

2014-02-22 Thread Steve Rowe
Hi Jayaram, I've added your Jay username to the Solr wiki contributors group, so you should now be able to create/edit pages. Steve my username is Jay. please add me to the solr lucene contributors group. would like to contribute an article on sharding via the implicit router

Re: Highlight results in Arabic are backword

2014-02-06 Thread Steve Rowe
Hi Fatima, I don’t think there’s an actual problem, it just looks like it because the program you’re using to look at the JSON makes a different choice for laying out the highlighting results than it does for the field values. In fact, all the bytes are the same, and in the same order for bot

Re: ant eclipse hangs - branch_4x

2014-01-30 Thread Steve Rowe
Hi Per, You may be seeing the stale-Ivy-lock problem (see IVY-1388). LUCENE-4636 upgraded the bootstrapped Ivy to 2.3.0 to reduce the likelihood of this problem, so the first thing is to make sure you have that version in ~/.ant/lib/ - if not, remove the Ivy jar that’s there and run ‘ant ivy-b

Re: Use a field without predefining it it the schema

2014-01-29 Thread Steve Rowe
>>> Personal website: http://www.outerthoughts.com/ >>> LinkedIn: http://www.linkedin.com/in/alexandrerafalovitch >>> - Time is the quality of nature that keeps events from happening all >>> at once. Lately, it doesn't seem to be working. (Anonymous - via GTD &

<    1   2   3   4   >