Re: AND/OR logic

2013-09-25 Thread Jack Krupansky
that second approach by simply using the edismax query parser with the pf parameter to boost the phrase of all terms. -- Jack Krupansky -Original Message- From: PAVAN Sent: Wednesday, September 25, 2013 9:12 AM To: solr-user@lucene.apache.org Subject: AND/OR logic Hi, I have situ

Re: How to always tokenize on underscore?

2013-09-25 Thread Jack Krupansky
Use the char filter instead: http://lucene.apache.org/core/4_4_0/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceCharFilterFactory.html -- Jack Krupansky -Original Message- From: Greg Preston Sent: Wednesday, September 25, 2013 5:43 PM To: solr-user@lucene.apache.org

Re: Solr doesn't return TermVectors

2013-09-27 Thread Jack Krupansky
true tvComponent You can add that "last-components" list to your default handler, if you wish. I have more detailed examples in my e-book. -- Jack Krupansky -Original Message- From: alibozorgkhan Sent: Friday, September 27, 2013 3:04

Re: Solr doesn't return TermVectors

2013-09-27 Thread Jack Krupansky
indicated which fl fields did not have term vectors. As a general proposition "it didn't work" is an extremely unhelpful response - it gives us no clues as to what you are actually seeing. -- Jack Krupansky -Original Message- From: alibozorgkhan Sent: Friday, Septembe

Re: Solr doesn't return TermVectors

2013-09-27 Thread Jack Krupansky
You are using "components" instead of "last-components", so you have to all search components, including the QueryComponent. Better to use "last-components". -- Jack Krupansky -Original Message- From: Shawn Heisey Sent: Friday, September

Re: Section Search in SOLR

2013-09-28 Thread Jack Krupansky
lds". Solr does not support any correspondence between multivalued fields. You must flatten your data your data to achieve any correspondence. Multivalued field are a powerful feature of Solr, but you must be extremely careful to use them only in moderation. -- Jack Krupansky -Origina

Re: Submitting Multiple JSON documents from Solr Admin Documents

2013-10-02 Thread Jack Krupansky
Use square brackets (array) around a list of documents: [{"id":"change.me","title":"change.me"},{"id":"change2.me","title":"change.me2"}] -- Jack Krupansky -Original Message- From: Dennis Brundage Se

Re: Adding Custom Score

2013-10-03 Thread Jack Krupansky
What are your specific requirements? -- Jack Krupansky -Original Message- From: Ankit Kumar Sent: Thursday, October 03, 2013 3:36 AM To: solr-user@lucene.apache.org Subject: Adding Custom Score In Lucene i need to add custom score using function query classes . How to do it?

Re: Can I pass some Object as request parameter to solr server

2013-10-04 Thread Jack Krupansky
in Java as a plugin that decoded object parameters. -- Jack Krupansky -Original Message- From: Alok Bhandari Sent: Friday, October 04, 2013 6:39 AM To: solr-user@lucene.apache.org Subject: Can I pass some Object as request parameter to solr server Hello , I am using solr 4.0 , I want

Re: Size of ID field

2013-10-04 Thread Jack Krupansky
es in Solr which only support string IDs. -- Jack Krupansky -Original Message- From: Zahoor Mohamed Sent: Friday, October 04, 2013 4:51 AM To: solr-user@lucene.apache.org Subject: Size of ID field Hi Does the size of ID field matter .. in terms of memory usage...and query performance...

Re: Use function return value for range queries

2013-10-04 Thread Jack Krupansky
feature in Lucene at this time. FunctionQuery modifies the document score, but doesn't affect which documents are selected. Function queries can be used to modify document scores and to return values, but not in the query itself to select documents. -- Jack Krupansky -Original Me

Re: WikipediaTokenizer documentation

2013-10-04 Thread Jack Krupansky
to keep only some token types. Besides my book, the best reference is going to be... the source code. -- Jack Krupansky -Original Message- From: Ken Krugler Sent: Thursday, October 03, 2013 9:03 PM To: solr-user@lucene.apache.org Subject: WikipediaTokenizer documentation Hi all

Re: AW: Use function return value for range queries

2013-10-04 Thread Jack Krupansky
No plan that I know of, but there is a new Lucene "expression module", so maybe it is not so farfetched. Its performance might not be so great, but if you need the flexibility it might be worth it. -- Jack Krupansky -Original Message- From: Sandro Zbinden Sent: Friday,

Re: Can I use app specific document id as the document id that Solr uses for internal purposes?

