Re: Schema API: Modify Unique Key

2017-03-27 Thread Steve Rowe
Hi Nabil, There is an open JIRA issue to implement this functionality, but I haven’t had a chance to work on it recently: . Consequently, I’m not sure which release will have it. Patches welcome! -- Steve www.lucidworks.com > On Mar 27, 2017,

Re: The downsides of not splitting on whitespace in edismax (the old albino elephant prob)

2017-03-29 Thread Steve Rowe
Thanks Doug, excellent analysis! In implementing the SOLR-9185 changtes, I considered a compromise approach to the term-centric / field-centric axis you describe in the case of differing field analysis pipelines: finding common source-text-offset bounded slices in all per-field queries, and the

Re: edismax parsing confusion

2017-04-03 Thread Steve Rowe
Hi Abhishek, Which version of Solr are you using? I can see that the parsed queries are different, but they’re also very similar, and there’s a lot of detail there - can you be more specific about what the problem is? -- Steve www.lucidworks.com > On Apr 3, 2017, at 4:54 AM, Abhishek Mishra

Re: Solr Shingle is not working properly in solr 6.5.0

2017-04-04 Thread Steve Rowe
Hi Aman, I’ve created for this problem. -- Steve www.lucidworks.com > On Mar 31, 2017, at 7:34 AM, Aman Deep Singh > wrote: > > Hi Rich, > Query creation is correct only thing what causing the problem is that > Boolean + query while building

Re: Solr Shingle is not working properly in solr 6.5.0

2017-04-05 Thread Steve Rowe
Aman, In forthcoming Solr 6.5.1, this problem will be addressed by setting a new option named “enableGraphQueries” to “false". Your fieldtype will look like this: - - -- Steve www.lucidworks.com > On Apr 4, 2017, at 5:32 PM, Steve Rowe wrote: >

Re: Solr Shingle is not working properly in solr 6.5.0

2017-04-05 Thread Steve Rowe
-time analyzers when request param sow=false. (Steve Rowe) - -- Steve www.lucidworks.com > On Apr 5, 2017, at 5:43 PM, Markus Jelsma wrote: > > Steve - please include a broad description of this feature in the next > CHANGES.txt. I will forget about this thread but need to be

Re: Possible bug

2017-04-06 Thread Steve Rowe
Thanks for reporting. This was fixed by , which will be included in forthcoming Solr 6.5.1. -- Steve www.lucidworks.com > On Apr 6, 2017, at 12:54 PM, OTH wrote: > > I'm not sure if any one else had this problem, but this is a problem I had: >

Re: Solr Shingle is not working properly in solr 6.5.0

2017-04-07 Thread Steve Rowe
t too): >> >> - >> * SOLR-10423: Disable graph query production via schema configuration >> . >> This fixes broken queries for ShingleFilter-containing query-time >> analyzers when request param sow=false. >>(Steve Rowe) >> - &g

Re: BUILD FAILED solr 6.5.0

2017-04-19 Thread Steve Rowe
Hi Bernd, Your Ivy may be outdated - the project requires minimum 2.3. Try removing all pre-2.3 ivy-*.jar files from ~/.ant/lib/, then running “ant ivy-bootstrap”. -- Steve www.lucidworks.com > On Apr 19, 2017, at 10:55 AM, Bernd Fehling > wrote: > > Tried today to have a look at solr 6.5.0

Re: BUILD FAILED solr 6.5.0

2017-04-20 Thread Steve Rowe
gt; Hi Steve, > > thanks a lot for solving my problem. > > Would it be possible to check for ivy >= 2.3 at start of build > and give your hint as message to the user? > > Regards > Bernd > > Am 19.04.2017 um 17:01 schrieb Steve Rowe: >> Hi Bernd, >> >&

Re: Enable https for Solr

2017-04-21 Thread Steve Rowe
Hi Edwin, See . -- Steve www.lucidworks.com > On Apr 21, 2017, at 12:03 AM, Zheng Lin Edwin Yeo > wrote: > > Hi, > > I would like to find out, how can we allow Solr to accept secure > connections via https? > > I am using SolrCl

