null:java.lang.ArrayIndexOutOfBoundsException with solr-trunk

2012-08-17 Thread Ahmet Arslan
Hi All, I am indexing aspx files into solr-trunk (using ManifoldCF). And I am getting below Exception in a pretty much random manner. solr-spec : 5.0.0.2012.08.16.22.19.11 solr-impl : 5.0-SNAPSHOT exported - iorixxx - 2012-08-16 22:19:11 lucene-spec : 5.0-SNAPSHOT

about example-DIH

2012-08-26 Thread Ahmet Arslan
Hello, In solr-trunk/solr/exampleREADME.txt it says java -Dsolr.solr.home=example-DIH but it should be java -Dsolr.solr.home=example-DIH/solr (it is correct in example-DIH/README.txt) When execute full-import on mail core, I get this : ( I am note sure if mail core needs some extra jars)

Re: about example-DIH

2012-08-26 Thread Ahmet Arslan
In solr-trunk/solr/exampleREADME.txt it says java -Dsolr.solr.home=example-DIH but it should be java -Dsolr.solr.home=example-DIH/solr (it is correct in example-DIH/README.txt) When execute full-import on mail core, I get this : ( I am note sure if mail core needs some extra jars)

Re: about example-DIH

2012-08-26 Thread Ahmet Arslan
Somehow core tika's Dataimport link seems does not working. Weird thing is other cores' works. (tested in firefox and safari) It seems that requestHandler name=/admin/ class=org.apache.solr.handler.admin.AdminHandlers / is required for UI.

UUIDField uniqueKey with default=NEW

2012-08-31 Thread Ahmet Arslan
Hi all, I was following http://wiki.apache.org/solr/UniqueKey#UUID_techniques to setup uuid as my uniqueKey. (recent solr-trunk) fieldType name=uuid class=solr.UUIDField indexed=true / field name=uniqueKey type=uuid indexed=true stored=true default=NEW required=true /

Re: UUIDField uniqueKey with default=NEW

2012-08-31 Thread Ahmet Arslan
You're trying to use a feature that was removed from trunk/4x by SOLR-2796: AddUpdateCommand.getIndexedId doesn't work with schema configured defaults/copyField - UUIDField/copyField can not be used as uniqueKey field. See: https://issues.apache.org/jira/browse/SOLR-2796 This revision:

Re: UUIDField uniqueKey with default=NEW

2012-08-31 Thread Ahmet Arslan
:     processor class=solr.DefaultValueUpdateProcessorFactory :       str name=fieldNameuniqueKey/str :       str name=valueNEW/str :     /processor    ...that approach won't work, it still relies on the UUIDField class accepting NEW as input to generate a new key, and that is no

Re: UUIDField uniqueKey with default=NEW

2012-08-31 Thread Ahmet Arslan
Hmmm... on a single node instance it might work -- You are correct it was a single note setup. - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org

SolrPluginUtils.docListToSolrDocumentList loads all stored fields

2010-12-18 Thread Ahmet Arslan
Hello, Regardless of SetString fields parameter, SolrPluginUtils#docListToSolrDocumentList method loads all of the stored fields. Shouldn't it just load the fields given in the set? Should I file a jira ticket? When small bug in TestCase is seen what is the preffered way to inform it? Open

phps with SolrDocument

2010-12-24 Thread Ahmet Arslan
JSONWriter.writeSolrDocument method calls writeMapOpener(-1); However its subclass (PHPSerilalizedWriter) throws an exception in its writeMapOpener method if size0. This makes impossible to use SolrDocumentList as response with phps. (somehow related to solr-2291) Here is a snippet demonstrates

Invalid version (expected 2, but 60) or the data in not in 'javabin' format

2013-01-21 Thread Ahmet Arslan
Hi, I am was hitting the following exception when doing distributed search. I am faceting on an int field named contentID. For some queries it was giving this error. For some queries it just works fine.

Re: Wild card support when stemmers are added

2013-02-05 Thread Ahmet Arslan
Hi, You have to separate options where you keep both accessorising and accessorise at index. 1) https://issues.apache.org/jira/browse/SOLR-3231 2) Create a un-stemmed field and run wildcard queries against it too. --- On Tue, 2/5/13, msreddy.hi msreddy...@gmail.com wrote: From: msreddy.hi

Re: VOTE: RC0 Release apache-solr-ref-guide-4.6.pdf