2013-10-06 Thread Jack Krupansky
ocId" in your Solr unique key field. -- Jack Krupansky -Original Message- From: Ertio Lew Sent: Sunday, October 06, 2013 4:46 AM To: solr-user@lucene.apache.org Subject: Can I use app specific document id as the document id that Solr uses for internal purposes? Could I ju

Re: Can I use app specific document id as the document id that Solr uses for internal purposes?

2013-10-06 Thread Jack Krupansky
reason you require it to be an integer? I mean, isn't a numeric string good enough for your app? -- Jack Krupansky -Original Message- From: Ertio Lew Sent: Sunday, October 06, 2013 1:36 PM To: solr-user@lucene.apache.org Subject: Re: Can I use app specific document id as the document id

Re: Adding OR operator in querystring and grouping fields?

2013-10-07 Thread Jack Krupansky
The default query operator applies only within a single query parameter. If you want to OR two filter queries, you must combine them into one filter query parameter. -- Jack Krupansky -Original Message- From: PeterKerk Sent: Monday, October 07, 2013 1:08 PM To: solr-user

Re: Adding OR operator in querystring and grouping fields?

2013-10-07 Thread Jack Krupansky
Combine the two filter queries with an explicit OR operator. -- Jack Krupansky -Original Message- From: PeterKerk Sent: Monday, October 07, 2013 1:50 PM To: solr-user@lucene.apache.org Subject: Re: Adding OR operator in querystring and grouping fields? Ok thanks. "you must co

Re: Regex to match one of two words

2013-10-08 Thread Jack Krupansky
Why use regular expressions at all? Try: published OR deprecated -- Jack Krupansky -Original Message- From: Dinusha Dilrukshi Sent: Tuesday, October 08, 2013 3:32 AM To: solr-user@lucene.apache.org Subject: Regex to match one of two words I have an input that can have only 2 values

Re: dynamic field question

2013-10-08 Thread Jack Krupansky
I'd suggest that each of your source document sections would be a distinct solr document. All of the sections could have a "source document ID" field to tie them together. Dynamic fields work best when used in moderation. Your use case seems like an excessive use of dynamic fi

Re: Find documents that are composed of % words

2013-10-10 Thread Jack Krupansky
analytics features, but is still somewhat light in that area. It does sound as if you are seeking to match two "documents" as opposed to matching a "query" against documents. -- Jack Krupansky -Original Message- From: shahzad73 Sent: Thursday, October 10, 2013 3

Re: Using split in updateCSV for SolrCloud 4.4

2013-10-10 Thread Jack Krupansky
nt-Type: text/csv" -d ' id,name,features doc-1,doc1,feat1:feat2' You may need to add &stream.contentType=text/csv to you command. -- Jack Krupansky -Original Message- From: Utkarsh Sengar Sent: Thursday, October 10, 2013 4:51 PM To: solr-user@lucene.apache.org Subje

Re: Using split in updateCSV for SolrCloud 4.4

2013-10-10 Thread Jack Krupansky
content for test.csv: id,name,features_ss,junk_s doc-1,doc1,"feat1:feat2",junk Can you confirm whether this exact case works for you? -- Jack Krupansky -Original Message- From: Utkarsh Sengar Sent: Thursday, October 10, 2013 8:48 PM To: solr-user@lucene.apache.org Subject: Re: Using spl

Question about plug-in update handler failure

2013-10-10 Thread Jack Park
ost recent trials on all systems leaves the war intact and drops the agent jar into collection1/lib -- it still works on 4.3.1, but nothing beyond that. Many thanks in advance for any thoughts. Jack

Re: Question about plug-in update handler failure

2013-10-11 Thread Jack Park
Issue resolved. Not a Solr issue; a really hard to discover missing library in my installation. On Thu, Oct 10, 2013 at 7:10 PM, Jack Park wrote: > I have an "interceptor" which grabs SolrDocument instances in the > update handler chain. It feeds those documents as a JSON st

Re: Using split in updateCSV for SolrCloud 4.4

2013-10-11 Thread Jack Krupansky
There is this note for escape: "If an escape is specified, the encapsulator is not used unless also explicitly specified since most formats use either encapsulation or escaping, not both." -- Jack Krupansky -Original Message- From: Utkarsh Sengar Sent: Friday, October 11,

Re: CommaSplit and query is free text search

2013-03-21 Thread Jack Krupansky
value. In any case, start with the app usage requirements. -- Jack Krupansky -Original Message- From: anurag.jain Sent: Thursday, March 21, 2013 10:10 AM To: solr-user@lucene.apache.org Subject: CommaSplit and query is free text search I have field named as worked_company_name. in json

