Re: What is omitNorms

2011-05-26 Thread Romi
thanks for the link, i got lot information from this document. Can u please tell me how can i verify omitNorms effect in my document indexing or searching. - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/What-is-omitNorms-tp2987547p2987649.html Sent from the Solr -

how can i index data in different documents

2011-05-26 Thread Romi
Hi, in my database i have two types of entity customer and product. I want to index customer related information in one document and product related information in other document. is it possible via solr , if so how can i achieve this. Thanks Regards Romi. - Romi -- View this message in

Re: Single document scanning

2011-05-26 Thread Romi
First of all subscribe to the mailing list. - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/Single-document-scanning-tp2987614p2987705.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: What is omitNorms

2011-05-26 Thread Chandan Tamrakar
When you say omitnorms=true for any fields it means SOLR will not store norms . AFAIK , if you do not store these norms then your index size would be smaller and will take less memory . You could safely omit these norms for smaller fields . i.e your indexing time is more. So if you do not

RE: Single document scanning

2011-05-26 Thread Romi
it seems, try again for better results - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/Single-document-scanning-tp2987614p2987788.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: What is omitNorms

2011-05-26 Thread Romi
Norms are used to boosts and field length normalization during indexing time so that short document has higher score How it is that if i set omitnorms=false for a field then short documents have higher score. i could not get this point , might be because i could not find any running example for

UniqueKey field in schema.xml

2011-05-26 Thread Romi
suppose I have two tables in database, say product table and customer table.i want to make (productID,customerID) a uniqueKey for my indexing document. how can i achieve this. - Romi -- View this message in context:

Re: Spellcheck: Two dictionaries

2011-05-26 Thread roySolr
?? -- View this message in context: http://lucene.472066.n3.nabble.com/Spellcheck-Two-dictionaries-tp2931458p2987915.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread bryan rasmussen
ya...but when i set indexed=false for a particular field, and i search as *:* then it will search all documents thats true, but what i think is it should not contain the field which i set as indexed=true. for example in a document fields are id, author,title. and i for author field i set

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Romi
thanks a lot bryan: it might be again the repetition, but i just want to know WHY it is indexing the field when it is indexed=false, what if stored=true, it is clearly written in documentation that a field is search able only if it is indexed=true, which surely make sense. and my application is

Re: UniqueKey field in schema.xml

2011-05-26 Thread pravesh
Create a new unique field for this purpose, like, myUniqueField, then, just combine (product-id+cust-id) and post it to this new field. -- View this message in context: http://lucene.472066.n3.nabble.com/UniqueKey-field-in-schema-xml-tp2987807p2988098.html Sent from the Solr - User mailing list

Re: What is omitNorms

2011-05-26 Thread pravesh
omitNorms=true on a field will have following effect: 1. length normalization will not work on the specific field-- Which means matching documents with shorter length will not be preferred/boost over matching documents with greater length for the specific field, at search time. 2. Index time

Re: FieldCache

2011-05-26 Thread pravesh
This is because you may be having only 10 unique terms in your indexed Field. BTW, what do you mean by controlling the FieldCache? -- View this message in context: http://lucene.472066.n3.nabble.com/FieldCache-tp2987541p2988142.html Sent from the Solr - User mailing list archive at Nabble.com.

Problem with spellchecking, dont want multiple request to SOLR

2011-05-26 Thread roySolr
Hello, First i will explain my situation. I have a 2 fields on my website: What and Where. When a user search i want spellcheck on both fields. Now i have 2 dictionaries, one for what and one for where. I want to search with one request and spellcheck both fields. Is it possible and how? --

Re: UniqueKey field in schema.xml

2011-05-26 Thread Romi
what do you mean by combine two fields customerID and ProductId. what i tried is 1. make both fields unique but it doesnot server my purpose 2. make a new field ID and copy both customerID , ProductId into ID using CopyField and now make ID as uniqueKey but i got a error saying: Document

Re: What is document tag in data-config.xml of Solr

2011-05-26 Thread pravesh
document tag represents to the actual SOLR document that will be posted by the DIH. This mapping is used by the DIH to map DB-to-index document. You can have multiple entity tags, as you might be pulling data from more than 1 table. You can only have one document tag in you db-data-config.xml

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread bryan rasmussen
From my experience if it is indexing content that you have told it not to index that is because you haven't cleared your old indexed content. If you index something using schema version 5 which says indexed = true and then you change it to indexed = false you have to delete your old indexed

