boost function for date as unix stamp

2009-09-25 Thread Joe Calderon
--joe

field collapsing sums

2009-09-30 Thread Joe Calderon
mponent to support that? thx much --joe

changing dismax parser to not treat symbols differently

2009-09-30 Thread Joe Calderon
how would i go about modifying the dismax parser to treat +/- as regular text?

Re: field collapsing sums

2009-10-01 Thread Joe Calderon
setting im missing? currently im only sending, collapse.field=brand and collapse.includeCollapseDocs.fl=num_in_stock --joe On Thu, Oct 1, 2009 at 1:14 AM, Martijn v Groningen wrote: > Hi Joe, > > Currently the patch does not do that, but you can do something else > that might help you in

Re: field collapsing sums

2009-10-01 Thread Joe Calderon
does seem to work when the collapsed results fit on one page (10 rows in my case) --joe > 2) It seems that you are using the parameters as was intended. The > collapsed documents will contain all documents (from whole query > result) that have been collapsed on a certain field value that oc

JVM OOM when using field collapse component

2009-10-01 Thread Joe Calderon
i gotten two different out of memory errors while using the field collapsing component, using the latest patch (2009-09-26) and the latest nightly, has anyone else encountered similar problems? my collection is 5 million results but ive gotten the error collapsing as little as a few thousand SEVE

Re: JVM OOM when using field collapse component

2009-10-02 Thread Joe Calderon
M when having an > index of a few million. > > Martijn > > 2009/10/2 Joe Calderon : >> i gotten two different out of memory errors while using the field >> collapsing component, using the latest patch (2009-09-26) and the >> latest nightly, >> >> has anyone el

stats page slow in latest nightly

2009-10-06 Thread Joe Calderon
hello *, ive been noticing that /admin/stats.jsp is really slow in the recent builds, has anyone else encountered this? --joe

Re: stats page slow in latest nightly

2009-10-06 Thread Joe Calderon
thx much guys, no biggie for me, i just wanted to get to the bottom of it in case i had screwed something else up.. --joe On Tue, Oct 6, 2009 at 1:19 PM, Mark Miller wrote: > I was worried about that actually. I havn't tested how fast the RAM > estimator is on huge String FieldCache

concatenating tokens

2009-10-08 Thread Joe Calderon
oking to concatenate tokens --joe

Re: Solr 1.4 release candidate

2009-10-14 Thread Joe Calderon
maybe im just not familiar with the way the version numbers works in trunk but when i build the latest nightly the jars have names like *-1.5-dev.jar, is that normal? On Wed, Oct 14, 2009 at 7:01 AM, Yonik Seeley wrote: > Folks, we've been in code freeze since Monday and a test release > candida

how to get field contents out of Document object

2009-10-14 Thread Joe Calderon
hello *, sorry if this seems like a dumb question, im still fairly new to working with lucene/solr internals. given a Document object, what is the proper way to fetch an integer value for a field called "num_in_stock", it is both indexed and stored thx much --joe

lucene 2.9 bug

2009-10-16 Thread Joe Calderon
hello * , ive read in other threads that lucene 2.9 had a serious bug in it, hence trunk moved to 2.9.1 dev, im wondering what the bug is as ive been using the 2.9.0 version for the past weeks with no problems, is it critical to upgrade? --joe

max words/tokens

2009-10-20 Thread Joe Calderon
i have a pretty basic question, is there an existing analyzer that limits the number of words/tokens indexed from a field? let say i only wanted to index the top 25 words... thx much --joe

Re: max words/tokens

2009-10-20 Thread Joe Calderon
cool np, i just didnt want to duplicate code if that already existed. On Tue, Oct 20, 2009 at 12:49 PM, Yonik Seeley wrote: > On Tue, Oct 20, 2009 at 1:53 PM, Joe Calderon wrote: >> i have a pretty basic question, is there an existing analyzer that >> limits the number of words

boostQParser and dismax

