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 >

Upgrade of solr 4.0 to 4.8.1 query

2014-06-02 Thread Steve Howe
ng list. Can anyone confirm of I need to change config wildly on an upgrade, using tomcat and war files, of 4.0 -> 4.8.1 in situ pls? Cheers Steve

Re: Does CloudSolrServer hit zookeeper for every request?

2014-06-02 Thread Steve McKay
ZooKeeper allows clients to put watches on paths in the ZK tree. When the cluster state changes, every Solr client is notified by the ZK server and then each client reads the updated state. No polling is needed or even helpful. In any event, reading from ZK is much more lightweight than writing,

Re: Recommended ZooKeeper topology in Production

2014-06-10 Thread Steve McKay
Dedicated machines are a good idea. The main thing is to make sure that ZK always has IOPS available for transaction log writes. That's easy to ensure when each ZK instance has its own hardware. The standard practice, as far as I know, is to have 3 physical boxes spread among racks/datacenters/c

Re: CopyField can't copy analyzers and Filters

2014-06-30 Thread Steve McKay
Three fields: AllChamp_ar, AllChamp_fr, AllChamp_en. Then query them with dismax. On Jun 30, 2014, at 11:53 AM, benjelloun wrote: > here is my schema: > > required="false" stored="false"/> > required="false" multiValued="true"/> > > required="false" multiValued="true"/> > > required="fa

Re: Tomcat or Jetty to use with solr in production ?

2014-06-30 Thread Steve McKay
Seconding this. Solr works fine on Jetty. Solr also works fine on Tomcat. The Solr community largely uses Jetty, so most of the resources on the Web are for running Solr on Jetty, but if you have a reason to use Tomcat and know what you're doing then Tomcat is a fine choice. On Jun 30, 2014, at

Re: Indexing non-stored fields

2014-06-30 Thread Steve McKay
Stored doesn't mean "stored to disk", more like "stored verbatim". When you index a field, Solr analyzes the field value and makes it part of the index. The index is persisted to disk when you commit, which is why it sticks around after a restart. Searching the index, mapping from search terms t

Re: Solr irregularly having QTime > 50000ms, stracing solr cures the problem

2014-07-08 Thread Steve McKay
Sure sounds like a socket bug, doesn't it? I turn to tcpdump when Solr starts behaving strangely in a socket-related way. Knowing exactly what's happening at the transport level is worth a month of guessing and poking. On Jul 8, 2014, at 3:53 AM, Harald Kirsch wrote: > Hi all, > > This is wha

Re: Solr atomic updates question

2014-07-08 Thread Steve McKay
ic updates are for when you have changes and want to apply them to a document without affecting the other fields. A regular add will replace an existing document completely. AFAIK Solr will let you mix atomic updates with regular field values, but I don't think it's a good idea. Steve

Re: Solr atomic updates question

2014-07-08 Thread Steve McKay
Take a look at this update XML: 05991 Steve McKay Walla Walla Python Let's say employeeId is the key. If there's a fourth field, salary, on the existing doc, should it be deleted or retained? With this update it will obviously be deleted: 05991 S

Re: Solr atomic updates question

2014-07-09 Thread Steve McKay
s the read/modify/write steps internally. That's the closest Solr can get to updating a doc in place. Steve On Jul 8, 2014, at 10:42 PM, Bill Au wrote: > I see what you mean now. Thanks for the example. It makes things very > clear. > > I have been thinking about the expla

Re: NoClassDefFoundError while indexing in Solr

2014-07-23 Thread Steve McKay
you're indexing. Everything relevant should be included in contrib/extraction/lib. Steve On Wed, Jul 23, 2014 at 01:53:45PM +, Pablo Queixalos wrote: > There is a source code "parser" in tika that in fact just renders the source > using an external source higlighter. > &

Re: Any Solr consultants available??