Re: Too many Boolean Clause and Filter Query

2011-05-26 Thread pravesh
I'm sure you can fix this by increasing maxBooleanClauses value to some max. This shld apply to filter query as well -- View this message in context: http://lucene.472066.n3.nabble.com/Too-many-Boolean-Clause-and-Filter-Query-tp2974848p2988190.html Sent from the Solr - User mailing list archive

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Romi
i deleted my index but what do u mean by restart with new schema?? - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/problem-in-setting-field-attribute-in-schema-xml-tp2984126p2988197.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread bryan rasmussen
Well I'm probably being overly cautious here but its been my experience that if I have a schema that says indexed = true on a field and I change it to indexed = false I have to delete my index to get rid of everything that was indexed with the old schema and I have to restart to be able to index

How to access the content of a CopyField with Solrj?

2011-05-26 Thread Jean-Claude Dauphin
Hi all, I have a catch-all field defined as a CopyField in the Schema and use a POJO to create the documents, thus the POJO doesn't include the catch-all field. The SolrDocuments retrieved contains the fields set up in the POJO and doesn't include the CopyFields. Is-it possible to access the

Re: UniqueKey field in schema.xml

2011-05-26 Thread François Schiettecatte
You concatenate the two keys into a single string, with some sort of delimiter between the two keys. François On May 26, 2011, at 6:05 AM, Romi wrote: what do you mean by combine two fields customerID and ProductId. what i tried is 1. make both fields unique but it doesnot server my

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Romi
i have done it, i deleted old indexes and created new indexes but still able to search it through *:*, and no result when i search it as field:value. really surprising result. :-O - Romi -- View this message in context:

Re: UniqueKey field in schema.xml

2011-05-26 Thread Romi
I am not getting how can i combine two keys in to a single string using some delimiter - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/UniqueKey-field-in-schema-xml-tp2987807p2988284.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: UniqueKey field in schema.xml

2011-05-26 Thread François Schiettecatte
Here is some code: -- final String key1 = 1; final String key2 = 2; final String masterKey = key1 + : + key2; -- You need to combine the keys *before* you send them to Solr. François On May 26, 2011, at 7:02 AM, Romi wrote: I am not getting how can i combine two keys in to a

Re: UniqueKey field in schema.xml

2011-05-26 Thread Romi
i might have misspelled the question. this is the entry in my db-data-config.xml file: entity name=torder query=select UID_PK,creationDate,email,confirmationCode from torder field column=creationDate name=date / entity name=torderattribute query=select UID_PK from torderattribute where

RE: Out of memory on sorting