Re: How to use Wordnet in solr?

2017-04-21 Thread Steve Rowe
From (also applies to SynonymFilter): - format: (optional; default: solr) Controls how the synonyms will be parsed. The short names solr (for SolrSynonymParser) and wordnet (for Word

Re: Enable https for Solr

2017-04-21 Thread Steve Rowe
ed by: sun.security.provider.certpath.SunCertPathBuilderException: > unable to > find valid certification path to requested target >at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown > Sourc > e) >at sun.security.provider.certpath.SunCertPathBui

Re: Solr SSL setup with bought certificate

2017-05-09 Thread Steve Rowe
Hi, AFAICT the Solr 5.5.4 install_solr_service.sh doesn’t support Centos (support was added in 6.3: SOLR-9475). How did you make it work? I’m guessing there are permissions problems in your installation directory, such that the account being used to start Solr doesn’t have execute and/or read

Re: Solr Features 6.5.1 v/s 6.1

2017-05-12 Thread Steve Rowe
Hi, See 6.5.1 CHANGES: -- Steve www.lucidworks.com > On May 12, 2017, at 8:39 AM, Sweta Parekh wrote: > > Hi Team, > Can you please help me with new features, enhancements and improvements on > Solr 6.5.1 v/s 6.1 as we are planning to

Re: Why is Standard Tokenizer not separating at this comma?

2017-05-24 Thread Steve Rowe
Hi Robert, The StandardTokenizer implements the word boundaries rules from UAX#29 , discarding anything between boundaries that is exclusively non-alphanumeric (e.g. punctuation). -- Steve www.lucidworks.com > On May 24, 2017, at 3:05 PM, Rober

Re: [Simplified my question] How to enhance solr.StandardTokenizerFactory? (was: Why is Standard Tokenizer not separating at this comma?)

2017-05-24 Thread Steve Rowe
Hi Robert, Two possibilities come to mind: 1. Use a char filter factory (runs before the tokenizer) to convert commas between digits to spaces, e.g. PatternReplaceCharFilterFactory

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: 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
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: 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: 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: 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: 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: 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 <

[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: [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,

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: 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: 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: 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: 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: 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: 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-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: 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: 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: Concurent indexing

2013-10-14 Thread Steve Rowe
Hi maephisto, This issue can cause an update deadlock, and may have caused the problem you were seeing: https://issues.apache.org/jira/browse/SOLR-4327 - a fix will be included in forthcoming 4.5.1. Steve On Oct 14, 2013, at 10:20 AM, maephisto wrote: > Thank you! > > I was worried because

Re: [Schemaless mode] Solr admin - core schema exception

2013-10-14 Thread Steve Rowe
Hi Alessandro, I know I've seen this problem in the past, but I just tried it with Solr 4.5, and it works as expected - the URL shown in the Schema view is - notice that the file is not "n

Re: solr wiki edit privs (or just fix a typo)

2013-10-29 Thread Steve Rowe
Thanks for reporting, Chuck. I’ve added your username to the ContributorsGroup page on the Solr wiki, so you should be able to make this change now. Steve On Oct 29, 2013, at 11:37 AM, chuck wrote: > > > There's a mistake in the sample xml at > https://wiki.apache.org/solr/AnalyzersTokeniz

Re: Request for Contributors Group

2013-11-28 Thread Steve Rowe
Ahmet, Because the Confluence wiki hosts the releasable Solr ref guide, only those who have signed ICLAs can edit it - this is ASF policy. (Sorry, I can’t find a web page describing this policy.) Currently, editing on the Solr space in the Confluence wiki is restricted to Lucene/Solr committe

Re: [Solr Wiki] Your wiki account data

2013-12-14 Thread Steve Rowe
Hello madeinch, Please see the Apache Public Forum Archive Policy - instructions for archive modification are at the bottom of the page (read the rest of the page first, though): http://www.apache.org/foundation/public-archives.html Steve

Re: Splitting strings in Java - how to escape delimiter characters?

2014-01-14 Thread Steve Rowe
Hi Shawn, Solrj’s StrUtils.splitSmart() should do exactly what you want - in the first pass, split on semicolon and don’t decode backslash escaping, and then in the inner loop, use the same method to split on colons and decode backslash escaping. I think :). Steve On Jan 14, 2014, at 10:07

Re: Use a field without predefining it it the schema

2014-01-28 Thread Steve Rowe
Hi Hakim, Check out the section of the Solr Reference Guide on modifying the schema via REST API: https://cwiki.apache.org/confluence/display/solr/Schema+API#SchemaAPI-Modifytheschema Steve On Jan 28, 2014, at 5:00 PM, Hakim Benoudjit wrote: > Hi guys > > With the new version of solr (4.6),

Re: Use a field without predefining it it the schema

2014-01-29 Thread Steve Rowe
lexandrerafalovitch >> - 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 >> book) >> >> >> On Wed, Jan 29, 2014 at 5:45 AM, Steve Rowe wrote: >>> Hi Hak

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 &

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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: dataconfig to index ZIP Files