Re: CommaSplit and query is free text search

2013-03-21 Thread Jack Krupansky
"worked_company_name":["Dell","Microsoft Facebook"] } Or is the desired goal: {"worked_company_name":["Dell","Microsoft","Facebook"] } Or, something else? -- Jack Krupansky -Original Message- From: Keswani, Nitin - BLS C

Re: SOLR - Documents with large number of fields ~ 450

2013-03-21 Thread Jack Krupansky
dozen facets. The length of a field name should not be a problem for queries other than readability. Just be sure to stick with Java-style names (alpha, digit, underscore). The bottom line: Do a proof of concept (POC) first - and tell us how it performs. -- Jack Krupansky -Original Me

Re: had query regarding the indexing and analysers

2013-03-21 Thread Jack Krupansky
Actually, it's the Porter Stemmer that is turning "ace" into "ac". Try making a copy of text_en_splitting and delete the PorterStemFilterFactory filter from both the query and index analyzers. -- Jack Krupansky -Original Message- From: Rohan Thakur Sent: We

Re: Boost query parameter with Lucid parser and using query FunctionQuery

2013-03-22 Thread Jack Krupansky
You'll have to contact Lucid's support for questions about their code. (I've been away from that code too long to recall much about it.) -- Jack Krupansky -Original Message- From: Miller, Will Jr Sent: Friday, March 22, 2013 7:07 PM To: solr-user@lucene.apache.org

Re: Solr using a ridiculous amount of memory

2013-03-24 Thread Jack Krupansky
. The goal is to determine if there is something inherently memory intensive in your index/queries, or something relating to a leak based on total query volume. -- Jack Krupansky -Original Message- From: John Nielsen Sent: Sunday, March 24, 2013 4:19 AM To: solr-user@lucene.apache.org

Re: Solr using a ridiculous amount of memory

2013-03-24 Thread Jack Krupansky
ons. The other part of the theory is that it is usually better to leave tons of memory to the OS for efficiently caching files, rather than force Java to manage large amounts of memory, which it typically does not do so well. -- Jack Krupansky -Original Message----- From: Jack Krupansky Se

Re: Undefined field problem.

2013-03-25 Thread Jack Krupansky
nd it worked fine for me. The only issue was that existing data (e.g., 1 in the int field) was all considered as boolean false after I changed the schema and restarted. -- Jack Krupansky -Original Message- From: Mid Night Sent: Monday, March 25, 2013 6:30 AM To: solr-user@lucene.apach

Re: status 400 on posting json

2013-03-25 Thread Jack Krupansky
Your schema has only "fields", but no field "types". Check the Solr example schema for reference, and include all of the types defined there unless you know that you do not need them. "string" is clearly one that is needed. -- Jack Krupansky -Original Mes

Re: Shingles Filter Query time behaviour

2013-03-25 Thread Jack Krupansky
Or, q=name:(dark knight) . -- Jack Krupansky -Original Message- From: Otis Gospodnetic Sent: Monday, March 25, 2013 11:51 PM To: solr-user@lucene.apache.org Subject: Re: Shingles Filter Query time behaviour Hi, What does your query look like? Does it look like q=name:dark knight

Re: Solr Fuzzy search on short string

2013-03-26 Thread Jack Krupansky
Could your provide the precise query URLs. I don't quite follow the notation you are using, especially: car[x]~, [x]>"i". I mean, are you saying that q=cari~ does not match "carl"? (You left out the tilda in your message.) -- Jack Krupansky -Original Message-

Re: Slow performance on distributed search

2013-03-26 Thread Jack Krupansky
(You mean, other than "deep paging".) -- Jack Krupansky -Original Message- From: Walter Underwood Sent: Tuesday, March 26, 2013 3:47 PM To: solr-user@lucene.apache.org Subject: Re: Slow performance on distributed search Why on earth are you starting at row 100,000? What u

Querying a transitive closure?

2013-03-27 Thread Jack Park
ve closure", looking at all the super classes, etc, recursively. It seems unreasonable to do that over HTTP; it seems more reasonable to grab a core and write a custom isA query handler. But, how do you do that in a SolrCloud? Really curious... Many thanks in advance for ideas. Jack

Re: Querying a transitive closure?

2013-03-27 Thread Jack Park
Hi Otis, I fully expect to grow to SolrCloud -- many shards. For now, it's solo. But, my thinking relates to cloud. I look for ways to reduce the number of HTTP round trips through SolrJ. Maybe you have some ideas? Thanks Jack On Wed, Mar 27, 2013 at 10:04 AM, Otis Gospodnetic wrote: >

Re: Query on all dynamic fields or wildcard field query

2013-03-27 Thread Jack Krupansky
. -- Jack Krupansky -Original Message- From: Luis Lebolo Sent: Wednesday, March 27, 2013 5:08 PM To: solr-user Subject: Query on all dynamic fields or wildcard field query Hi All, First I have to apologize and admit that I'm asking this question before doing any real research =

Re: Querying a transitive closure?

2013-03-27 Thread Jack Park
... recursive ascent, I suppose. Many thanks Jack On Wed, Mar 27, 2013 at 6:52 PM, Otis Gospodnetic wrote: > Hi Jack, > > I don't fully understand the exact taxonomy structure and your needs, > but in terms of reducing the number of HTTP round trips, you can do it > by wri

Re: How to update synonyms.txt without restart?

2013-03-28 Thread Jack Krupansky
the contents of the Solr data directory for the collection and restarting Solr and resending all of the source documents. -- Jack Krupansky -Original Message- From: Kaneyama Genta Sent: Thursday, March 28, 2013 5:11 AM To: solr-user@lucene.apache.org Subject: How to update synonyms

Re: multicore vs multi collection

2013-03-28 Thread Jack Krupansky
ing? Be specific. My guess is that you simply need to re-read the README.txt files more carefully in the Solr "example" directories. If you have questions about what the README.txt files say, please ask them, but please be specific. -- Jack Krupansky -Original Message- F

Re: Querying a transitive closure?

2013-03-28 Thread Jack Park
its transitive closure. I need to think about that. Many thanks Jack On Thu, Mar 28, 2013 at 5:06 AM, Jens Grivolla wrote: > Exactly, you should usually design your schema to fit your queries, and if > you need to retrieve all ancestors then you should index all ancestors so > you can

Re: Solr fuzzy search with WordDemiliterFilter

2013-03-29 Thread Jack Krupansky
that other field. -- Jack Krupansky -Original Message- From: ilay raja Sent: Friday, March 29, 2013 10:28 AM To: solr-user@lucene.apache.org ; solr-...@lucene.apache.org Subject: Solr fuzzy search with WordDemiliterFilter Hi I need to apply fuzzy search for my production. It better

DocValues vs stored fields?

2013-03-29 Thread Jack Krupansky
versa? As things stand, all we’ve done is make Solr more confusing than it was before, without improving its OOBE. OOBE should be job one in Solr. Thanks. P.S., And if I actually want to do Column Stride Fields, is there a way to do that? -- Jack Krupansky

Re: Cannot find word with accent

2013-03-29 Thread Jack Krupansky
disable accent folding. Try the French Minimal Stemmer Filter: It doesn't do the accent folding, but does less stemming as well. -- Jack Krupansky -Original Message- From: Van Tassell, Kristian Sent: Friday, March 29, 2013 11:50 AM To: solr-user@lucene.apache.org Subject: Cannot

Re: Getting better snippets in highlighting component

2013-03-29 Thread Jack Krupansky
I'm sure somebody can come up with a clever heuristic to avoid this kind of thing. Maybe simply truncate any sequence of white space and only punctuation down to two or three characters or so. -- Jack Krupansky -Original Message- From: Jorge Luis Betancourt Gonzalez Sent: Fri

Re: had query regarding the indexing and analysers

2013-04-01 Thread Jack Krupansky
Yes, if there is only a single analyzer or an index analyzer is specified and the Porter stemmer is used in it. -- Jack Krupansky -Original Message- From: Rohan Thakur Sent: Monday, April 01, 2013 9:13 AM To: solr-user@lucene.apache.org Subject: Re: had query regarding the indexing

Re: Getting started with solr 4.2 and cassandra

2013-04-01 Thread Jack Krupansky
or the Solr API. See: http://www.datastax.com/what-we-offer/products-services/datastax-enterprise -- Jack Krupansky -Original Message- From: Utkarsh Sengar Sent: Monday, April 01, 2013 6:34 PM To: solr-user@lucene.apache.org Subject: Getting started with solr 4.2 and cassandra Hello

Re: Getting started with solr 4.2 and cassandra

2013-04-01 Thread Jack Krupansky
The Solr example really is rather simple. Download, unzip, run, add data, query. It's really that simple. Make sure you are looking at the Solr tutorial: http://lucene.apache.org/solr/4_2_0/tutorial.html Download from here: http://lucene.apache.org/solr/tutorial.html -- Jack Krup

Re: Lengthy description is converted to hash symbols

2013-04-02 Thread Jack Krupansky
/lucene.apache.org/core/4_2_0/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizerFactory.html But the "#" sounds like a bug. -- Jack Krupansky -Original Message- From: Danny Watari Sent: Tuesday, April 02, 2013 5:45 PM To: solr-user@lucene.apache.org Subject:

Re: Flow Chart of Solr

2013-04-03 Thread Jack Krupansky
more confused than enlightened. At which step are scores calculated? That's more of a Lucene question. Or, are you really asking what code in Solr invokes Lucene search methods that calculate basic scores? In short, you need to be more specific. Don't force us to guess what problem

Re: Query parser cuts last letter from search term.

2013-04-03 Thread Jack Krupansky
The standard tokenizer recognizes "!" as a punctuation character, so it will be treated as white space. You could use the white space tokenizer if punctuation is considered significant. -- Jack Krupansky -Original Message- From: vsl Sent: Wednesday, April 03, 2013 6:25 A

Re: Flow Chart of Solr

2013-04-03 Thread Jack Park
There are three books on Solr, two with that in the title, and one, Taming Text, each of which have been very valuable in understanding Solr. Jack On Wed, Apr 3, 2013 at 5:25 AM, Jack Krupansky wrote: > Sure, yes. But... it comes down to what level of detail you want and need > for a sp

Re: Flow Chart of Solr

2013-04-03 Thread Jack Krupansky
And another one on the way: http://www.amazon.com/Lucene-Solr-Definitive-comprehensive-realtime/dp/1449359957 Hopefully that help a lot as well. Plenty of diagrams. Lots of examples. -- Jack Krupansky -Original Message- From: Jack Park Sent: Wednesday, April 03, 2013 11:25 AM To

Re: Lengthy description is converted to hash symbols

2013-04-03 Thread Jack Krupansky
ntly. Maybe the schema changed but a full reindex wasn't done. -- Jack Krupansky -Original Message- From: Danny Watari Sent: Wednesday, April 03, 2013 12:15 PM To: solr-user@lucene.apache.org Subject: Re: Lengthy description is converted to hash symbols Yes... the is what I see

Re: Flow Chart of Solr

2013-04-03 Thread Jack Park
Jack, Is that new book up to the 4.+ series? Thanks The other Jack On Wed, Apr 3, 2013 at 9:19 AM, Jack Krupansky wrote: > And another one on the way: > http://www.amazon.com/Lucene-Solr-Definitive-comprehensive-realtime/dp/1449359957 > > Hopefully that help a lot as well. Plenty

Re: Flow Chart of Solr

2013-04-03 Thread Jack Krupansky
chCon next week in Boston. -- Jack Krupansky -Original Message----- From: Jack Park Sent: Wednesday, April 03, 2013 12:56 PM To: solr-user@lucene.apache.org Subject: Re: Flow Chart of Solr Jack, Is that new book up to the 4.+ series? Thanks The other Jack On Wed, Apr 3, 2013 at 9:1

Re: do SearchComponents have access to response contents

2013-04-03 Thread Jack Krupansky
stom query response writer that wraps the XML response writer. Then you can generate the XML and then do whatever you want with it. The QueryResponseWriter class and in solrconfig.xml. -- Jack Krupansky -Original Message- From: xavier jmlucjav Sent: Wednesday, April 03, 2013 4:22 P

Re: solre scores remains same for exact match and nearly exact match

2013-04-04 Thread Jack Krupansky
The simple way to write the query: q=subject:session subject:management subject:in subject:php Would be: q=subject:(session management in php) Of course, edismax is usually a better way to go in general. -- Jack Krupansky -Original Message- From: Andre Bois-Crettez Sent: Thursday

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Jack Krupansky
ping following your questions, answering each in detail, bouncing all over the place without understanding what it is that you are really looking for. More specifically, what exactly is the problem you are trying to solve? -- Jack Krupansky -Original Message- From: Furkan KAMACI Se

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Jack Krupansky
that you, the user/developer, do manually. But, as I said... it sounds like your question is not for us here at the Solr list, but for the Nutch guys on their list. -- Jack Krupansky -Original Message- From: Furkan KAMACI Sent: Thursday, April 04, 2013 9:03 AM To: solr-user

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Jack Krupansky
Could you guys please take this discussion offline or over to a Nutch mailing list - where it belongs? This has nothing to do with Solr. -- Jack Krupansky -Original Message- From: Gora Mohanty Sent: Thursday, April 04, 2013 10:46 AM To: solr-user@lucene.apache.org Subject: Re

Re: detailed Error reporting in Solr

2013-04-04 Thread Jack Krupansky
I'm trying to understand the context is here... are you trying to crawl web pages that have bad HTML? Or, ... what? -- Jack Krupansky -Original Message- From: eShard Sent: Thursday, April 04, 2013 10:23 AM To: solr-user@lucene.apache.org Subject: detailed Error reporting in

Re: detailed Error reporting in Solr

2013-04-04 Thread Jack Krupansky
ality, in most cases, can simply be ignored. Yes, by all means ask on the Tika list. Solr is just wrapping the error Tika reports. -- Jack Krupansky -Original Message- From: eShard Sent: Thursday, April 04, 2013 2:14 PM To: solr-user@lucene.apache.org Subject: Re: detailed Error re

Re: Solr Collection's Size

2013-04-05 Thread Jack Krupansky
Query for "*:*" and look at the number of documents found. -- Jack Krupansky -Original Message- From: Ranjith Venkatesan Sent: Friday, April 05, 2013 2:06 AM To: solr-user@lucene.apache.org Subject: Solr Collection's Size Hi, I am new to solr. I want to find siz

Re: unknown field error when indexing with nutch

2013-04-05 Thread Jack Krupansky
Check your solrconfig.xml file for references to a "host" field. But maybe more importantly, make sure you use a Solr 4.1 solrconfig and merge in any of your application-specific changes. -- Jack Krupansky -Original Message- From: Amit Sela Sent: Friday, April 05, 2013 1

Re: unknown field error when indexing with nutch

2013-04-05 Thread Jack Krupansky
It could also be a parameter being sent from Nutch. Check the Nutch doc for the Nutch-to-Solr interface. Maybe YOU are supposed to add a "host" field to your Solr schema. -- Jack Krupansky -Original Message- From: Amit Sela Sent: Friday, April 05, 2013 3:46 PM To:

Re: Solr 4.2 - Unexpected behaviour when updating a document with only id field specified in the update

2013-04-05 Thread Jack Krupansky
ocument into an "update", otherwise simply replaces any existing document or adds a new document. -- Jack Krupansky -Original Message- From: Curtis Beattie Sent: Friday, April 05, 2013 2:52 PM To: solr-user@lucene.apache.org Subject: Solr 4.2 - Unexpected behaviour when u

Re: Solr 4.2.1 Branch

2013-04-05 Thread Jack Krupansky
You want the "tagged" branch: http://svn.apache.org/viewvc/lucene/dev/tags/lucene_solr_4_2_1/ -- Jack Krupansky -Original Message- From: Jagdish Nomula Sent: Friday, April 05, 2013 8:36 PM To: solr-user@lucene.apache.org Subject: Solr 4.2.1 Branch Hello, I was trying t

Re: Solr 4.2.1 Branch

2013-04-05 Thread Jack Krupansky
You want the "tagged" branch: https://github.com/apache/lucene-solr/tree/lucene_solr_4_2_1 -- Jack Krupansky -Original Message- From: Jagdish Nomula Sent: Friday, April 05, 2013 8:36 PM To: solr-user@lucene.apache.org Subject: Solr 4.2.1 Branch Hello, I was trying t

Re: using edismax without velocity

2013-04-06 Thread Jack Krupansky
for qf, if it has a common value. And you can even copy /select and create one or more new request handlers with new paths, like /my-select, if you have more than one common combination of parameter settings that you want to avoid setting on every incoming query request. -- Jack

Re: Pointing to Hbase for Docuements or Directly Saving Documents at Hbase

2013-04-06 Thread Jack Krupansky
s, one for text index and metadata store, and the other for raw store of the original document bytes. -- Jack Krupansky -Original Message- From: Furkan KAMACI Sent: Saturday, April 06, 2013 6:01 PM To: solr-user@lucene.apache.org Subject: Pointing to Hbase for Docuements or Directly S

Re: Numeric fields and payload

2013-04-08 Thread Jack Krupansky
Sounds like another new field-mutating update processor is needed - "add payload". -- Jack Krupansky -Original Message- From: Holger Rieß Sent: Monday, April 08, 2013 8:27 AM To: solr-user@lucene.apache.org Subject: Numeric fields and payload Hi, is it possible to s

Re: Indexed data not searchable

2013-04-08 Thread Jack Krupansky
Are you sure your XML is formatted according to the SolrXML rules? See: http://wiki.apache.org/solr/UpdateXmlMessages I have to ask, because sometimes people send raw XML to Solr, not realizing that Solr accepts a particular format of XML. -- Jack Krupansky -Original Message- From

Re: Moving from SOLR3.6 to SOLR4.0 - Last remaining warnings

2013-04-08 Thread Jack Krupansky
"replace with UpdateRequestHandler" Just compare your solrconfig to the new one and consider updating yours and using the newer Solr update API that automatically uses the content type to internally dispatch to the proper update handler. But, it's just a warning, for now. --

Re: Approximately needed RAM for 5000 query/second at a Solr machine?

2013-04-09 Thread Jack Krupansky
concept implementation and measure it yourself. -- Jack Krupansky -Original Message- From: Furkan KAMACI Sent: Tuesday, April 09, 2013 6:06 PM To: solr-user@lucene.apache.org Subject: Approximately needed RAM for 5000 query/second at a Solr machine? Are there anybody who can help me

Re: Pushing a whole set of pdf-files to solr

2013-04-09 Thread Jack Krupansky
The newer release of SimplePostTool with Solr 4.x makes it easy to post PDF files from a directory, including automatically adding the file name to a field. But SolrCell is the direct API that it uses as well. -- Jack Krupansky -Original Message- From: Furkan KAMACI Sent: Tuesday

Re: Pushing a whole set of pdf-files to solr

2013-04-09 Thread Jack Krupansky
The newer SimplePostTool can in fact recurse a directory of PDFs. Just get the usage for the tool. I'm sure it lists the command options. -- Jack Krupansky -Original Message- From: sdspieg Sent: Tuesday, April 09, 2013 9:48 PM To: solr-user@lucene.apache.org Subject: Re: Push

Re: Solr : Search with special character

2013-04-10 Thread Jack Krupansky
Switch the field types from the standard tokenizer to the white space tokenizer and don't use the word delimiter filter. Or, you can sometimes add custom character mapping tables to some filters and indicate that your desired special characters should be mapped to type "ALPHA&q

Re: Pushing a whole set of pdf-files to solr

2013-04-10 Thread Jack Krupansky
Yes, there is the version that comes with Solr 3.x. I'm not aware of an encoding issue. -- Jack Krupansky -Original Message- From: sdspieg Sent: Wednesday, April 10, 2013 8:11 AM To: solr-user@lucene.apache.org Subject: Re: Pushing a whole set of pdf-files to solr Jack - I apol

Re: eDisMax handler but with main query not allowing fielded/non-localparam values

2013-04-10 Thread Jack Krupansky
empty. I haven't checked if that restricts qf as well. -- Jack Krupansky -Original Message- From: Alexandre Rafalovitch Sent: Wednesday, April 10, 2013 10:14 AM To: solr-user@lucene.apache.org Subject: eDisMax handler but with main query not allowing fielded/non-localparam val

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Jack Krupansky
field. -- Jack Krupansky -Original Message- From: coolpriya5 Sent: Wednesday, April 10, 2013 6:19 PM To: solr-user@lucene.apache.org Subject: NPE when faceting TEXTfield in a distributed search query Hi, I have a nullable TextField with field type as follows(field name=fun_

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Jack Krupansky
Ah... I see now that you are using the keyword tokenizer that should preserve the phrase structure of the text. You haven't detailed the exception stack trace. What are the numbers in terms of number of values and average length of each value? -- Jack Krupansky -Original Me

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Jack Krupansky
If the NPE was in SolrDispatchFilter, it could relate to some limit on the HTTP request or response size. Again, we need the full stack trace, and the Solr release. -- Jack Krupansky -Original Message- From: coolpriya5 Sent: Wednesday, April 10, 2013 7:06 PM To: solr-user

Re: spell suggestions help

2013-04-11 Thread Jack Krupansky
see that the "&" is preserved or which stage in term analysis it gets discarded. -- Jack Krupansky -Original Message- From: Rohan Thakur Sent: Thursday, April 11, 2013 7:39 AM To: solr-user@lucene.apache.org Subject: Re: spell suggestions help urlencode replaces &am

Re: migration solr 3.5 to 4.1 - JVM GC problems

2013-04-11 Thread Jack Krupansky
enabled (or make sure you do hard commits relatively frequently rather than only soft commits.) -- Jack Krupansky -Original Message- From: Marc Des Garets Sent: Thursday, April 11, 2013 3:07 AM To: solr-user@lucene.apache.org Subject: Re: migration solr 3.5 to 4.1 - JVM GC problems Big

Re: Solr : Search with special character

2013-04-11 Thread Jack Krupansky
You might also consider the white space tokenizer plus the word delimiter filter with a character map that treats desired special characters as ALPHA. -- Jack Krupansky -Original Message- From: meghana Sent: Thursday, April 11, 2013 2:48 AM To: solr-user@lucene.apache.org Subject: Re

Re: Approximately needed RAM for 5000 query/second at a Solr machine?

2013-04-11 Thread Jack Krupansky
ge policy you choose. With the default tiered merge policy things shouldn't be so bad as the 3x worst case. -- Jack Krupansky -Original Message- From: Walter Underwood Sent: Thursday, April 11, 2013 10:40 AM To: solr-user@lucene.apache.org Subject: Re: Approximately needed RAM f

Re: solr join use case (not in instead of in)

2013-04-11 Thread Jack Krupansky
y & q={!join from=inner_id to=outer_id}zzz:vvv Is comparable to this SQL statement... SELECT xxx, yyy FROM collection1 WHERE outer_id IN (SELECT inner_id FROM collection1 where zzz = "vvv") " This looks reasonably close to your case. -- Jack Krupansky -Ori

Re: RequestHandler.. Conditional components

2013-04-11 Thread Jack Krupansky
uot;C=false" to disable C. Also, do you want to do this conditional flow during the "prepare" stage or the "process stage", or both? -- Jack Krupansky -Original Message- From: venkata Sent: Thursday, April 11, 2013 3:15 PM To: solr-user@lucene.apache.org S

Re: tokenizer of solr

2013-04-11 Thread Jack Krupansky
Try the whitespace tokenizer. -- Jack Krupansky -Original Message- From: Mingfeng Yang Sent: Thursday, April 11, 2013 7:48 PM To: solr-user@lucene.apache.org Subject: tokenizer of solr Dear Solr users and developers, I am trying to index some documents some of which are twitter

Re: tokenizer of solr

2013-04-11 Thread Jack Krupansky
In that case, use the types="wdfftypes.txt" attribute of WDF and map "@" and "_" to ALPHA as shown in: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.WordDelimiterFilterFactory. -- Jack Krupansky -Original Message- From: Mingfeng Yang

Re: XInclude in data-config.xml

2013-04-12 Thread Jack Krupansky
Is your data-config.xml file located in your Solr "conf" directory? You have "solr/" at the front of your path, so is the included file really in "conf/solr"? Otherwise, this should work. Make sure you only have a single XML element in the included file. --

Re: spell suggestions help

2013-04-12 Thread Jack Krupansky
index data and completely reindex after changing the "index" analyzer? Or maybe your "index" and "query" analyzers are not in-sync and compatible. Do you have anything in your stopwords file? "and" is usually considered a stop word - so the stop filter woul

Re: solr spell correction help

2013-04-12 Thread Jack Krupansky
"blandars its not giving correction as blender" They have an edit distance of 3. Direct Spell is limited to a maximum ED of 2. -- Jack Krupansky -Original Message- From: Rohan Thakur Sent: Friday, April 12, 2013 8:45 AM To: solr-user@lucene.apache.org Subject: solr spell

Re: Which tokenizer or analizer should use and field type

2013-04-12 Thread Jack Krupansky
nd assistant to occur with a few words of each other. Or, if you have q.op defaulted to "OR": "project assistant"~5 manager Add the HTML strip char filter to your text field type: text_general is a semi-decent place to start. -- Jack Krupansky -Original Message---

Re: Some Questions About Using Solr as Cloud

2013-04-14 Thread Jack Krupansky
"Master-Slave-Replication" model that Solr had (and still has) which is distinct from SolrCloud. -- Jack Krupansky -Original Message- From: Furkan KAMACI Sent: Sunday, April 14, 2013 7:45 PM To: solr-user@lucene.apache.org Subject: Some Questions About Using Solr as Cloud I

Re: Downloaded Solr 4.2.1 Source: Build Failing

2013-04-14 Thread Jack Park
What I learned is that I needed to upgrade Ant, then needed to install Ivy; the build.xml in the outer subversion directory has an ant target to install Ivy, and one to run-maven-build. I ran that, then switched to /solr and ran "ant dist" which finished in under 2 minutes. On Sun, Apr 14, 2013 at

<    9   10   11   12   13   14   15   16   17   18   >