2011-05-26 Thread pravesh
For saving Memory: 1. allocate as much memory to the JVM (especially if you are using 64bit OS) 2. You can set omitNorms=true for your date id fields (actually for all fields where index-time boosting length normalization isn't required. This will require a full reindex) 3. Are you sorting on

Re: how to integrate solr with spring framework

2011-05-26 Thread pravesh
Just read through: http://www.springbyexample.org/examples/solr-client.html http://static.springsource.org/spring-roo/reference/html/base-solr.html -- View this message in context: http://lucene.472066.n3.nabble.com/how-to-integrate-solr-with-spring-framework-tp2955540p2988363.html Sent from

Re: UniqueKey field in schema.xml

2011-05-26 Thread Stefan Matheis
Romi, then you want to use the http://wiki.apache.org/solr/DataImportHandler#TemplateTransformer ? :) Regards Stefan Am 26.05.2011 13:17, schrieb Romi: i might have misspelled the question. this is the entry in my db-data-config.xml file: entity name=torder query=select

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Chandan Tamrakar
I guess you are indexing with property index=false , stored = true if it is , that means you are storing the value on index , so whenever you do *:* you can see the stored value for example if you have a field = ID, Customer_Name and you would only like to index customer_name because

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Michael Lackhoff
Am 26.05.2011 12:52, schrieb Romi: i have done it, i deleted old indexes and created new indexes but still able to search it through *:*, and no result when i search it as field:value. really surprising result. :-O I really don't understand your problem. Thist is not at all surprising but the

Re: Terms Component - solr-1.4.0

2011-05-26 Thread Solr User
Hi All, Please help me in implementing TermsComponent in my current Solr solution. Regards, Solr User On Tue, May 17, 2011 at 4:12 PM, Solr User solr...@gmail.com wrote: Hi All, I am using Solr 1.4.0 and dismax as request handler.I have the following in my solrconfig.xml in the dismax

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Romi
did u mean when i set indexed=false and store=true, solr does not index the field's value but store its value as it is??? - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/problem-in-setting-field-attribute-in-schema-xml-tp2984126p2988458.html Sent from the Solr -

Re: Huge performance drop in distributed search w/ shards on the same server/container

2011-05-26 Thread pravesh
Do you really require multi-shards? Single core/shard will do for even millions of documents and the search will be faster than searching on multi-shards. Consider multi-shard when you cannot scale-up on a single shard/machine(e.g, CPU,RAM etc. becomes major block). Also read through the SOLR

Re: UniqueKey field in schema.xml

2011-05-26 Thread Romi
I tried it as : entity name=torder query=select UID_PK,creationDate,email,confirmationCode from torder field column=creationDate name=date / entity name=torderattribute transformer=TemplateTransformer query=select UID_PK from torderattribute where

Re: How does Solr's MoreLikeThis component internally work to get results?

2011-05-26 Thread pravesh
This will help: http://cephas.net/blog/2008/03/30/how-morelikethis-works-in-lucene/ -- View this message in context: http://lucene.472066.n3.nabble.com/How-does-Solr-s-MoreLikeThis-component-internally-work-to-get-results-tp2938407p2988487.html Sent from the Solr - User mailing list archive

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread bryan rasmussen
On Thu, May 26, 2011 at 2:10 PM, Romi romijain3...@gmail.com wrote: did u mean when i set indexed=false and store=true, solr does not index the field's value but store its value as it is??? Yes. So you can get back the value of all stored fields even if your search actually only finds results in

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Michael Lackhoff
Am 26.05.2011 14:10, schrieb Romi: did u mean when i set indexed=false and store=true, solr does not index the field's value but store its value as it is??? I don't know if you are asking me since you do not quote anything but yes of course this is exactly the purpose of indexed and stored.

RE: problem in setting field attribute in schema.xml

2011-05-26 Thread Alexander Golubowitsch
Hi Romi, as someone mentioned earlier already: indexed - The field value can be matched when you search on that field (field:some-value-to-match) stored -The field value can be retrieved from Solr in result sets (result docs can include that field and its value) @ Indexing in

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Romi
:), Thanks.. now i got the purpose of indexed and store. - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/problem-in-setting-field-attribute-in-schema-xml-tp2984126p2988506.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Romi
Thanks for making me understand the concept of indexing and storing field. now i got the point :) - Romi -- View this message in context: http://lucene.472066.n3.nabble.com/problem-in-setting-field-attribute-in-schema-xml-tp2984126p2988516.html Sent from the Solr - User mailing list archive

Re: problem in setting field attribute in schema.xml

2011-05-26 Thread Chandan Tamrakar
Yes as i said earlier . If you want to store the value of field as it is in index without Tokenizing . .for example customer_id which is a unique fields and you don't want to tokenize when you index a field you could tokenize the field values to index based on what tokenizer you use so that

Re: Too many Boolean Clause and Filter Query

2011-05-26 Thread Sujatha Arun
We have increased the maxBoolean Clause now ,but since we have a number of instances on a single server and also number of ids that will get added to filter wll be increasing ...with no known limit ,I was wonderng f there was any other scalable method not affected by the maxboolean clause..

Re: UniqueKey field in schema.xml

2011-05-26 Thread Stefan Matheis
Romi, first, you're missing a $ Sign for the first Variable. second, why not just field column=ID .. / ? The field-Tag has no ID, in case you're using the TemplateTransformer. Regards Stefan Am 26.05.2011 14:16, schrieb Romi: I tried it as : entity name=torder query=select

how can i index data in different documents

2011-05-26 Thread Romi
Hi, i was not getting reply for this post, so here i am reposting this, please reply. In my database i have two types of entity customer and product. I want to index customer related information in one document and product related information in other document. is it possible via solr , if so how

Re: UniqueKey field in schema.xml

2011-05-26 Thread Romi
first, you're missing a $ Sign for the first Variable. second, why not just field column=ID .. / ? The field-Tag has no ID, in case you're using the TemplateTransformer. I got my solution..thanks for it. but after looking your this reply..please make it clear: UID_PK is a column in my database

why use QueryElevationComponent