2013-06-28 Thread Steve Rowe
Hi, Maybe fileName="*.zip" instead of ".*zip" ? Steve On Jun 28, 2013, at 2:20 PM, ericrs22 wrote: > So I thought I had it correctly setup but I'm receiveing the following > response to my Data Config > > Last Update: 18:17:52 > > (Duration: 07s) > > Requests: 0 (0/s), Fetched: 0 (0/s), Ski

Re: Access to Solr Wiki

2013-07-02 Thread Steve Rowe
I've added GoraMohanty to the Solr wiki's ContributorsGroup page. - Steve On Jul 2, 2013, at 3:25 PM, Gora Mohanty wrote: > Hi, > > May I please be added to the list of editors to the > Solr Wiki as I see that some earlier changes seem > to have gone missing. My user name is GoraMohanty > Thank

Re: Securing SOLR REST API

2013-07-10 Thread Steve Rowe
Hi Guilherme, see - Steve On Jul 10, 2013, at 10:22 AM, "Pires, Guilherme" wrote: > Hello Everyone, > > I have been developing several solutions, mainly geospatial, that include > solr. > The availability of the restful services seem to bother a lot

Re: Patch review request: SOLR-5001 (adding book links to the website)

2013-07-12 Thread Steve Rowe
Hi Alexandre, I'll work on this today. Steve On Jul 12, 2013, at 8:26 AM, Alexandre Rafalovitch wrote: > Hello, > > As per earlier email thread, I have created a patch for Solr website to > incorporate links to my new book. > > It would be nice if somebody with commit rights for the (markdow

[ANNOUNCE] Apache Solr 4.4 released

2013-07-23 Thread Steve Rowe
July 2013, Apache Solr™ 4.4 available The Lucene PMC is pleased to announce the release of Apache Solr 4.4 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 search, d

Re: Email regular expression.

2013-07-30 Thread Steve Rowe
Luis, do you know about UAX29URLEmailTokenizerFactory?: On Jul 30, 2013, at 10:53 AM, Luis Cappa Banda wrote: > Hello everyone! > > Unfortunately I have to search all E-mail addresses found in a te

Proposal/request for comments: Solr schema annotation

2013-07-31 Thread Steve Rowe
In thinking about making the entire Solr schema REST-API-addressable (SOLR-4898), I'd like to be able to add arbitrary metadata at both the top level of the schema and at each leaf node, and allow read/write access to that metadata via the REST API. Some uses I've thought of for such a facility

Re: Invalid UTF-8 character 0xfffe during shard update

2013-08-05 Thread Steve Rowe
Unicode noncharacters are perfectly valid for the purpose of interchange (though as Robert points out, XML has its own ideas about this, separately from the Unicode standard). From : Q: Are noncharacters invalid in Unicode strings and UTFs?

Re: Real user :)