2014-07-23 Thread Steve McKay
Perhaps the requirement means a total of 10 years of experience spread across Solr, HTML, XML, Java, Tomcat, JBoss, and MySQL. This doesn't seem likely, but it is satisfiable, so if we proceed on the assumption that a job posting doesn't contain unsatisfiable requirements then it's more reasonab

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
problems - Solr committers will review your comments (which are automatically sent to the dev list) and incorporate changes into the content. Steve [1] https://cwiki.apache.org/confluence/display/solr/Apache+Solr+Reference+Guide On Jul 29, 2014, at 11:50 AM, Edwards, Joshua wrote: > He

Re: ICUTokenizer acting very strangely with oriental characters

2014-08-12 Thread Steve Rowe
orted by Lucene/Solr 4.9). Steve On Aug 12, 2014, at 7:00 PM, Shawn Heisey wrote: > See the original message on this thread for full details. Some > additional information: > > This happens on version 4.6.1, 4.7.2, and 4.9.0. Here is a screenshot > showing the analysis problem

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 <https://issues.apache.org/jira/browse/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

Re: Managed Schema

2014-08-15 Thread Steve Rowe
t ideal - I expect there will be server-side facilities to do something equivalent.) Steve www.lucidworks.com On Aug 15, 2014, at 11:49 AM, Joseph Obernberger wrote: > Thank you! Any ideas when 4.10 will be released? > I tried sleeping when adding fields, and that improved things, but sinc

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 wa

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

2013-10-14 Thread Steve Rowe
the file is not "null". What version are you using? What sequence of actions did you take (if any) before seeing the problem? Steve On Oct 2, 2013, at 6:58 AM, Alessandro Benedetti wrote: > Hi guys, I think this is a very simple bug, but i didn't know where to > quickly p

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

Re: Request for Contributors Group

2013-11-28 Thread Steve Rowe
committers, all of whom are known to have signed ICLAs. More details here: <https://cwiki.apache.org/confluence/display/solr/Internal+-+Maintaining+Documentation#Internal-MaintainingDocumentation-WhoCanEditThisDocumentation>. Steve On Nov 28, 2013, at 10:37 AM, Erick Erickson wrote: > Don

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

Re: Use a field without predefining it it the schema

2014-01-29 Thread Steve Rowe
Hi Hakim, You don’t have to restart the Solr app to make use of fields added through the Schema REST API. This feature was first available in Solr v4.4 and remains available in Solr v4.6. Steve On Jan 29, 2014, at 7:11 PM, Hakim Benoudjit wrote: > Thanks Steve for the link. > It

Re: Use a field without predefining it it the schema

2014-01-29 Thread Steve Rowe
+Definition+in+SolrConfig > . > I dont know if it's required to modify the schema (see the link), to make > it editable by the REST API. I wish that it doesnt clear all the fields > that I have added manually to the schema. > > > 2014-01-30 Hakim Benoudjit > >> Tha

Re: ant eclipse hangs - branch_4x

2014-01-30 Thread Steve Rowe
-bootstrap’ to download and put the 2.3.0 jar in place. You should run the following and remove any files it finds: find ~/.ivy2/cache -name ‘*.lck’ That should stop ‘ant resolve’ from hanging. Steve On Jan 30, 2014, at 5:06 AM, Per Steffensen wrote: > Hi > > Earlier in used t

Re: Highlight results in Arabic are backword

2014-02-06 Thread Steve Rowe
document and viewed it in my browser (Safari), and both are layed out the same (with the exception of the emphasis given the highlighted word): —— "author": "د. فيشر السعر", "highlighting": { "1": { "author": [ "د. فيشر السعر" ] } }

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
MB, so it’s definitely compressible. Steve On Mar 5, 2014, at 10:03 AM, Cassandra Targett wrote: > You know, I didn't even notice that. It did go up to 30M. > > I've made a note to look into that before we release the 4.8 version to see > if it can be reduced at all. I suspect

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 ab

Re: Near Realtime get