2011-05-26 Thread Romi
what is QueryElevationComponent, why it is used. in my schema.xml if i do not declare a uniqueKey then it shows the error org.apache.solr.common.SolrException: QueryElevationComponent requires the schema to have a uniqueKeyField why so ?? - Romi -- View this message in context:

Issue while extracting content from MS Excel 2007 file using TikaEntityProcessor

2011-05-26 Thread Rahul Warawdekar
Hi All, I am using Solr 3.1 for one of our search based applications. We are using DIH to index our data and TikaEntityProcessor to index attachments. Currently we are running into an issue while extracting content from one of our MS Excel 2007 files, using TikaEntityProcessor. The issue is the

Re: What is omitNorms

2011-05-26 Thread pravesh
What would be the default value for omitNorms? --- Default value is false Is general advise to ignore this and set the value explicitly? --- Depends on your requirement. Do this on field-per-field basis. Set to false on fields where you want the norms, or, set to true on fields where you want

Re: What is omitNorms

2011-05-26 Thread Dmitry Kan
Hi pravesh, Thanks for the quick reply. --Dmitry On Thu, May 26, 2011 at 4:27 PM, pravesh suyalprav...@yahoo.com wrote: What would be the default value for omitNorms? --- Default value is false Is general advise to ignore this and set the value explicitly? --- Depends on your requirement.

RE: SOLR Install

2011-05-26 Thread Roger Shah
Thanks, Yuhan. I will look into both methods. Which is better or which method is recommended? How do I search through a database? Raj -Original Message- From: Yuhan Zhang [mailto:yzh...@onescreen.com] Sent: Monday, May 23, 2011 7:16 PM To: solr-user@lucene.apache.org Subject: Re:

Re: how can i index data in different documents

2011-05-26 Thread Tanguy Moal
Hi Romi, A simple way to do so is to define in your schema.xml the union of all the columns you need plus a type field to distinguish your entities. eg, In your DB table1 : - col1 : varchar - col2 : int - col3 : float table2 : - col1 : int - col2 : varchar - col3 : int - col4 : varchar in

Issue in Solr Indexing

2011-05-26 Thread deepak agrawal
Hi All, When i am Indexing the Record into the Solr it is successfully indexing and after that i am committing that commit is also showing successfully. but when i am going to search that particular record into the solr that time i am not getting that record from Solr. I am using Solr1.4.1

Re: UniqueKey field in schema.xml

2011-05-26 Thread Romi
Stefen, as u can see entity name=torder query=select UID_PK,creationDate,email,confirmationCode from torder field column=creationDate name=date / entity name=torderattribute transformer=TemplateTransformer query=select UID_PK from torderattribute where

Re: how can i index data in different documents

2011-05-26 Thread Romi
Ensure that when you add your documents, their type value is effectively set to either table1 or table2. did you mean i set document name=d1 type=table1 in schema.xml??? but as far as i concern there can only be one document tag then what about the table2?? - Romi -- View this message in

Re: Issue in Solr Indexing

2011-05-26 Thread Gora Mohanty
On Thu, May 26, 2011 at 7:06 PM, deepak agrawal dk.a...@gmail.com wrote: Hi All, When i am Indexing the Record into the Solr it is successfully indexing and after that i am committing that commit is also showing successfully. but when i am going to search that particular record into the solr

Re: Termscomponent sort question

2011-05-26 Thread antonio
Hi Dmitry Kan, thanks for your anwser. This is an idea, but i think that will be not so performing. Because if the terms are 1000, i must reorder 1000 terms by own length, and i think the time will be high for make autocomplete. Don't you think? -- View this message in context:

Re: analyzer type - does it default to index or query?

2011-05-26 Thread Koji Sekiguchi
(11/05/26 13:23), Andy wrote: Hi, When specifying an analyzer for a fieldType, I can say type=index or type=query What if I don't spcify the type for an analyzer? Does it default to index or query or both? Both. koji -- http://www.rondhuit.com/en/

RE: Spellcheck: Two dictionaries

2011-05-26 Thread Dyer, James
Are you trying to do something like this: defType=dismaxqf=what whereq=(spellchek me with both diktionaries fur what and where) ?? If so, then I believe your only option is to create a third dictionary that combines what and where into one big uber-dictionary. Create a new field and

RE: FieldCache

2011-05-26 Thread Jean-Sebastien Vachon
10 unique terms on 1.5M documents each with 50+ fields? I don't think so ;) What I mean is controlling its size like the other caches. There are currently no options in solrconfig.xml to control this cache. Is Solr/Lucene managing this all by itself? It could be that my understanding of the