2013-08-05 Thread Steve Rowe
Erlang, I've added you to the Solr ContributorsGroup page. - Steve On Aug 5, 2013, at 5:31 PM, Erling Løken Andersen wrote: > Hi, > > I'm a real human being with thoughts and feelings. I'd love to be > added to the ContributorsGroup. My username is stormen :) > > Cheers, > Erling Andersen > CT

Re: Problems installing Solr4 in Jetty9

2013-08-18 Thread Steve Rowe
bq. I thought that when Steve moved it from the test module to the core, he handled it so that it would not go out in the dist. Mea culpa. @Chris Collins, I think you're talking about Maven dependencies, right? As a workaround, you can exclude dependencies you don't need, including hadoop-hdfs,

Re: Problems installing Solr4 in Jetty9

2013-08-19 Thread Steve Rowe
https://issues.apache.org/jira/browse/SOLR-5173 On Aug 18, 2013, at 8:43 PM, Steve Rowe wrote: > bq. I thought that when Steve moved it from the test module to the core, he > handled it so that it would not go out in the dist. > > Mea culpa. > > @Chris Collins, I think yo

Re: UpdateProcessor not working with DIH, but works with SolrJ

2013-08-22 Thread Steve Rowe
You could declare your update chain as the default by adding 'default="true"' to its declaring element: and then you wouldn't need to declare it as the default update.chain in either of your request handlers. On Aug 22, 2013, at 11:57 AM, Shawn Heisey wrote: > On 8/22/2013 9:42 AM, Andre

Re: How to avoid underscore sign indexing problem?

2013-08-22 Thread Steve Rowe
Dan, StandardTokenizer implements the word boundary rules from the Unicode Text Segmentation standard annex UAX#29: http://www.unicode.org/reports/tr29/#Word_Boundaries Every character sequence within UAX#29 boundaries that contains a numeric or an alphabetic character is emitted as a term,

Feedback requested on design/implementation/extent of a proposed Solr configuration REST API

2013-08-28 Thread Steve Rowe
For mailing list participants on solr-user who aren't subscribed to the dev list: I've created a JIRA issue to discuss adding a Solr configuration REST API: . I'm interested in feedback of any kind on this proposal, preferably on the above-linked

Re: regex constructs allowed in queries

2013-08-29 Thread Steve Rowe
You can see the supported syntax here: . On Aug 29, 2013, at 11:57 AM, "Hugh Cayless, Ph.D." wrote: > Hi, I can't find anywhere good documentation of what syntax is allowed in > Solr 4.4 regular expression

Re: Regarding improving performance of the solr

2013-09-12 Thread Steve Rowe
Hi Prabu, It's difficult to tell what's going wrong without the full exception stack trace, including what the exception is. If you can provide the specific input that triggers the exception, that might also help. Steve On Sep 12, 2013, at 4:14 AM, prabu palanisamy wrote: > Hi > > I tried

Re: solr 4.5 release date

2013-09-26 Thread Steve Rowe
Hi Arcadius, The fifth release candidate, hopefully the last one, will be cut today. The release vote will be open until next Tuesday, and assuming all goes well, the release could be available next Wednesday at the earliest, six days from today. Steve On Sep 26, 2013, at 1:27 PM, Arcadius Ah

[ANNOUNCE] Apache Solr Reference Guide 4.5 Available

2013-10-05 Thread Steve Rowe
The Lucene PMC is pleased to announce the release of the Apache Solr Reference Guide for Solr 4.5. This 338 page PDF serves as the definitive users manual for Solr 4.5. The Solr Reference Guide is available for download from the Apache mirror network: https://www.apache.org/dyn/closer.cgi/luce

Re: How to Run Solr Within Intellij IDEA

2013-03-20 Thread Steve Rowe
Hi kamaci, see my answer to your question in the d...@lucene.apache.org mailing list. - Steve On Mar 20, 2013, at 6:40 PM, kamaci wrote: > I want to extend Solr and forked it from github. I want to develop on it at > Intellij IDEA. I opened the project however there are many modules and I > don

Re: custom similary on a field not working