2013-11-28 Thread Ahmet Arslan
Hi, On page 293 : rm -r shard*/solr/zoo_data should be rm -r node*/solr/zoo_data On page 297 : ... shard, an d forwards ... should be ... shard, and forwards ... Thanks, Ahmet On Wednesday, November 27, 2013 2:47 PM, Cassandra Targett casstarg...@gmail.com wrote: I noticed a couple of

Re: Can't seem to build in order to run unit tests from IntelliJ any more.

2013-02-17 Thread Ahmet Arslan
Hi Erick, Same here,  I get this error: import org.apache.lucene.queries.CommonTermsQuery; Cannot resolve CommonTermsQuery --- On Sun, 2/17/13, Erick Erickson erickerick...@gmail.com wrote: From: Erick Erickson erickerick...@gmail.com Subject: Can't seem to build in order to run unit tests

Re: Can't seem to build in order to run unit tests from IntelliJ any more.

2013-02-18 Thread Ahmet Arslan
, February 18, 2013, 10:04 AM Hi Arslan, I just committed a fix for this particular problem (missing queries module dependency from the highlighter module). I think Erick is having a different problem, not sure what yet. Steve On Feb 18, 2013, at 2:41 AM, Ahmet Arslan iori

Re: Subscribe to the mailing list

2014-03-10 Thread Ahmet Arslan
Hi Abhishek, Since you send this e-mail, you are successfully subscribed to dev list. Please see the how to contribute wiki pages  http://wiki.apache.org/lucene-java/HowToContribute http://wiki.apache.org/solr/HowToContribute Welcome and happy hacking, Ahmet On Monday, March 10, 2014 1:56

Re: Reducing the number of warnings in the codebase

2014-03-16 Thread Ahmet Arslan
Hi Shawn,  +1 for the idea, we should take full advantage of Eclipse, IntelliJ etc. Here are some relevant tickets created by Furkan. https://issues.apache.org/jira/browse/LUCENE-5506 https://issues.apache.org/jira/browse/SOLR-5838 https://issues.apache.org/jira/browse/SOLR-5839 I believe 

Re: Reducing the number of warnings in the codebase

2014-03-16 Thread Ahmet Arslan
Hi, Here are some rules : Following String methods where left hand side is empty.   String.replace()   String.toUpperCase()   String.toLowerCase()   String.replaceFirst()   String.trim() In test cases (subblasses of SolrTestCaseJ4) methods without assertU(). see : SOLR-5685    adoc()  

Re: Reducing the number of warnings in the codebase