Re: solr 3.1 without slf4j-jdk14-1.5.5.jar

2011-05-26 Thread Juan Antonio Farré Basurte
If I'm not wrong, solrj uses slf4j for logging. slf4j-api.jar provides the api, but is not capable by itself to do the actual logging. For it to be able to log, it needs an actual implementation, usually a binding to some other logging library. slf4j-jdk14 is the binding that uses the logging

Re: FieldCache

2011-05-26 Thread Juan Antonio Farré Basurte
fieldCache stores one entry for each field that is used for sorting or for field faceting when you use the fieldCache (fc) method. Before solr 1.4 the method for field faceting was the enum method that executes a filter query for each unique value of the field and stores it in the filterCache.

Question about SolrResponseBase.toString()

2011-05-26 Thread Michiel Verkaik
Hi, I'm working with Solrj, and I like to use the SolrResponseBase.toString() method, as it seems to return JSON. However, the JSON returned is not valid, as it misses quotes. If I search directly against Solr using

RE: FieldCache

2011-05-26 Thread pravesh
Since FieldCache is an expert level API in lucene, there is no direct control provided by SOLR/Lucene to control its size. -- View this message in context: http://lucene.472066.n3.nabble.com/FieldCache-tp2987541p2989443.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Problem with spellchecking, dont want multiple request to SOLR

2011-05-26 Thread Jan Høydahl
Yep, it's possible. Setup two spellcheckers, one named spellwhat and one named spellwhere and enable both on your searchRequestHandler. -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com On 26. mai 2011, at 12.04, roySolr wrote: Hello, First i will explain my

SOLR-2463 Null context in DIH

2011-05-26 Thread Robert Zotter
https://issues.apache.org/jira/browse/SOLR-2463 Haven't received any input/comments on this issue. Has anyone else witnessed this behavior? Thanks.

Re: Termscomponent sort question

2011-05-26 Thread Dmitry Kan
Hi antonio, can you explain a bit more, how exactly have you implemented the autocomplete, is it with the terms component only? Does autocomplete operate on letter or word level? What does user type in for which the server returns both Rome and Near Rome? -- Dmitry On Thu, May 26, 2011 at 5:11

Nutch Crawl error

2011-05-26 Thread Roger Shah
I ran the command bin/nutch crawl urls -dir crawl -depth 3 crawl.log When I viewed crawl.log I found some errors such as: Can't retrieve Tika parser for mime-typeapplication/x-shockwave-flash, and some other similar messages for other types such as application/xml, etc. Do I need to download

copyField of dates unworking?

2011-05-26 Thread Jack Repenning
Are there some sort of rules about what sort of fields can be copyFielded into other fields? My schema has (among other things): field name=date type=tdate indexed=true stored=true required=true / field name=user type=string indexed=true stored=true

Re: Issue while extracting content from MS Excel 2007 file using TikaEntityProcessor

2011-05-26 Thread Markus Jelsma
Can you rule out Tika or Solr by trying to parse the file with a stand-alone Tika? Hi All, I am using Solr 3.1 for one of our search based applications. We are using DIH to index our data and TikaEntityProcessor to index attachments. Currently we are running into an issue while extracting

Re: Returning documents using multi-valued field