2013-03-21 Thread Steve Rowe
Hi xavier, Have you set the global similarity to solr.SchemaSimilarityFactory? See . Steve On Mar 21, 2013, at 9:44 AM, xavier jmlucjav wrote: > Hi Felipe, > > I need to keep positions, that is why I cannot just use > omitTermFreqAndPositions

Re: How can I compile and debug Solr from source code?

2013-03-21 Thread Steve Rowe
As solr/README.txt says in the "Instructions for Building Apache Solr from Source" section: "4.Navigate to the "solr" folder and issue an "ant" command to see the available options for building, testing, and packaging Solr." PROMPT$ ant Buildfile: /Users/sarowe/svn/lucene/dev/branches/branch_4x/

Re: How can I compile and debug Solr from source code?

2013-03-21 Thread Steve Rowe
Perhaps you didn't see what I wrote earlier?: Sounds like you want 'ant dist', which will create the .war and put it into the solr/dist/ directory: PROMPT$ ant dist Steve On Mar 21, 2013, at 7:38 PM, Furkan KAMACI wrote: > I mean I need that: There is a .war file shipped with Solr source co

Re: Could not load config for solrconfig.xml

2013-03-21 Thread Steve Rowe
The wiki has some Tomcat info here: , not sure how up-to-date it is. See also LucidWorks' Solr Reference Guide's page Running Solr on Tomcat: IntelliJ has a Tomcat run configuration that can

[ANNOUNCE] Solr wiki editing change

2013-03-24 Thread Steve Rowe
The wiki at http://wiki.apache.org/solr/ has come under attack by spammers more frequently of late, so the PMC has decided to lock it down in an attempt to reduce the work involved in tracking and removing spam. From now on, only people who appear on http://wiki.apache.org/solr/ContributorsGrou

Re: [ANNOUNCE] Solr wiki editing change

2013-03-25 Thread Steve Rowe
On Mar 25, 2013, at 3:30 AM, Dawid Weiss wrote: > Can you add me to? We have a few pages which we maintain (search results > clustering related). My wiki user is DawidWeiss Added to AdminGroup. On Mar 25, 2013, at 5:11 AM, Andrzej Bialecki wrote: > Please add AndrzejBialecki to this group. Tha

Re: Contributors Group

2013-03-25 Thread Steve Rowe
On Mar 25, 2013, at 10:32 AM, Swati Swoboda wrote: > Can I be added to the contributors group? Username sswoboda. Added to solr ContributorsGroup.

Re: Contributors Group

2013-03-25 Thread Steve Rowe
On Mar 25, 2013, at 11:59 AM, Upayavira wrote: > While you're in that mode, could you please add 'Upayavira'. Added to solr ContributorsGroup.

Re: [ScriptUpdateProcessor] Params aren't being picked up from solrconfig

2013-03-27 Thread Steve Rowe
Hi Rene, Thanks for offering to help with wiki documentation. You'll need to register on the wiki first, then tell us your wiki username, and we'll add you to ContributorsGroup, which will allow you to make edits. Steve On Mar 27, 2013, at 7:40 AM, Rene Nederhand wrote: > I cannot believe I'

Re: [ANNOUNCE] Solr wiki editing change

2013-03-28 Thread Steve Rowe
On Mar 28, 2013, at 9:25 AM, Andy Lester wrote: > On Mar 24, 2013, at 10:18 PM, Steve Rowe wrote: >> Please request either on the solr-user@lucene.apache.org or on >> d...@lucene.apache.org to have your wiki username added to the >> ContributorsGroup page - this is a one-t

Re: [ANNOUNCE] Solr wiki editing change

2013-03-28 Thread Steve Rowe
On Mar 28, 2013, at 11:57 AM, Jilal Oussama wrote: > Please add OussamaJilal to the group. Added to solr ContributorsGroup.

Re: [ANNOUNCE] Solr wiki editing change

2013-03-28 Thread Steve Rowe
On Mar 28, 2013, at 5:43 PM, Tomás Fernández Löbbe wrote: > Steve, could you add me to the contrib group? TomasFernandezLobbe Added to solr ContributorsGroup.