2014-08-21 Thread Steve Davids
Did you happen to set the field ('fl') request parameter? By default the RealTimeGetHandler returns all stored fields, here is some more information on the parameter: http://wiki.apache.org/solr/CommonQueryParameters#fl -Steve On Tue, Aug 19, 2014 at 11:18 AM, Philippe Soares wrote:

Re: Invalid chunk header Error in solr

2014-08-23 Thread Steve McKay
Solr is complaining about receiving a malformed HTTP request. What happens when you send a correctly-formed multipart/form-data request? Also, is there anything you can add about the circumstances? Who's sending the requests that fail, is there any correlation between requests that fail, how of

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

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: <https://cwiki.apache.org/confluence/display/solr/Enabling+SSL#EnablingSSL-IndexadocumentusingCloudSolrServer> Steve www.lucidworks.com On Sep 8, 2014, at 2:19 PM, Christopher

Re: unable to build solr 4.10.1

2014-10-28 Thread Steve Rowe
wvc/lucene/dev/branches/lucene_solr_4_10/solr/contrib/dataimporthandler-extras/ivy.xml?r1=1633651&r2=1633650&pathrev=1633651> Steve > On Oct 28, 2014, at 2:41 AM, Karunakar Reddy wrote: > > Hi , > > I am getting below error while doing "ant dist" . >

Solr Cloud Cross-Core Joins

2014-11-05 Thread Steve Davids
still reasonable does anyone have ideas on how a common core name can be achieved via API calls? If it isn't an advised approach are there suggestions on an optimal indexing strategy for this particular scenario? Thanks for the help, -Steve

Re: I want to translate solr wiki to Korean.

2014-11-11 Thread Steve Rowe
could create a new space in the Apache Confluence instance, where the Solr Reference Guide is, to host the translated documentation? Probably it would be best to create a Solr JIRA issue where this topic can be discussed: <https://issues.apache.org/jira/browse/SOLR>. Thanks for contribu

Re: Solr WIKI seems really dead this time

2014-12-10 Thread Steve Rowe
f has gone home for the evening, so while we have restored service, we don't yet have a lot of information yet on the cause of the outage. Steve > On Dec 10, 2014, at 11:22 PM, Alexandre Rafalovitch > wrote: > > Solr WIKI seems to die periodically. But usually it is back up

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

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

Re: Securing SOLR REST API

2013-07-10 Thread Steve Rowe
Hi Guilherme, see <http://wiki.apache.org/solr/SolrSecurity> - 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 restfu

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 wit