2009-10-22 Thread Joe Calderon
it with the relevancy score, rather than add it in. One way to do this is with the boost query parser. how exactly do i use the boost query parser along with the dismax parser? can someone post an example solrconfig snippet? thx much --joe

field collapsing bug (java.lang.ArrayIndexOutOfBoundsException)

2009-10-23 Thread Joe Calderon
seems to happen when sort on anything besides strictly score, even score desc, num desc triggers it, using latest nightly and 10/14 patch Problem accessing /solr/core1/select. Reason: 4731592 java.lang.ArrayIndexOutOfBoundsException: 4731592 at org.apache.lucene.search.FieldComparat

profiling solr

2009-10-26 Thread Joe Calderon
as a curiosity ide like to use a profiler to see where within solr queries spend most of their time, im curious what tools if any others use for this type of task.. im using jetty as my servlet container so ideally ide like a profiler thats compatible with it --joe

field collapsing exception

2009-10-26 Thread Joe Calderon
found another exception, i cant find specific steps to reproduce besides starting with an unfiltered result and then given an int field with values (1,2,3) filtering by 3 triggers it sometimes, this is in an index with very frequent updates and deletes --joe java.lang.NullPointerException

faceting ordering

2009-10-28 Thread Joe Calderon
oose as possible as these searches power an auto suggest feature i figured if faceted results could be sorted by score, i could simply boost phrases instead of restricting by them, thoughts? --joe

tokenize after filters

2009-11-02 Thread Joe Calderon
up into 3 tokens (aw, root, beer), but seems like you cant use a tokenizer after a filter ... so whats the best way of accomplishing this? thx much --joe

Re: apply a patch on solr

2009-11-03 Thread Joe Calderon
patch -p0 < /path/to/field-collapse-5.patch On Tue, Nov 3, 2009 at 7:48 PM, michael8 wrote: > > Hmmm, perhaps I jumped the gun.  I just looked over the field collapse patch > for SOLR-236 and each file listed in the patch has its own revision #. > > E.g. from field-collapse-5.patch: > --- src/jav

Re: apply a patch on solr

2009-11-03 Thread Joe Calderon
sorry got cut off, patch, then ant clean dist, will give you the modified solr war file, if it doesnt apply cleanly (which i dont think is currently the case), you can go back to the latest revision referenced in the patch, On Tue, Nov 3, 2009 at 8:17 PM, Joe Calderon wrote: > patch -p0 <

UTF-8 Character Set not specifed on OutputStreamWriter in StreamingUpdateSolrServer

2009-11-17 Thread Joe Kessel
CommonsHttpSolrServer seems to set the charset to UTF-8. As a workaround I am able to use the CommonsHttpSolrServer. Being new to Solr, not sure what the bug protocol is, assuming this is a bug. Thanks, Joe

RE: UTF-8 Character Set not specifed on OutputStreamWriter in StreamingUpdateSolrServer

2009-11-18 Thread Joe Kessel
Specifying the file.encoding did work, although I don't think it is a suitable workaround for my use case. Any idea what my next step is to having a bug opened. Thanks, Joe > Date: Wed, 18 Nov 2009 16:15:55 +0530 > Subject: Re: UTF-8 Character Set not specifed on OutputStre

RE: How to avoid hardcoding masterUrl in slave solrconfig.xml?

2009-11-30 Thread Joe Kessel
I do something very similar and it works for me. I noticed on your URL that you have a mixed case fetchIndex, which the request handler is checking for fetchindex, all lowercase. If it is not that simple I can try to see the exact url my code is generating. Hope it helps, Joe > F

RE: UTF-8 Character Set not specifed on OutputStreamWriter in StreamingUpdateSolrServer

2009-12-02 Thread Joe Kessel
I finally got around to testing the patch and it works well. Thanks, Joe > Date: Mon, 23 Nov 2009 12:32:46 -0800 > From: hossman_luc...@fucit.org > To: solr-user@lucene.apache.org > Subject: RE: UTF-8 Character Set not specifed on OutputStreamWriter in > StreamingU