2011-05-26 Thread Kurt Sultana
Hi, maybe I wasn't so clear in my previous post. Here's another go (I'd like a reply :) ): Currently I'm issuing this query on Solr:

RE: Returning documents using multi-valued field

2011-05-26 Thread Dyer, James
This is a limitation of Lucene/Solr in that there is no way to tell it to not match across mutli-valued field occurences. A workaround is to convert your query to a phrase and add a slop factor less than your posititonIncrementGap. ex: q=alice trudy~99 ... This example assumes that your

Re: copyField of dates unworking?

2011-05-26 Thread anass talby
it seems like reserved key words can't be used as field names did you try to changes your date field name? On Thu, May 26, 2011 at 9:54 PM, Jack Repenning jrepenn...@collab.netwrote: Are there some sort of rules about what sort of fields can be copyFielded into other fields? My schema has

Question about the purpose of reindexing

2011-05-26 Thread Aaron Chmelik
I've been trying to find a concise explanation of this, and seem to so far have missed it. (Google, etc). What is the purpose/need to reindex a solr index? How do you determine what provides the best performance? What detrimental affects occur if you operate off of delta indexes? Aaron Chmelik

commit configuration

2011-05-26 Thread anass talby
Hi, I'm using DIH and want to perform commits each N processed document, how can I do this? thanks in advance -- Anass

Re: Question about the purpose of reindexing

2011-05-26 Thread Markus Jelsma
Define reindexing. Every new document is indexed and existing documents are deleted and indexed as if it is a new document. Completely reindexing from scratch is only required if breaking changes are made to the schema or if you upgrade to a new version that uses another format and isn't able

Re: commit configuration

2011-05-26 Thread Markus Jelsma
http://svn.apache.org/repos/asf/lucene/dev/trunk/solr/example/solr/conf/solrconfig.xml Look for autocommit and maxDocs. Hi, I'm using DIH and want to perform commits each N processed document, how can I do this? thanks in advance

Re: copyField of dates unworking?

2011-05-26 Thread Jack Repenning
On May 26, 2011, at 1:55 PM, anass talby wrote: it seems like reserved key words can't be used as field names did you try to changes your date field name? Interesting thought, but it didn't seem to help. I changed the schema so it has both a date and a eventDate field (so as not to

Re: Question about the purpose of reindexing

2011-05-26 Thread Aaron Chmelik
One more question - what does optimization do? Maybe to be a little more precise - what happens to the index that requires optimizaion (what is the problem and how does optimization solve it). Aaron Chmelik Web Designer Programmer email: aaron.chme...@gmail.com website:

Re: Question about the purpose of reindexing

2011-05-26 Thread Markus Jelsma
Optimizing an index forces segments to merge. Usually, segments are merged automatically based on your mergeFactor setting. During a merge documents flagged for deletion are really purged and the number of segments is reduces which improves search performance. There are some good pages on

Re: Question about the purpose of reindexing

2011-05-26 Thread Aaron Chmelik
Thanks. I think I can take it form there! Aaron Chmelik Web Designer Programmer email: aaron.chme...@gmail.com website: http://webdesign.aaronchmelik.com phone: 651.757.5979 On Thu, May 26, 2011 at 4:51 PM, Markus Jelsma markus.jel...@openindex.iowrote: Optimizing an index forces segments to

Re: Issue while extracting content from MS Excel 2007 file using TikaEntityProcessor

2011-05-26 Thread Rahul Warawdekar
Hi Markus, It is Tika. I tried using tika standalone. On 5/26/11, Markus Jelsma markus.jel...@openindex.io wrote: Can you rule out Tika or Solr by trying to parse the file with a stand-alone Tika? Hi All, I am using Solr 3.1 for one of our search based applications. We are using DIH to

highlighting in multiValued field

2011-05-26 Thread Jeffrey Chang
Hi All, I am having a problem with search highlighting for multiValued fields and am wondering if someone can point me in the right direction. I have in my schema a multiValued field as such: field name=description type=text stored=true indexed=true multiValued=true/ When I search for term

RE: highlighting in multiValued field

2011-05-26 Thread Bob Sandiford
What is your actual query? Did you look at the hl.snippets parameter? Bob Sandiford | Lead Software Engineer | SirsiDynix P: 800.288.8020 X6943 | bob.sandif...@sirsidynix.com www.sirsidynix.com  Join the conversation - you may even get an iPad or Nook out of it! Like us on Facebook! Follow us

RE: highlighting in multiValued field

2011-05-26 Thread Bob Sandiford
The only thing I can think of is to post-process your snippets. I.E. pull the highlighting tags out of the strings, look for the match in your result description field looking for a match, and if you find one, replace that description with the original highlight text (i.e. with the highlight

Query regarding Solr-2242 patch for getting distinct facet counts.

2011-05-26 Thread rajini maski
The patch solr 2242 for getting count of distinct facet terms doesn't work for distributedProcess (https://issues.apache.org/jira/browse/SOLR-2242) The error log says HTTP ERROR 500 Problem accessing /solr/select. Reason: For input string: numFacetTerms

solr Invalid Date in Date Math String/Invalid Date String

2011-05-26 Thread alucard001
Hi all I am using SOLR 1.4.1 (according to solr info), but no matter what date field I use (date or tdate) defined in default schema.xml, I cannot do a search in solr-admin analysis.jsp: fieldtype: date(or tdate) fieldvalue(index): 2006-12-22T13:52:13Z (I type it in manually, no trailing space)