Re: Synonyms problem

2013-03-29 Thread Steve Rowe
The XPath expressions used to collect the charFilter sequence, the tokenizer, and the token filter sequence are evaluated independently of each other - see line #244 through #251:

Re: [ANNOUNCE] Solr wiki editing change

2013-04-01 Thread Steve Rowe
On Apr 1, 2013, at 9:40 PM, "Vaillancourt, Tim" wrote: > I would also like to contribute to SolrCloud's wiki where possible. Please > add myself (TimVaillancourt) when you have a chance. Added to solr wiki ContributorsGroup.

Re: [ANNOUNCE] Solr wiki editing change

2013-04-02 Thread Steve Rowe
On Apr 2, 2013, at 11:23 AM, Ryan Ernst wrote: > Please add RyanErnst to the contributors group. Thanks! Added to solr wiki ContributorsGroup.

Re: [ANNOUNCE] Solr wiki editing change

2013-04-02 Thread Steve Rowe
On Apr 2, 2013, at 11:28 AM, Furkan KAMACI wrote: > Please add FurkanKAMACI to the group. Added to solr wiki ContributorsGroup.

Re: HTML entities being missed by DIH HTMLStripTransformer

2013-04-03 Thread Steve Rowe
Hi Ashok, HTMLStripTransformer uses HTMLStripCharFilter under the hood, and HTMLStripCharFilter converts all HTML entities to their corresponding characters. What version of Solr are you using? My guess is that it only appears that nothing is happening, since when they are presented in a brow

Re: HTML entities being missed by DIH HTMLStripTransformer

2013-04-03 Thread Steve Rowe
Cool, glad I was able to help. On Apr 3, 2013, at 4:18 PM, Ashok wrote: > Hi Steve, > > Fabulous suggestion! Yup, that is it! Using the HTMLStripTransformer twice > did the trick. I am using Solr 4.1. > > Thank you very much! > > - ashok > > > > -- > View this message in context: > http:/

Re: Please add me: FuadEfendi

2013-04-05 Thread Steve Rowe
On Apr 5, 2013, at 4:34 PM, Fuad Efendi wrote: > Few months ago I was able to modify Wiki; I can't do it now, probably > because http://wiki.apache.org/solr/ContributorsGroup > > Please add me: FuadEfendi Added to solr wiki ContributorsGroup.

Re: Downloaded Solr 4.2.1 Source: Build Failing

2013-04-14 Thread Steve Rowe
Hi Umesh, I have the exact same Java 1.6 version as you, on OS X v10.8.3. I downloaded the source distribution from the same mirror as you did, and ran 'ant dist' under the solr/ directory, and got "BUILD SUCCESSFUL". (FYI, building the source distribution is part of the "smoke testing" we do a

Re: SolrException: copyField dest :'author_s' is not an explicit field and doesn't match a dynamicField.

2013-04-24 Thread Steve Rowe
Alexandre, Furkan reports an error about a copyField *dest* - SOLR-4567 was about the copyField *source*, and the fix was included in 4.2.1. In order for copyFields to work, the dest *must* match a field or dynamicField declaration in the schema - otherwise there's no way to know what type the

Re: Preparing Solr 4.2.1 for IntelliJ fails - invalid sha1

2013-04-25 Thread Steve Rowe
Hi Shahar, I suspect you may have an older version of Ivy installed - the errors you're seeing look like IVY-1194 , which was fixed in Ivy 2.2.0. Lucene/Solr uses Ivy 2.3.0. Take a look in C:\Users\account\.ant\lib\ and remove older versions of

Re: Solr maven install - authorization problem when downloading maven.restlet.org dependencies

2013-04-25 Thread Steve Rowe
Hi Shahar, On a Windows 7 box, after downloading solr-4.2.1-src.tgz from one of the Apache mirrors and unpacking it, I did the following from a cmd window: PROMPT> cd solr-4.2.1 PROMPT> ant get-maven-poms PROMPT> cd maven-build PROMPT> mvn install Is the above what you did? After a while, I se

<    1   2   3   4   >