RE: How to setup dynamic multicore replication

2009-12-08 Thread Joe Kessel
t seem to work, and have not had a chance to revisit. I have not found a way to persist the solrconfig.xml with the updates to the slave list, so the control / management is within my application. Hope this highlevel overview helps. Joe > Date: Tue, 8 Dec 2009 12:42:12 +0100 >

wildcard oddity

2009-12-15 Thread Joe Calderon
ead of being 0 or more its acting like1 or more the text im trying to match is "The Gang Gets Extreme: Home Makeover Edition" the field uses the following analyzers is anybody else having similar problems? best, --joe

RE: Re[4]: Question about copyField

2008-10-22 Thread Joe Nguyen
It doesn't need to be a copy field, right? Could you create a new field "ex", extract value from description, delete digits, and set to "ex" field before add/index to solr server? -Original Message- From: Feak, Todd [mailto:[EMAIL PROTECTED] Sent: Wednesday, O

RE: Re[6]: Question about copyField

2008-10-22 Thread Joe Nguyen
Could you post fieldType specification for "ex"? What your regex look like? -Original Message- From: Aleksey Gogolev [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 11:39 Joe To: Joe Nguyen Subject: Re[6]: Question about copyField JN> It doesn't need

multicore admin interface

2008-10-23 Thread Nguyen, Joe
Hi, I have two cores. When each core references the same dataDir, I could access the core admin interface. However, when core1 dirData is referencing one directory, and core2 another directory, I could not access the admin interface. Any idea? //each core references a different dir //both cor

Changing field datatype

2008-10-28 Thread Nguyen, Joe
I have a solr core having 2 million lengthy documents. 1. If I modify datatype of a field 'foo' from string to a sint and restart the server, what would happen to the existing documents? And documents added with the new schema? At query time (sort=foo desc), should I expect the documents sorte

RE: Changing field datatype

2008-10-28 Thread Nguyen, Joe
impact query time? -Original Message- From: Shalin Shekhar Mangar [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2008 1:33 Joe To: solr-user@lucene.apache.org Subject: Re: Changing field datatype On Wed, Oct 29, 2008 at 1:55 AM, Nguyen, Joe <[EMAIL PROTECTED]> wrote: > &

Query integer type

2008-10-28 Thread Nguyen, Joe
SITE is defined as integer. I wanted to select all document whose SITE=3002, but SITE of the response was different. http://localhost:8080/solr/mysite/select?indent=on&qt=standard&fl=SITE&fq:SITE:3002 http://localhost:8080/solr/mysite/select?indent=on&qt=dismax&fl=SITE&fq:SITE:3002 http:/

RE: Query integer type

2008-10-28 Thread Nguyen, Joe
Never mind. I misused the syntax. :-) -Original Message- From: Nguyen, Joe [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2008 7:00 Joe To: solr-user@lucene.apache.org Subject: Query integer type SITE is defined as integer. I wanted to select all document whose SITE=3002, but

combining negative queries and OR

2008-11-03 Thread Joe Pollard
7;whatever' as the productName. However, it seems that the productName statement is not being used, because I get only records back that match anotherField:"Johnny". Not sure if this is a bug or expected behavior, and I am able to work around it, but I'd certainly expect the above query to work. Thanks! -Joe

Bias score proximity for a given field

2008-11-05 Thread Nguyen, Joe
. 2005 and 2011 articles will be boosted by 0%. Any idea/suggestion how I implement this? Cheers Joe

RE: Handling proper names

2008-11-07 Thread Nguyen, Joe
Use synonym. Added these line to your ../conf/synonym.txt Stephen,Steven,Steve Bobby,Bob,Robert ... -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Jon Drukman Sent: Friday, November 07, 2008 3:19 Joe To: solr-user@lucene.apache.org Subject: Handling proper names Is

RE: Synonyms impacting the performance

2008-11-12 Thread Nguyen, Joe
Could you collaborate further? 20 synonyms would translated to 20 booleanQueries. Are you saying each booleanQuery requires a disk access? -Original Message- From: Walter Underwood [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 7:46 Joe To: solr-user@lucene.apache.org

RE: Query Performance while updating teh index

2008-11-12 Thread Nguyen, Joe
How about create a new core, index data, then swap the core? Old core is still available to handle queries till new core replaces it. -Original Message- From: Lance Norskog [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 11:16 Joe To: solr-user@lucene.apache.org Subject

RE: FW: Score customization

2008-11-12 Thread Nguyen, Joe
PROTECTED] Sent: Wednesday, November 12, 2008 2:55 Joe To: solr-user@lucene.apache.org Subject: RE: FW: Score customization I effectively need to use a multiplication in the sorting of the items. Something like score*popularity. It seems the only way to do this is to use a bf parameter. However how do

RE: Query Performance while updating teh index

2008-11-12 Thread Nguyen, Joe
High number of segments (implied more files need to be opened) would impact query response time. In that case, you could run optimize script to consolidate into a single segment. -Original Message- From: Lance Norskog [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 11:16 J

RE: abt Multicore

2008-11-17 Thread Nguyen, Joe
y, November 17, 2008 6:09 Joe To: solr-user@lucene.apache.org Subject: Re: abt Multicore Are all the documents in the same search space? That is, for a given query, could any of the 10MM docs be returned? If so, I don't think you need to worry about multicore. You may however need to pu

RE: abt Multicore

2008-11-17 Thread Nguyen, Joe
Any suggestions? -Original Message- From: Nguyen, Joe Sent: Monday, November 17, 2008 9:40 Joe To: 'solr-user@lucene.apache.org' Subject: RE: abt Multicore "Are all the documents in the same search space? That is, for a given query, could any of the 10MM docs be retu

RE: Updating schema.xml without deleting index?

2008-11-17 Thread Nguyen, Joe
e optimize will consolidate all segments into a single segment. At the end, you'll have a single segment which include the new field. Would that work? -Original Message- From: Jeff Lerman [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 12:45 Joe To: solr-user@lucene.apa

RE: Query Response Doc Score -> Int Value

2008-11-18 Thread Nguyen, Joe
Score = 2.3518934 + 0.2 = 2.5518934 You can specify the function in the request URL (http://wiki.apache.org/solr/FunctionQuery) -Original Message- From: Derek Springer [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2008 8:39 Joe To: solr-user@lucene.apache.org Subject: Re:

RE: Question about autocommit

2008-11-19 Thread Nguyen, Joe
Could trigger the commit in this case? -Original Message- From: Nickolai Toupikov [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 8:36 Joe To: solr-user@lucene.apache.org Subject: Question about autocommit Hello, I would like some details on the autocommit mechanism. I

RE: Question about autocommit

2008-11-19 Thread Nguyen, Joe
[mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 9:09 Joe To: solr-user@lucene.apache.org Subject: Re: Question about autocommit They are separate commits. ramBufferSizeMB controls when the underlying Lucene IndexWriter flushes ram to disk (this isnt like the IndexWriter commiting or

RE: Question about autocommit

2008-11-19 Thread Nguyen, Joe
-Original Message- From: Nickolai Toupikov [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 9:51 Joe To: solr-user@lucene.apache.org Subject: Re: Question about autocommit The documents have an average size of about a kilobyte i would say. bigger ones can pop up, but not nearly often

RE: No search result behavior (a la Amazon)

2008-11-19 Thread Nguyen, Joe
: Caligula [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 11:11 Joe To: solr-user@lucene.apache.org Subject: No search result behavior (a la Amazon) It appears to me that Amazon is using a 100% minimum match policy. If there are no matches, they break down the original search terms

RE: No search result behavior (a la Amazon)

2008-11-19 Thread Nguyen, Joe
would be 1. q= +A +B +C Match all terms 2. q= +A +B -C Match A and B but not C 3. q =+A -B +C 4. q = -Original Message- From: Caligula [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 11:52 Joe To: solr-user@lucene.apache.org Subject: RE: No search result behavior (a la A

Best way to unit test solr integration

2009-03-27 Thread Joe Pollard
of my test case setup, fill it with interesting documents, and do some queries, comparing the results to expected results. Are there wiki pages or other documented examples of doing this? It seems rather straight-forward, but who knows, it may be dead simple with some unknown feature. Thanks! -Joe

RE: Best way to unit test solr integration

2009-03-27 Thread Joe Pollard
l the different scenarios in which we use Solr. Also, when/if we start making solr config changes, I can ensure that they change nothing from my app's functional point of view (with the exception of ridding us of dreaded OOMs). Thanks, -Joe -Original Message- From: Eric Pugh [mail

Coming up with a model of memory usage

2009-04-06 Thread Joe Pollard
es on how much memory a particular document takes up in memory, based on the data types, etc? I have several stored fields, numerous other non-stored fields, a largish copyTo field, and I am doing some sorting on indexed, non-stored fields. Any pointers would be appreciated! Thanks, -Joe

Re: Coming up with a model of memory usage

2009-04-07 Thread Joe Pollard
by '2008-08-12' and then by '121826'. Any other tips/guidance like this would be great! Thanks, -Joe On Mon, 2009-04-06 at 15:43 -0500, Joe Pollard wrote: > To combat our frequent OutOfMemory Exceptions, I'm attempting to come up > with a model so that we can determi

RE: Coming up with a model of memory usage

2009-04-07 Thread Joe Pollard
Cool, great resource, thanks. -Original Message- From: Shalin Shekhar Mangar [mailto:shalinman...@gmail.com] Sent: Tuesday, April 07, 2009 10:13 AM To: solr-user@lucene.apache.org Subject: Re: Coming up with a model of memory usage On Tue, Apr 7, 2009 at 8:25 PM, Joe Pollard wrote: >

RE: Coming up with a model of memory usage

2009-04-07 Thread Joe Pollard
ecide whether or not it's worth the effort Best Erick On Tue, Apr 7, 2009 at 10:55 AM, Joe Pollard wrote: > It doesn't seem to matter whether fields are stored or not, but I've > found a rather striking difference in the memory requirements during > sorting. Sorting o

RE: Coming up with a model of memory usage

2009-04-07 Thread Joe Pollard
up > to you to decide whether or not it's worth the effort > > Best > Erick > > On Tue, Apr 7, 2009 at 10:55 AM, Joe Pollard > wrote: > >> It doesn't seem to matter whether fields are stored or not, but I've >> found a rather striking diff

_val:ord(field) (from wiki LargeIndexes)

2009-04-07 Thread Joe Pollard
I see this interesting line in the wiki page LargeIndexes http://wiki.apache.org/solr/LargeIndexes (sorting section towards the bottom) Using _val:ord(field) as a search term will sort the results without incurring the memory cost. I'd like to know what this means, but I'm having a bit of trou

Distributed Search - only get ids

2009-04-29 Thread Joe Pollard
ds & sort fields) 2) Merge these into one list of N sorted id fields. 3) Query each shard for the details of these documents (by id), getting back a field list of id only. It seems to me that step 3 is overhead that can be skipped. Any thoughts on this/known patches? Thanks, -Joe

Re: SOLR Performance Tuning: Pagination

2009-12-24 Thread Joe Calderon
fwiw, when implementing distributed search i ran into a similar problem, but then i noticed even google doesnt let you go past page 1000, easier to just set a limit on start On Thu, Dec 24, 2009 at 8:36 AM, Walter Underwood wrote: > When do users do a query like that? --wunder > > On Dec 24, 200

boosting on string distance

2009-12-29 Thread Joe Calderon
name, but how do i specify the use query as the other parameter? http://wiki.apache.org/solr/FunctionQuery#strdist best, --joe

score = result of function query

2009-12-30 Thread Joe Calderon
how can i make the score be solely the output of a function query? the function query wiki page details something like q=boxname:findbox+_val_:"product(product(x,y),z)"&fl=*,score but that doesnt seems to work --joe

analyzer type="query" with NGramTokenFilterFactory forces phrase query

2009-12-31 Thread Joe Calderon
Hello *, im trying to make an index to support spelling errors/fuzzy matching, ive indexed my document titles with NGramFilterFactory minGramSize=2 maxGramSize=3, using the analysis page i can see the common grams match between the indexed value and the query value, however when i try to do a query

Re: analyzer type="query" with NGramTokenFilterFactory forces phrase query

2009-12-31 Thread Joe Calderon
"if this is the expected behaviour is there a way to override it?"[1] [1] me On Thu, Dec 31, 2009 at 10:13 AM, AHMET ARSLAN wrote: >> Hello *, im trying to make an index >> to support spelling errors/fuzzy >> matching, ive indexed my document titles with >> NGramFilterFactory >> minGramSize=2 ma

custom wildcarding in qparser

2010-01-08 Thread Joe Calderon
im looking for, the problem im trying to solve is matching wildcards on terms that can be entered multiple ways, i have a set of analyzers that generate the various terms, ex wildcarding on stemmed fields etc thx much --joe

help implementing a couple of business rules

2010-01-11 Thread Joe Calderon
'description2' 2. given a set of fields how to return matches that match across them but on one specific field match as a phrase only, ex im using a dismax parser currently but i want matches against a field called 'people' to only match as a phrase thx much, --joe

Re: help implementing a couple of business rules

2010-01-11 Thread Joe Calderon
matches sorry if i was unclear --joe On Mon, Jan 11, 2010 at 10:13 AM, Erik Hatcher wrote: > > On Jan 11, 2010, at 12:56 PM, Joe Calderon wrote: >> >> 1. given a set of fields how to return matches that match across them >> but not just one specific one, ex im using a

Re: Solr 1.4 Field collapsing - What are the steps for applying the SOLR-236 patch?

2010-01-11 Thread Joe Calderon
it seems to be in flux right now as the solr developers slowly make improvements and ingest the various pieces into the solr trunk, i think your best bet might be to use the 12/24 patch and fix any errors where it doesnt apply cleanly im using solr trunk r892336 with the 12/24 patch --joe

Re: question about date boosting

2010-01-12 Thread Joe Calderon
I think you need to use the new trieDateField On 01/12/2010 07:06 PM, Daniel Higginbotham wrote: Hello, I'm trying to boost results based on date using the first example here:http://wiki.apache.org/solr/SolrRelevancyFAQ#How_can_I_boost_the_score_of_newer_documents However, I'm getting an er

OverlappingFileLockException when using startup

2010-01-15 Thread Joe Kessel
at we needed replicate after startup as there was no version information on the master after restarting the instance. Is there something special that needs to be done when using replicate after startup? Or is this a bug? below is the solr portion of the stacktrace. Thanks, Joe

RE: OverlappingFileLockException when using startup

2010-01-15 Thread Joe Kessel
open a jira issue. Thanks, Joe > Date: Fri, 15 Jan 2010 19:06:15 -0500 > Subject: Re: OverlappingFileLockException when using name="replicateAfter">startup > From: yo...@lucidimagination.com > To: solr-user@lucene.apache.org > > Interesting... this should be impo

RE: OverlappingFileLockException when using startup

2010-01-16 Thread Joe Kessel
There is no issue here, we had patched our solr to include SOLR-1595 and our webapps directory contained two wars. With only a single war file there is no issue with this replication handler. thanks for the quick response. Joe > From: isjust...@hotmail.com > To: sol

Re: Field collapsing patch error

2010-01-19 Thread Joe Calderon
this has come up before, my suggestions would be to use the 12/24 patch with trunk revision 892336 http://www.lucidimagination.com/search/document/797549d29e1810d9/solr_1_4_field_collapsing_what_are_the_steps_for_applying_the_solr_236_patch 2010/1/19 Licinio Fernández Maurelo : > Hi folks, > > i'

commit fails on weblogic

2010-01-21 Thread Joe Kessel
Using Solr 1.4 and the StreamingUpdateSolrServer on Weblogic 10.3 and get the following error on commit. The data seems to load fine, and the same code works fine with Tomcat. On the client side an Internal Server Error is reported. Thanks, Joe weblogic.utils.NestedRuntimeException

create requesthandler with default shard parameter for different query parser

2010-01-21 Thread Joe Calderon
:8080/solr/core3 query facet spellcheck debug which works as long as qt=standard, if i change it to dismax it doenst use the shards parameter anymore... thx much --joe

Re: create requesthandler with default shard parameter for different query parser

2010-01-21 Thread Joe Calderon
main reason im creating the new request handler, or do i put them all as defaults under my new request handler and let the query parser use whichever ones it supports? On Thu, Jan 21, 2010 at 11:45 AM, Yonik Seeley wrote: > On Thu, Jan 21, 2010 at 2:39 PM, Joe Calderon wrote: >> hello *

RE: commit fails on weblogic

2010-01-22 Thread Joe Kessel
ne on Weblogic, I assume this issue is with the StreamingUpdateSolrServer. Thanks, Joe Caused by: org.apache.commons.httpclient.ProtocolException: Unbuffered entity enclosing request can not be repeated. at org.apache.commons.httpclient.methods.EntityEnclosingMethod.writeReques

CoreAdmin CREATE instancedir recommendation needed

2010-01-22 Thread Joe Kessel
ared config and schema. Thanks, Joe _ Hotmail: Powerful Free email with security by Microsoft. http://clk.atdmt.com/GBL/go/196390710/direct/01/

Re: index of facet fields are not same as original string

2010-01-28 Thread Joe Calderon
facets are based off the indexed version of your string nor the stored version, you probably have an analyzer thats removing punctuation, most people index the same field multiple ways for different purposes, matching. storting, faceting etc... index a copy of your field as string type and facet o

distributed search and failed core

2010-01-29 Thread Joe Calderon
hello *, in distributed search when a shard goes down, an error is returned and the search fails, is there a way to avoid the error and return the results from the shards that are still up? thx much --joe

Re: Basic indexing question

2010-02-02 Thread Joe Calderon
by default solr will only search the default fields, you have to either query all fields field1:(ore) or field2:(ore) or field3:(ore) or use a different query parser like dismax On Tue, Feb 2, 2010 at 3:31 PM, Stefan Maric wrote: > I have got a basic configuration of Solr up and running and have

Re: Basic indexing question

2010-02-02 Thread Joe Calderon
the lucene query parser as i mentioned before, the syntax cen be found at http://lucene.apache.org/java/2_9_1/queryparsersyntax.html hope this helps --joe On Tue, Feb 2, 2010 at 3:59 PM, Stefan Maric wrote: > Thanks for the quick reply > I will have to see if the default query mechanis

Re: distributed search and failed core

2010-02-03 Thread Joe Calderon
a shard has failed On Wed, Feb 3, 2010 at 10:55 AM, Yonik Seeley wrote: > On Fri, Jan 29, 2010 at 3:31 PM, Joe Calderon wrote: >> hello *, in distributed search when a shard goes down, an error is >> returned and the search fails, is there a way to avoid the error and >> re

fuzzy matching / configurable distance function?

2010-02-04 Thread Joe Calderon
is it possible to configure the distance formula used by fuzzy matching? i see there are other under the function query page under strdist but im wondering if they are applicable to fuzzy matching thx much --joe

source tree for lucene

2010-02-04 Thread Joe Calderon
if there is another lucene tree i should grab to use to build solr? --joe

old wildcard highlighting behaviour

2010-02-05 Thread Joe Calderon
hello *, currently with hl.usePhraseHighlighter=true, a query for (joe jack*) will highlight joe jackson, however after reading the archives, what im looking for is the old 1.1 behaviour so that only joe jack is highlighted, is this possible in solr 1.5 ? thx much --joe

Re: old wildcard highlighting behaviour

2010-02-06 Thread Joe Calderon
when i set hl.highlightMultiTerm=false the term that matches the wild card is not highlighted at all, ideally ide like a partial highlight (the characters before the wildcard), but if not i can live without it thx much for the help --joe On Fri, Feb 5, 2010 at 10:44 PM, Mark Miller wrote: >

analysing wild carded terms

2010-02-09 Thread Joe Calderon
hello *, quick question, what would i have to change in the query parser to allow wildcarded terms to go through text analysis?

Re: question/suggestion for Solr-236 patch

2010-02-10 Thread Joe Calderon
you can do that very easily yourself in a post processing step after you receive the solr response On Wed, Feb 10, 2010 at 8:12 AM, gdeconto wrote: > > I have been able to apply and use the solr-236 patch (field collapsing) > successfully. > > Very, very cool and powerful. > > My one comment/conc

Re: analysing wild carded terms

2010-02-10 Thread Joe Calderon
sorry, what i meant to say is apply text analysis to the part of the query that is wildcarded, for example if a term with latin1 diacritics is wildcarded ide still like to run it through ISOLatin1Filter On Wed, Feb 10, 2010 at 4:59 AM, Fuad Efendi wrote: >> hello *, quick question, what would i h

Re: How to reindex data without restarting server

2010-02-11 Thread Joe Calderon
if you use the core model via solr.xml you can reload a core without having to to restart the servlet container, http://wiki.apache.org/solr/CoreAdmin On 02/11/2010 02:40 PM, Emad Mushtaq wrote: Hi, I would like to know if there is a way of reindexing data without restarting the server. Lets sa

reloading sharedlib folder

2010-02-12 Thread Joe Calderon
when using solr.xml, you can specify a sharedlib directory to share among cores, is it possible to reload the classes in this dir without having to restart the servlet container? it would be useful to be able to make changes to those classes on the fly or be able to drop in new plugins

problem with edgengramtokenfilter and highlighter

2010-02-13 Thread Joe Calderon
i ran into a problem while using the edgengramtokenfilter, it seems to report incorrect offsets when generating tokens, more specifically all the tokens have offset 0 and term length as start and end, this leads to goofy highlighting behavior when creating edge grams for tokens beyond the first one

Re: problem with edgengramtokenfilter and highlighter

2010-02-14 Thread Joe Calderon
lucene-2266 filed and patch posted. On 02/13/2010 09:14 PM, Robert Muir wrote: Joe, can you open a Lucene JIRA issue for this? I just glanced at the code and it looks like a bug to me. On Sun, Feb 14, 2010 at 12:07 AM, Joe Calderonwrote: i ran into a problem while using the

Re: and DisMaxRequestHandler

2010-02-15 Thread Joe Calderon
no but you can set a default for the qf parameter with the same value On 02/15/2010 01:50 AM, Steve Radhouani wrote: Hi there, Can the option be used by the DisMaxRequestHandler? Thanks, -Steve

Re: Reindex after changing defaultSearchField?

2010-02-17 Thread Joe Calderon
no, youre just changing how your querying the index, not the actual index, you will need to restart the servlet container or reload the core for the config changes to take effect tho On 02/17/2010 10:04 AM, Frederico Azeiteiro wrote: Hi, If i change the "defaultSearchField" in the core schem

Re: including 'the' dismax query kills results

2010-02-18 Thread Joe Calderon
use the common grams filter, itll create tokens for stop words and their adjacent terms On Thu, Feb 18, 2010 at 7:16 AM, Nagelberg, Kallin wrote: > I've noticed some peculiar behavior with the dismax searchhandler. > > In my case I'm making the search "The British Open", and am getting 0 > resul

Re: Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-24 Thread Joe Calderon
i had to create a autosuggest implementation not too long ago, originally i was using faceting, where i would match wildcards on a tokenized field and facet on an unaltered field, this had the advantage that i could do everything from one index, though it was also limited by the fact suggestions ca

<    1   2   3   4   5   >