2014-03-16 Thread Ahmet Arslan
Hi Uwe, I looked for definitions under lucene/tools/forbiddenApis/*.txt files but I couldn't find. Where are those rule are defined? I am wondering about the syntax, can you point? Thanks, Ahmet On Sunday, March 16, 2014 10:40 PM, Uwe Schindler u...@thetaphi.de wrote: String.toUpperCase()

TruncateTokenFilter FixedPrefixStemFilter

2014-03-27 Thread Ahmet Arslan
Hello, I would like to ask if there is an interest to add TruncateTokenFilter to lucene. I am using this filter as a stemmer for Turkish language. In many academic research (clustering, classification,retrieval) it is used and called as Fixed Prefix Stemmer or Simple Truncation Method or F5

Re: [VOTE] Lucene / Solr 4.7.1 RC2

2014-03-29 Thread Ahmet Arslan
+1 SUCCESS! [1:28:08.851424] Ahmet On Saturday, March 29, 2014 10:46 AM, Steve Rowe sar...@gmail.com wrote: Please vote for the second Release Candidate for Lucene/Solr 4.7.1. Download it here: https://people.apache.org/~sarowe/staging_area/lucene-solr-4.7.1-RC2-rev1582953/ Smoke tester

ant test-help does not describe tests.disableHdfs

2014-04-06 Thread Ahmet Arslan
Hello all, Shouldn't 'ant test-help' talk about -Dtests.disableHdfs=true -Dtests.badapples=false parameters? Ahmet - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail:

Re: [VOTE] Lucene / Solr 4.7.2 (take two)

2014-04-11 Thread Ahmet Arslan
+1 SUCCESS! [1:56:54.132500] On Friday, April 11, 2014 10:22 PM, Adrien Grand jpou...@gmail.com wrote: +1 SUCCESS! [1:10:37.098259] On Fri, Apr 11, 2014 at 9:05 PM, Anshum Gupta ans...@anshumgupta.net wrote: +1 SUCCESS! [0:57:06.986265] On Thu, Apr 10, 2014 at 7:51 AM, Robert Muir

why sha1?

2014-04-16 Thread Ahmet Arslan
Hello, http://www.us.apache.org/dist/lucene/solr/4.7.2/ uses .sha1 suffix and it looks like uses SHA1. According to http://www.apache.org/dev/release-signing.html#basic-facts  * An SHA checksum should also be created and must be suffixed .sha * SHA-1 should be avoided Is this something

Re: [VOTE] Lucene/Solr 4.8.0 RC1

2014-04-22 Thread Ahmet Arslan
+1 SUCCESS! [1:50:28.179297] Ahmet On Tuesday, April 22, 2014 11:38 PM, Uwe Schindler u...@thetaphi.de wrote: Here is my own +1: SUCCESS! [2:09:05.595608] Solr tests passed once I raised file descriptor limit. So we should definitely fix this. I will try to reproduce in an isolated way and

Re: [VOTE] Lucene/Solr 4.8.0 RC2

2014-04-25 Thread Ahmet Arslan
+1 SUCCESS! [1:46:42.182320] Ahmet On Friday, April 25, 2014 9:55 AM, Uwe Schindler u...@thetaphi.de wrote: Here is my +1: SUCCESS! [1:53:39.982427] Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original Message-

Re: maxThreads in Jetty

2014-04-26 Thread Ahmet Arslan
bq. Someone wrote a nice response to this recently - Shawn I think? Its Uwe : http://search-lucene.com/m/WwzTb2XJeVJ1 On Saturday, April 26, 2014 6:59 PM, Mark Miller markrmil...@gmail.com wrote: Someone wrote a nice response to this recently - Shawn I think? The gist is, there are no

Re: [VOTE] Lucene/Solr release 4.8.1

2014-05-16 Thread Ahmet Arslan
+1  SUCCESS! [1:49:01.551615] Ahmet P.S. Here's my smoker command line: python3 dev-tools/scripts/smokeTestRelease.py 'http://people.apache.org/~rmuir/staging_area/lucene_solr_4_8_1_r1594670/' 1594670 4.8.1 tmp On Friday, May 16, 2014 11:46 PM, Simon Willnauer simon.willna...@gmail.com

add consumeAllTokens option to OffsetLimitTokenFilter

2014-05-31 Thread Ahmet Arslan
Hi, LimitTokenCountFilter and LimitTokenCountFilter have consumeAllTokens option. Any interest to add it to OffsetLimitTokenFilter too? It looks like there is a bug (SOLR-5426) in OffsetLimitTokenFilter that causes : end() called before incrementToken() returned false!   Ahmet

Re: Querying all docs

2014-06-03 Thread Ahmet Arslan
Hi, Could SOLR-5463 be used here? Ahmet On Tuesday, June 3, 2014 2:52 PM, Per Steffensen st...@designware.dk wrote: Thanks for responding On 03/06/14 10:32, Mikhail Khludnev wrote: On Tue, Jun 3, 2014 at 11:12 AM, Per Steffensen st...@designware.dk wrote: It is not desirable to set

Re: 4.9

2014-06-12 Thread Ahmet Arslan
Hi Robert, OffsetLimitTokenFilter(used internally by highlighter) has the following lines :  public boolean incrementToken() throws IOException { -if (offsetCount offsetLimit input.incrementToken()) { +if (input.incrementToken() offsetCount offsetLimit) { Arun Kumar figured this

Re: [VOTE] 4.9.0

2014-06-20 Thread Ahmet Arslan
Hi, here is what I do * download solr-4.9.0.tgz * add icu4j-53.1.jar and solr-analysis-extras-4.9.0.jar and lucene-analyzers-icu-4.9.0.jar to solr-4.9.0/example/solr/collection1/lib/ * confirm they are loaded INFO org.apache.solr.core.SolrResourceLoader – Adding

Re: [VOTE] 4.9.0

2014-06-22 Thread Ahmet Arslan
Hi, +1 SUCCESS! [1:47:26.786519] python3 dev-tools/scripts/smokeTestRelease.py 'http://people.apache.org/~rmuir/staging_area/lucene_solr_4_9_0_r1604085/' 1604085 4.9.0 tmp Ahmet On Sunday, June 22, 2014 2:11 AM, Walter Underwood wun...@wunderwood.org wrote: Also, isn't JDK 7u51 a known

Re: Solr and Maven

2014-07-04 Thread Ahmet Arslan
Hi Tom, you might find https://issues.apache.org/jira/browse/LUCENE-5755 relevant. Ahmet On Saturday, July 5, 2014 1:26 AM, Tom Chen tomchen1...@gmail.com wrote: Hi, The default tool to build Solr is ant ( plus ivy), while Maven support is provided.  Regarding building with Maven,  some

Re: Solr EventListerner where to add the implementing classes

2015-01-13 Thread Ahmet Arslan
Hi Meena, OK, try this, delete/nuke all lib directives in solrconfigxml create a directory named lib under solrhome. where solr.xml lives in. this is supposed to be the most robust way of loading plugins. And this question better suited to user mailing list. Ahmet On Tuesday, January 13,

Re: Solr EventListerner where to add the implementing classes

2015-01-08 Thread Ahmet Arslan
Hi Meena, They are just like other plugins, please see how to load plugins section : https://wiki.apache.org/solr/SolrPlugins Ahmet On Thursday, January 8, 2015 9:16 PM, meena.sri...@mathworks.com meena.sri...@mathworks.com wrote: I am planning to implement the solr(4.9) EventListener

Re: numberOfDocuments in SimilarityBase

2015-08-01 Thread Ahmet Arslan
compatibility, and its bad to use different formulas for different segments even if it works... Nowadays we dont have lucene 3 segments around anymore, so I think we should fix this. Want to open an issue? On Wed, Jul 29, 2015 at 10:45 AM, Ahmet Arslan iori...@yahoo.com.invalid wrote: Hello List

numberOfDocuments in SimilarityBase

2015-07-29 Thread Ahmet Arslan
Hello List, SimilarityBase uses CollectionStatistics#maxDoc() for numberOfDocuments. Shouldn't it be field-based CollectionStatistics#docCount()? --- core/src/java/org/apache/lucene/search/similarities/SimilarityBase.java (revision 1693268) +++

Re: Writing custom Tokenizer

2015-09-27 Thread Ahmet Arslan
Hi Sid, Can you provide us more details? Usually you can get away without a custom tokenizer, there may be other tricks to achieve your requirements. Ahmet On Sunday, September 27, 2015 11:29 PM, Siddhartha Singh Sandhu wrote: Hi Everyone, I wanted to write a

Re: Writing custom Tokenizer

2015-09-27 Thread Ahmet Arslan
wanted to leverage twitter-text github to because I trust there regex more then my own. Not only the above three, but I also need to control the special characters that are striped from my string while tokenizing. Please let me know of your views. Regards, Sid. On Sun, Sep 27, 201

Re: discountOverlaps option for QueryParser

2015-09-20 Thread Ahmet Arslan
ative DF, and the sum of the TTF as the representative TTF. I did relevance experiments with this and the results were positive over the existing query generated (BooleanQuery with coord disabled), especially for scoring systems that don't do anything with coord. On Sun, Sep 20, 2015 at 1:56 PM, A

Re: discountOverlaps option for QueryParser

2015-09-20 Thread Ahmet Arslan
ing.com/turnbull). You might find it useful. Cheers -Doug On Sunday, September 20, 2015, Ahmet Arslan <iori...@yahoo.com.invalid> wrote: Hi Robert, > >As I understand, with SynonymQuery, all expansion is recommended to be >performed on query time only, >and SynonymQuery w

checkJavadocLinks.py fails with Python 3.5.0

2015-09-23 Thread Ahmet Arslan
Hi, In effort to run "ant precommit" I have installed Python 3.5.0. However, it fails with the following : [exec] File "/Volumes/data/workspace/solr-trunk/dev-tools/scripts/checkJavadocLinks.py", line 20, in [exec] from html.parser import HTMLParser, HTMLParseError [exec] ImportError:

discountOverlaps option for QueryParser

2015-09-20 Thread Ahmet Arslan
Hello, Assume that term t1 is expanded into multiple terms (at the same position) during both indexing and query time. This is possible with KeywordRepeat, SynonymFilter, or the Filters that have preserveOriginal option for instance. When a two-term query (t1 t2) is executed, term t1 is

Re: checkJavadocLinks.py fails with Python 3.5.0

2015-09-23 Thread Ahmet Arslan
ies: > > python32.exe=/path/to/python3.2 > > Alan Woodward > www.flax.co.uk > > > On 23 Sep 2015, at 18:06, Ahmet Arslan wrote: > > Hi, > > In effort to run "ant precommit" I have installed Python 3.5.0. > However, it fails with the following : >

Re: [VOTE] Release Lucene/Solr 5.4.0-RC1

2015-12-08 Thread Ahmet Arslan
Hi, python3 -u dev-tools/scripts/smokeTestRelease.py https://dist.apache.org/repos/dist/dev/lucene/lucene-solr-5.4.0-RC1-rev1718046 gives me following exception: RuntimeError: JAR file

Re: [VOTE] Release Lucene/Solr 5.3.2-RC2

2016-01-20 Thread Ahmet Arslan
+1 SUCCESS! [1:38:55.940645] On Tuesday, January 19, 2016 10:25 PM, Yonik Seeley wrote: +1 -Yonik On Mon, Jan 18, 2016 at 11:23 AM, Anshum Gupta wrote: > Please vote for the RC2 release candidate for Lucene/Solr 5.3.2 > > The artifacts can be

Re: [VOTE] Release Lucene/Solr 5.4.1 RC2

2016-01-20 Thread Ahmet Arslan
+1 SUCCESS! [1:50:21.498224] On Wednesday, January 20, 2016 1:28 AM, Tomás Fernández Löbbe wrote: +1 SUCCESS! [1:27:55.987215] On Tue, Jan 19, 2016 at 12:25 PM, Yonik Seeley wrote: +1 > >-Yonik > > >On Mon, Jan 18, 2016 at 9:38 AM, Adrien

Re: [VOTE] Release Lucene/Solr 6.0.0 RC2

2016-04-04 Thread Ahmet Arslan
+1 SUCCESS! [1:42:49.802039] Ahmet On Tuesday, April 5, 2016 1:09 AM, Anshum Gupta wrote: Thanks for taking this up Nick! Here's my +1: SUCCESS! [0:38:14.023246] On Fri, Apr 1, 2016 at 1:44 PM, Nicholas Knize wrote: Please vote for the RC2

Re: Welcome Karl Wright as a Lucene/Solr committer!

2016-04-04 Thread Ahmet Arslan
Welcome Karl! On Monday, April 4, 2016 6:54 PM, Robert Muir wrote: Welcome Karl! On Mon, Apr 4, 2016 at 10:40 AM, Karl Wright wrote: > Hi all, > > Professionally, I've been active in software development since the 1970's. > My interests include many

Re: Using rows=-1 for "give me all"

2016-05-23 Thread Ahmet Arslan
Hi Steffensen, Not sure about rows=-1, but retrieval engines are optimized to return top-N results. However, there exists special commands for "give me all" https://cwiki.apache.org/confluence/display/solr/Exporting+Result+Sets Ahmet On Monday, May 23, 2016 11:38 PM, Per Steffensen

Re: [VOTE] Release Lucene/Solr 6.0.1 RC2

2016-05-25 Thread Ahmet Arslan
+1 SUCCESS! [1:00:26.085469] On Wednesday, May 25, 2016 11:27 AM, Tommaso Teofili wrote: got the same warning on the GPG key signature but could not reproduce David's issue, not sure what it could be though. I'd say if no one else can reproduce it let's go

TestUAX29URLEmailTokenizer inconsistent adding dots and apostrophes to URLs and Emails

2017-08-12 Thread Ahmet Arslan
Hi, I extracted Emails and URLs from certain TREC collections using TestUAX29URLEmailTokenizer combined with TypeTokenFilter. High Freq. terms reveal that  * some e-mail addressed start with apostrophes  * some e-mails or URLs end with a period.  I ran a few tests and this behaviour occurs only

lucene 6.6.0 download link redirects to 6.5.1

2017-08-19 Thread Ahmet Arslan
Hi, Lucene download page redirects to  http://www-eu.apache.org/dist/lucene/java/6.5.1  for me.Solr's link is correct. Ahmet

Re: Welcome Ahmet Arslan as Lucene/Solr committer

2017-12-18 Thread Ahmet Arslan
wrote: Congrats and welcome Ahmet! -- Steve www.lucidworks.com > On Dec 17, 2017, at 5:15 AM, Adrien Grand <jpou...@gmail.com> wrote: > > Hi all, > > Please join me in welcoming Ahmet Arslan as the latest Lucene/Solr committer. > Ahmet, it's tradition for you to i

Re: [VOTE] Release Lucene/Solr 7.3.1 RC2

2018-05-12 Thread Ahmet Arslan
+1 SUCCESS! [1:19:56.690027] Ahmet On Saturday, May 12, 2018, 12:41:16 AM GMT+3, Michael McCandless wrote: +1 SUCCESS! [0:40:57.887333] Mike McCandless http://blog.mikemccandless.com On Fri, May 11, 2018 at 1:09 PM, Adrien Grand

Re: Welcome Nhat Nguyen as Lucene/Solr committer

2018-06-19 Thread Ahmet Arslan
Congratulations and Welcome! On Tuesday, June 19, 2018, 7:20:48 PM GMT+3, Jason Gerlowski wrote: Welcome Nhat! On Tue, Jun 19, 2018 at 10:10 AM, Varun Thacker wrote: > Congratulations and welcome Nhat!  > > On Tue, Jun 19, 2018 at 10:16 AM, Alan Woodward wrote: >> Welcome Nhat!

Re: [VOTE] Release Lucene/Solr 7.3.1 RC1

2018-05-03 Thread Ahmet Arslan
+1 SUCCESS! [1:15:16.705804] Ahmet On Wednesday, May 2, 2018, 9:55:04 PM GMT+3, David Smiley wrote: +1 SUCCESS! [1:04:51.914445] On Wed, May 2, 2018 at 12:32 PM Michael McCandless wrote: > +1 > > SUCCESS! [0:49:04.927108] > >

Re: Welcome Dennis Gove to the PMC

2017-12-27 Thread Ahmet Arslan
Congratulations Dennis! Ahmet On Wednesday, December 27, 2017, 7:56:58 PM GMT+3, Dawid Weiss wrote: Congratulations Dennis! Dawid On Wed, Dec 27, 2017 at 5:37 PM, Anshum Gupta wrote: > Congratulations and welcome Dennis! > > On Wed,

Re: [VOTE] Release Lucene/Solr 7.2.1 RC1

2018-01-13 Thread Ahmet Arslan
+1 SUCCESS! [4:00:41.664562] Ahmet On Saturday, January 13, 2018, 7:06:47 PM GMT+3, Kevin Risden wrote: Ishan - Try docker run -it openjdk:9-jdk. java was replaced with openjdk. java:9-jdk has version 9b149 where as openjdk:9-jdk has version 9.0.1-11. This

Re: Welcome Ignacio Vera as Lucene/Solr committer

2018-01-11 Thread Ahmet Arslan
Congratulations Ignacio! Ahmet On Thursday, January 11, 2018, 9:43:50 PM GMT+3, Martin Gainty wrote: ¡Bienvendos Ignacio! Martín __  From: Erick Erickson

Re: Welcome Jason Gerlowski as committer

2018-02-10 Thread Ahmet Arslan
Congratulations and welcome Jason! On Friday, February 9, 2018, 11:58:06 AM GMT+3, Alan Woodward wrote: Welcome Jason! > On 8 Feb 2018, at 17:02, David Smiley wrote: > > Hello everyone, > > It's my pleasure to announce that Jason

Re: Welcome Karl Wright to the PMC

2017-12-28 Thread Ahmet Arslan
Congratulations  Karl! Ahmet On Thursday, December 28, 2017, 7:32:41 PM GMT+3, Steve Rowe wrote: Congrats and welcome Karl! -- Steve www.lucidworks.com > On Dec 28, 2017, at 9:08 AM, Adrien Grand wrote: > > I am pleased to announce that Karl

Re: Welcome Gus Heck as Lucene/Solr committer

2018-11-04 Thread Ahmet Arslan
Congratulations! On Friday, November 2, 2018, 7:13:35 PM GMT+3, Varun Thacker wrote: Congratulations and welcome Gus! On Thu, Nov 1, 2018 at 5:22 AM David Smiley wrote: Hi all, Please join me in welcoming Gus Heck as the latest Lucene/Solr committer!  Congratulations and Welcome,

Re: Welcome Tim Allison as a Lucene/Solr committer

2018-11-04 Thread Ahmet Arslan
Congratulations ! On Saturday, November 3, 2018, 1:43:31 AM GMT+3, Nhat Nguyen wrote: Welcome Tim! On Fri, Nov 2, 2018 at 6:33 PM Tommaso Teofili wrote: Welcome Tim!!! Tommaso Il giorno ven 2 nov 2018 alle ore 22:30 Steve Rowe ha scritto: > > Welcome Tim! > > Steve > > On Fri, Nov

Re: Welcome Tomoko Uchida as Lucene/Solr committer

2019-04-09 Thread Ahmet Arslan
Congralations Tomoko! On Tuesday, April 9, 2019, 8:48:03 PM GMT+3, Robert Muir wrote: Welcome! On Mon, Apr 8, 2019 at 11:21 AM Uwe Schindler wrote: > > Hi all, > > Please join me in welcoming Tomoko Uchida as the latest Lucene/Solr committer! > > She has been working on

[jira] Commented: (SOLR-1499) SolrEntityProcessor - DIH EntityProcessor that queries an external Solr via SolrJ

2011-03-15 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13007236#comment-13007236 ] Ahmet Arslan commented on SOLR-1499: Hi, Can i use this to upgrade solr version? Where

[jira] Commented: (SOLR-1499) SolrEntityProcessor - DIH EntityProcessor that queries an external Solr via SolrJ

2011-03-16 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13007516#comment-13007516 ] Ahmet Arslan commented on SOLR-1499: Hi Lance, I setup patch to latest trunk

[jira] Commented: (SOLR-1499) SolrEntityProcessor - DIH EntityProcessor that queries an external Solr via SolrJ

2011-03-16 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13007700#comment-13007700 ] Ahmet Arslan commented on SOLR-1499: Eric, Thanks for the pointer. As you said when I

[jira] Updated: (SOLR-1499) SolrEntityProcessor - DIH EntityProcessor that queries an external Solr via SolrJ

2011-03-17 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-1499: --- Attachment: SOLR-1499.patch Bring upto trunk version 1082579. Add (format=javabin|xml) parameter. xml

[jira] [Commented] (SOLR-1499) SolrEntityProcessor - DIH EntityProcessor that queries an external Solr via SolrJ

2011-07-04 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13059333#comment-13059333 ] Ahmet Arslan commented on SOLR-1499: Lance, I used it once to upgrade

[jira] [Commented] (LUCENE-2208) Token div exceeds length of provided text sized 4114

2011-07-05 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2208?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13059836#comment-13059836 ] Ahmet Arslan commented on LUCENE-2208: -- Hello, I am using very recent trunk, I

[jira] [Updated] (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2011-07-21 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-1604: --- Attachment: ComplexPhrase.zip Update for solr 3.3.0 * Download apache-solr-3.3.0-src.tgz * Download

[jira] [Commented] (SOLR-2649) MM ignored in edismax queries with operators

2011-07-21 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-2649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13068925#comment-13068925 ] Ahmet Arslan commented on SOLR-2649: I experienced the same issue. When i added one

[jira] Commented: (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2010-04-20 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12859048#action_12859048 ] Ahmet Arslan commented on SOLR-1604: To enable ComplexPhraseQueryParser in Solr 1.4.0

[jira] [Updated] (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2012-10-23 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-1604: --- Attachment: ComplexPhrase.zip Includes README.txt that contain instruction for Solr 4.0.0

[jira] [Commented] (SOLR-3000) Add support for ComplexPhraseQueryParser

2012-01-04 Thread Ahmet Arslan (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13179338#comment-13179338 ] Ahmet Arslan commented on SOLR-3000: I think this is duplicate of [SOLR-1604|https

[jira] [Created] (SOLR-3060) add highlighter support to SurroundQParserPlugin

2012-01-25 Thread Ahmet Arslan (Created) (JIRA)
Affects Versions: 4.0 Reporter: Ahmet Arslan Priority: Minor Fix For: 4.0 Highlighter does not recognize SrndQuery family. http://search-lucene.com/m/FuDsU1sTjgM http://search-lucene.com/m/wD8c11gNTb61 -- This message is automatically generated by JIRA. If you

[jira] [Updated] (SOLR-3060) add highlighter support to SurroundQParserPlugin

2012-01-25 Thread Ahmet Arslan (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3060?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-3060: --- Attachment: SOLR-3060.patch o.a.s.search.QParser#getHighlightQuery() method is overridden

[jira] [Updated] (SOLR-3060) add highlighter support to SurroundQParserPlugin

2012-01-25 Thread Ahmet Arslan (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3060?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-3060: --- Attachment: SOLR-3060.patch some test added add highlighter support

[jira] [Commented] (SOLR-3060) add highlighter support to SurroundQParserPlugin

2012-01-30 Thread Ahmet Arslan (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3060?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13195979#comment-13195979 ] Ahmet Arslan commented on SOLR-3060: The following commands should do it. * svn

[jira] [Created] (SOLR-3074) Bug in SolrPluginUtilsTest

2012-01-30 Thread Ahmet Arslan (Created) (JIRA)
Bug in SolrPluginUtilsTest -- Key: SOLR-3074 URL: https://issues.apache.org/jira/browse/SOLR-3074 Project: Solr Issue Type: Bug Components: search Affects Versions: 4.0 Reporter: Ahmet

[jira] [Updated] (SOLR-3074) Bug in SolrPluginUtilsTest

2012-01-30 Thread Ahmet Arslan (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3074?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-3074: --- Attachment: SOLR-3074.patch Bug in SolrPluginUtilsTest

[jira] [Commented] (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2012-02-03 Thread Ahmet Arslan (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13199774#comment-13199774 ] Ahmet Arslan commented on SOLR-1604: Committed

[jira] [Commented] (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2012-02-03 Thread Ahmet Arslan (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13200020#comment-13200020 ] Ahmet Arslan commented on SOLR-1604: I imagined that LUCENE-1486 will be closed/fixed

[jira] [Updated] (LUCENE-1486) Wildcards, ORs etc inside Phrase queries

2012-02-08 Thread Ahmet Arslan (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated LUCENE-1486: - Attachment: LUCENE-1486.patch Mark's and Tomas' non default field patches are combined

[jira] [Commented] (LUCENE-1486) Wildcards, ORs etc inside Phrase queries

2012-02-08 Thread Ahmet Arslan (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1486?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13203514#comment-13203514 ] Ahmet Arslan commented on LUCENE-1486: -- Thanks for looking into this, Mark and Tomas

[jira] [Updated] (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2012-02-09 Thread Ahmet Arslan (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-1604: --- Attachment: SOLR-1604.patch path for trunk Wildcards, ORs etc inside Phrase Queries

[jira] [Updated] (LUCENE-3758) Allow the ComplexPhraseQueryParser to search order or un-order proximity queries.

2012-02-09 Thread Ahmet Arslan (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3758?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated LUCENE-3758: - Attachment: LUCENE-3758.patch patch for trunk Allow

[jira] [Created] (SOLR-3193) highligting on an unindexed field throws InvalidTokenOffsetsException

2012-03-02 Thread Ahmet Arslan (Created) (JIRA)
Components: highlighter Affects Versions: 3.6 Reporter: Ahmet Arslan Priority: Minor When highlighting is requested on an un-indexed field (for the second time), InvalidTokenOffsetsException is thrown. http://lucene.472066.n3.nabble.com/search-highlight

[jira] [Updated] (SOLR-3193) highligting on an unindexed field throws InvalidTokenOffsetsException

2012-03-02 Thread Ahmet Arslan (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3193?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-3193: --- Attachment: SOLR-3193.patch TestCase that demonstrates bug. highligting

[jira] [Commented] (SOLR-3193) highligting on an unindexed field throws InvalidTokenOffsetsException

2012-03-02 Thread Ahmet Arslan (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3193?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13221083#comment-13221083 ] Ahmet Arslan commented on SOLR-3193: If solr.ReversedWildcardFilterFactory is removed

[jira] Updated: (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2010-10-22 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-1604: --- Attachment: ComplexPhrase.zip There is a need for un-ordered proximity search. http://search

[jira] Updated: (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2010-11-03 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-1604: --- Attachment: ComplexPhrase.zip Hyphen inside the phrase causes exception. e.g. sulfur-reducing

[jira] [Commented] (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2012-08-24 Thread Ahmet Arslan (JIRA)
Ahmet Arslan

[jira] [Created] (SOLR-3759) mistakes about example-DIH

2012-08-26 Thread Ahmet Arslan (JIRA)
: Ahmet Arslan This message is automatically

[jira] [Updated] (SOLR-3759) mistakes about example-DIH

2012-08-26 Thread Ahmet Arslan (JIRA)
Ahmet Arslan

[jira] [Updated] (SOLR-3759) mistakes about example-DIH

2012-08-26 Thread Ahmet Arslan (JIRA)
Ahmet Arslan

[jira] [Updated] (SOLR-3759) mistakes about example-DIH

2012-08-30 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3759?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-3759: --- Fix Version/s: 4.0 mistakes about example-DIH -- Key

[jira] [Created] (SOLR-3779) LineEntityProcessor processes only one document

2012-08-31 Thread Ahmet Arslan (JIRA)
Ahmet Arslan created SOLR-3779: -- Summary: LineEntityProcessor processes only one document Key: SOLR-3779 URL: https://issues.apache.org/jira/browse/SOLR-3779 Project: Solr Issue Type: Bug

  1   2   3   4   5   >