[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
haracters is that they are permanently prohibited from being assigned standard, interchangeable meanings, rather than that they are prohibited from occurring in Unicode strings which happen to be interchanged. Steve On Aug 5, 2013, at 3:03 PM, Chris Hostetter wrote: &g

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

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 h

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
e performed prior to StandardTokenizer, which will then see token-splitting spaces instead of underscores. Steve On Aug 22, 2013, at 10:23 PM, Dan Davis wrote: > Ah, but what is the definition of punctuation in Solr? > > > On Wed, Aug 21, 2013 at 11:15 PM, Jack Krupansky > wrote: > &g

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

2013-08-28 Thread Steve Rowe
ferably on the above-linked JIRA issue, but here on the solr-user mailing list would also work. There are lots of details, so I don't expect quick resolution, but any input about rationale or use cases for inclusion or exclusion of configuration item runtime modifiability would be very useful. Thanks, Steve

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

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

[ANNOUNCE] Apache Solr Reference Guide 4.5 Available

2013-10-05 Thread Steve Rowe
/lucene/solr/ref-guide/ Steve

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

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 <http://wiki.apache.org/solr/SchemaXml#Similarity>. Steve On Mar 21, 2013, at 9:44 AM, xavier jmlucjav wrote: > Hi Felipe, > > I need to keep positions, that is why I

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

2013-03-21 Thread Steve Rowe
on. [echo] Use 'ant generate-maven-artifacts' to generate maven artifacts. [echo] Use 'ant package' to generate zip, tgz for distribution. [echo] Use 'ant test' to run unit tests. Sounds like you want 'ant dist', which will create the .war and

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 shippe

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
/ContributorsGroup will be able to create/modify/delete wiki pages. 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-time step. Steve

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 c

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
ema/FieldTypePluginLoader.java?view=markup#l232> Steve On Mar 29, 2013, at 12:37 PM, Walter Underwood wrote: > Also, all the filters need to be after the tokenizer. There are two synonym > filters specified, one before the tokenizer and one after. > > I'm surprised that works at

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
s thing! When all of the listed entity columns have been scanned the process is repeated using the next transformer in the list. - Steve On Apr 3, 2013, at 3:30 PM, Alexandre Rafalovitch wrote: > Then, I would say, you have a bigger problem > > However, you can probably run

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

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
quot;smoke testing" we do as part of validating a release, and this passed for me on my OS X 10.8.3 machine before I voted to release 4.2.1.) What version of Ant are you using? What command are you using to build? Did you try running 'ant clean' from the top level and then re-bu

SEVERE: shard update error StdNode on SolrCloud 4.2.1

2013-04-16 Thread Steve Woodcock
mewhere along the line, but I've checked it all per the documentation and I'm starting to run out of ideas. Any suggestions for where to look next would be most appreciated! Regards, Steve Woodcock

Re: SEVERE: shard update error StdNode on SolrCloud 4.2.1

2013-04-19 Thread Steve Woodcock
On 16 April 2013 11:35, Steve Woodcock wrote: > We have a simple SolrCloud setup (4.2.1) running with a single shard and > two nodes, and it's working fine except whenever we send an update request, > the leader logs this error: > > SEVERE: shard update error StdNode: >

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

2013-04-24 Thread Steve Rowe
e the destination field is. Furkan, can you give the parts of your schema that are involved here? Maybe you just need to add a "*_s" dynamicField with type="string"? Steve On Apr 24, 2013, at 7:08 PM, Alexandre Rafalovitch wrote: > You are running 4.2, right? > >

Re: Preparing Solr 4.2.1 for IntelliJ fails - invalid sha1

2013-04-25 Thread Steve Rowe
y (so that ivy would re-download everything), and ran 'ant idea' from a cmd window. BUILD SUCCESSFUL. Steve On Apr 25, 2013, at 6:07 AM, Shahar Davidson wrote: > Hi all, > > I'm trying to run 'ant idea' on 4.2.* and I'm getting "invalid s

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

2013-04-25 Thread Steve Rowe
/restlet/jee/org.restlet.ext.servlet/2.1.1/org.restlet.ext.servlet-2.1.1.jar 19K downloaded (org.restlet.ext.servlet-2.1.1.jar) - It's possible that the Restlet maven repository was temporarily malfunctioning. Have you tried again? Steve On Apr 25, 2013, at 8:53 AM, Shahar Davidson wrote

Re: Configure Shingle Filter to ignore ngrams made of tokens with same start and end

2013-05-03 Thread Steve Rowe
An issue exists for this problem: https://issues.apache.org/jira/browse/LUCENE-3475 On May 3, 2013, at 11:00 AM, Walter Underwood wrote: > The shingle filter should respect positions. If it doesn't, that is worth > filing a bug so we know about it. > > wunder > > On May 3, 2013, at 10:50 AM,

Re: Log Monitor System for SolrCloud and Logging to log4j at SolrCloud?

2013-05-06 Thread Steve Rowe
Done - see http://markmail.org/message/66vpwk42ih6uxps7 On May 6, 2013, at 5:29 AM, Furkan KAMACI wrote: > Is there any road map for Solr when will Solr 4.3 be tagged at svn? > > 2013/4/26 Mark Miller > >> Slf4j is meant to work with existing frameworks - you can set it up to >> work with log

Re: Solr 4.x/3.x update javabin incompatibility?

2013-05-11 Thread Steve Rowe
On May 11, 2013 7:27 AM, "Michael Sokolov" wrote: > If somebody grants me access to the wiki, I'd be happy to write something there to let people know about this issue. What's your wiki username?

Re: Request to be added to ContributorsGroup

2013-05-13 Thread Steve Rowe
iki User Name : Shreejay > > --Shreejay Added to the solr wiki ContributorsGroup. - Steve

Re: Solr 4.0 war startup issue - apache-solr-core.jar Vs solr-core

2013-05-21 Thread Steve Rowe
Sandeep, What version of Solr are you using? Steve On May 21, 2013, at 6:55 AM, Sandeep Mestry wrote: > Hi Shawn, > > Thanks for your reply. > > I'm not mixing versions. > The problem I faced is I want to override Highlighter from solr-core jar > and if I add

Re: Solr 4.0 war startup issue - apache-solr-core.jar Vs solr-core

2013-05-21 Thread Steve Rowe
The 4.0 solr-core jar is available in Maven Central: <http://search.maven.org/#artifactdetails%7Corg.apache.solr%7Csolr-core%7C4.0.0%7Cjar> Steve On May 21, 2013, at 11:26 AM, Sandeep Mestry wrote: > Hi Steve, > > Solr 4.0 - mentioned in the subject.. :-) > > Thanks, &g

Re: OPENNLP current patch compiling problem for 4.x branch

2013-05-23 Thread Steve Rowe
Hi Patrick, I think you should check out and apply the patch to branch_4x, rather than the lucene_solr_4_3_0 tag: http://svn.apache.org/repos/asf/lucene/dev/branches/branch_4x Steve On May 23, 2013, at 2:08 AM, Patrick Mi wrote: > Hi, > > I checked out from here > http://sv

Re: Core admin action "CREATE" fails for existing core

2013-05-23 Thread Steve Rowe
Alan, I've added AlanWoodward to the Solr AdminGroup page. On May 23, 2013, at 12:29 PM, Alan Woodward wrote: > I think the wiki needs to be updated to reflect this? > http://wiki.apache.org/solr/CoreAdmin > > If somebody adds me as an editor (AlanWoodward), I'll do it. > > Alan Woodward > w

Re: Wiki editing: please add AlexandreRafalovitch

2013-05-25 Thread Steve Rowe
I added AlexandreRafalovitch to the Solr wiki ContributorsGroup page. - Steve On May 25, 2013, at 8:25 AM, Alexandre Rafalovitch wrote: > I want to document the new DIH Tika flag I introduced in SOLR-4530 > > Regards, > Alex. > Personal blog: http://blog.outerthoughts.com/ &

Re: Solr 4.3, Tomcat, "Error filterStart"

2013-05-30 Thread Steve Rowe
Hi Jonathan, Did you find <http://stackoverflow.com/questions/3016808/tomcat-startup-logs-severe-error-filterstart-how-to-get-a-stack-trace> ? Steve On May 30, 2013, at 10:10 AM, Jonathan Rochkind wrote: > I am trying to get Solr installed in Tomcat, and having trouble. > >

Re: Docvalue on a StrField equal a codec error

2013-05-31 Thread Steve Rowe
As I mentioned to Yago on #solr IRC, I modified the DocValues wiki page to note that has to be configured in solrconfig.xml in order to use per-field doc values formats. - Steve On May 31, 2013, at 11:09 AM, yriveiro wrote: > Hi, > > I have this error on a solr.StrField defined in

Re: Dynamically create new fields

2013-06-13 Thread Steve Rowe
I wrote a blog post about this stuff here: <http://searchhub.org/2013/05/21/schemaless-solr-part-1/>. - Steve On Jun 12, 2013, at 3:26 PM, Chris Hostetter wrote: > > : Dynamically adding fields to schema is yet to get released.. > : > : https://issues.apache.org/jir

<    1   2   3   4   5   6   >