Re: build CMIS compatible Solr

2013-01-21 Thread Upayavira
We merely used Alfresco as the other side of the CMIS coin, to prove that our connector was working, as colleagues had knowledge of it. And yes, that link you found is to the connector. Upayavira On Sun, Jan 20, 2013, at 10:26 PM, Nicholas Li wrote: > I think this might be the one you are talkin

Re: Solr 4.0 - timeAllowed in distributed search

2013-01-21 Thread Upayavira
And think about distributed search, you are going through a 'proxy' which, as well as forwarding your docs, must also merge any docs from different shards into a single result set. That is likely to take some time on 30,000 docs, and isn't a job that is needed on non-distributed search. Upayavira

Re: Tokenized keywords

2013-01-21 Thread Romita Saha
Hi, I have a field defined in scheme.xml named as 'original'. I first copy this field to "modified" and apply filters on this field "modified." field name="original" type="string" indexed="true" stored="true"/> field name="modified" type="text_general" indexed="true" stored="true"/> I want t

Re: Tokenized keywords

2013-01-21 Thread Dikchant Sahi
Tokenizer changes the behavior of how you search/index and not how you store. What i understand is you want to display tokenized result always and not just for debug purpose. debugQuery has performance implications that should not be used for what you are trying to achieve. Basically, what you ne

Distance Range query

2013-01-21 Thread stefanocorsi
Hello, I have an index containing items with a range of distance in which I would like these items to be found when searched. Furthermore, in the same index, I have the position of the item. For example. Item A - 46.23211131, 10.3213213131 - 30km Item B - 45.23211131, 9.3213213131 - 50km ... Item

Re: Solr 4.0 - timeAllowed in distributed search

2013-01-21 Thread Lyuba Romanchuk
Hi Michael, Thank you very much for your reply! Does it mean that when timeAllowed is used only search is interrupted and document retrieval is not? In order to check the total time of the query I run curl with linux time to measure the total time including retrieving of documents. If I understo

Re: build CMIS compatible Solr

2013-01-21 Thread Ahmet Arslan
Hi Nicholas, You might be interested in http://manifoldcf.apache.org/ . You can use it to index several document repositories into solr. http://manifoldcf.apache.org/release/release-1.0.1/en_US/end-user-documentation.html#repositoryconnectiontypes --- On Mon, 1/21/13, Upayavira wrote: > From

Re: Response time in client was much longer than QTime in tomcat

2013-01-21 Thread pravesh
SOLR's QTime represents actual time it spent on searching, where as your c# client response time might be the total time spent in sending HTTP request and getting back the response(which might also include parsing the results) . Regards Pravesh -- View this message in context: http://lucene.4

Re: Large data importing getting rollback with solr

2013-01-21 Thread ashimbose
Hi Gora, Thank you for your suggestion. I have tried with you below option, >* Have never tried this, but one can set up multiple request handlers > in solrconfig.xml for each DIH instance that one plans to run. > These can run in parallel rather than the sequential indexing of > root enti

How to combine Qparsers in a plugin?

2013-01-21 Thread denl0
I have made a Qparserplugin to get querytimejoin from lucene in to Solr. But I'm facing 2 major issues. This is the code I'm using (With the right jars added to config etc it's working.) public class TestParserPlugin extends QParserPlugin { @Override public QParser createParser(String string, Sol

Re: access matched token ids in the FacetComponent?

2013-01-21 Thread Mikhail Khludnev
Dmitry, First of all, FacetComponent is the Solr's out-of-the-box functionality. It runs after search is done and accesses the bitSet of the found document, i.e. there is no spans (matched terms positions) there at all. StandardFacetsAccumulator sounds like the "brand new" lucene faceting library

Re: Tokenized keywords

2013-01-21 Thread Uwe Reh
Hi probably my note is nonsense. But sometimes one is blind and not able to see simple things anymore. Is this query, what you are looking for? q=modified:(search+for+Laptops)&fl=original,modified Sorry, if my suggest is too trivial. Uwe Am 21.01.2013 09:17, schrieb Romita Saha: Hi, I h

Re: How to combine Qparsers in a plugin?

2013-01-21 Thread Mikhail Khludnev
Sure! - use inherited members QParser.req.getSearcher() - use util method .QParser.getParser("foo bar", "edismax", req).getQuery() you are welcome On Mon, Jan 21, 2013 at 3:40 PM, denl0 wrote: > > I have made a Qparserplugin to get querytimejoin from lucene in to Solr. > But > I'm facing 2 maj

Re: access matched token ids in the FacetComponent?

2013-01-21 Thread Dmitry Kan
Mikhail, Thanks for the guidance! This indeed sounds challenging, esp. given the bonus of fighting with solr 3.x in light of disjunction queries. Although, moving to solr 4.0 if this makes life easier should be ok. But even before getting one's hands dirty, it would be good to know, if this is go

Unable to load mysql Driver with Apache Solr-4.0.0

2013-01-21 Thread Shameer Thaha Koya
Hi Team, I am trying to integrate apache Sonr(apache-solr-4.0.0) with Tomcat and getting below error. 15:12:40 SEVERE DataImporter Delta Import Failed java.lang.RuntimeException: org.apache.solr.handler.dataimport.DataImportHandlerException: Could not load driver: com.mysql.jdbc.Driver Pro

Re: access matched token ids in the FacetComponent?

2013-01-21 Thread Dmitry Kan
Mikhail, the griddynamics blog's link returns "Sorry, the page you were looking for in this blog does not exist." Could you check if it is still available, would be interesting to see the details! Dmitry On Mon, Jan 21, 2013 at 2:33 PM, Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > Dm

RE: Unable to load mysql Driver with Apache Solr-4.0.0

2013-01-21 Thread Shameer Thaha Koya
Hi Team, I got this fixed. Accidently there was a space in the driver property of dataConfig and caused the issue. Thanks driver=" com.mysql.jdbc.Driver" Shameer Thaha Emirates Group IT |Dubai, M : 971-552775725 From: Shameer Thaha Koya Sent: 21 January 2013 15:53 To: 'solr-user@lucene.apac

Re: How to combine Qparsers in a plugin?

2013-01-21 Thread denl0
It's working but I have a new problem. The first query I use with the TestQueryParser always works. But the second one always gives the same result. After restarting solr it works once again. Do I need to clear a cache/or something esle before reusing my query parser? -- View this message in

Re: Large data importing getting rollback with solr

2013-01-21 Thread Upayavira
Do you have programming skills? If so, I'd suggest you write your own importer that allows you to control precisely what it is you are trying to do. The DIH, in my book is a great generic tool for low to medium complexity tasks. It very much appears you are pushing beyond its levels, and it would m

Re: How to combine Qparsers in a plugin?

2013-01-21 Thread Jack Krupansky
The Solr query results cache will assure that if you perform the same exact query and the index has not changed you will get the same exact results. -- Jack Krupansky -Original Message- From: denl0 Sent: Monday, January 21, 2013 8:36 AM To: solr-user@lucene.apache.org Subject: Re: How

Re: Distance Range query

2013-01-21 Thread David Smiley (@MITRE.org)
Hi Stefano. I answered someone's question on stackoverflow which is basically the same question you have: http://stackoverflow.com/questions/13723891/lucene-4-0-spatial-calculate-max-distance-dynamically-using-indexed-documets/13764793#13764793 Essentially, you should index circles and then searc

Full import through DIH leaving documents as uncommited

2013-01-21 Thread vijeshnair
I am using SOLR 4.0 , and using DIH to import and index the catalog data from my MySQL database. The DIH took around 55minutes to complete the indexing, but my max documents processed and actual documents which got indexed were not matching. So when I checked the update handler statistics, it's sho

RE: SOLR 4 getting stuck during restart

2013-01-21 Thread Dyer, James
Are you trying to build the dictionary using a warming query? I think I saw this happen once before a long time ago. I think if you are issuing a warming query with "spellcheck.build=true", then you might also want to use "spellcheck.collate=false". If this fixes it, could you open a bug repo

curl with dynamic url not working

2013-01-21 Thread nishi
While running the following curl command, the url never went with params while invoking: curl http://127.0.0.1:8080/solr/newsRSS_DIH?command=full-import&clean=false&url=http://www.example.com/news LOG details: INFO: [collection1] webapp=/solr path=/newsRSS_DIH params={command=full-import} status=

Re: Tokenized keywords

2013-01-21 Thread Jack Krupansky
If debugQuery doesn't give you what you want, you can write a custom search component which runs after the QueryComponent and extracts the info you want from the generated query and then simply adds it to the response in any form that you want. -- Jack Krupansky -Original Message- Fr

RE: curl with dynamic url not working

2013-01-21 Thread Markus Jelsma
Note the HTML entities in the URL? They should not be there. Your URL is interpreted as if amp;clean=false is a parameter. -Original message- > From:nishi > Sent: Mon 21-Jan-2013 16:39 > To: solr-user@lucene.apache.org > Subject: curl with dynamic url not working > > While running t

Re: How to combine Qparsers in a plugin?

2013-01-21 Thread Jack Krupansky
The test for equality of tow queries is via the "equals" method of the generated Query objects. Is there any chance that you might be generating any custom Query objects which may not have the equals method implemented to return false properly? -- Jack Krupansky -Original Message- Fr

Re: curl with dynamic url not working

2013-01-21 Thread Rafał Kuć
Hello! Try surrounding you URL with ' characters, so the whole command looks like this: curl 'http://127.0.0.1:8080/solr/newsRSS_DIH?command=full-import&clean=false&url=http://www.example.com/news' -- Regards, Rafał Kuć Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch - ElasticSearc

Re: Full import through DIH leaving documents as uncommited

2013-01-21 Thread vijeshnair
I saw the following in the IndexWriter Java doc page NOTE: if you hit an OutOfMemoryError then IndexWriter will quietly record this fact and block all future segment commits. This is a defensive measure in case any internal state (buffered documents and deletions) were corrupted. Any subsequent ca

Re: curl with dynamic url not working

2013-01-21 Thread Jack Krupansky
You need to enclose the full URL and parameters in quotes - the & was interpreted by the command shell. -- Jack Krupansky -Original Message- From: nishi Sent: Monday, January 21, 2013 10:31 AM To: solr-user@lucene.apache.org Subject: curl with dynamic url not working While running th

Scoring differences solr versions

2013-01-21 Thread roySolr
Hi, I have some question about the scoring in SOLR4. I have the same query on 2 versions of SOLR(same indexed docs). The debug of the scoring: *SOLR4:* 3.3243241 = (MATCH) sum of: 0.20717455 = (MATCH) max plus 1.0 times others of: 0.19920631 = (MATCH) weight(firstname_search:g^50.0 in 783453) [De

Re: How to combine Qparsers in a plugin?

2013-01-21 Thread denl0
I build my query like this: Query q = QParser.getParser(qstr, "edismax", req).getQuery(); return JoinUtil.createJoinQuery("pageFileId", true, "fileId", q, searcher, ScoreMode.Max); Is it possible to set that the query never equals. Here's an updated version of my co

Re: curl with dynamic url not working

2013-01-21 Thread nishi
Thanks for the advice, I followed all the pointers mentioned: curl 'http://127.0.0.1:8080/solr/newsRSS_DIH?command=full-import&clean=false&commit=true&url=http://www.example.com/news' Now, I got the following error: Jan 21, 2013 10:53:02 AM org.apache.solr.core.SolrDeletionPolicy updateCommits

Enable Logging in the Example App

2013-01-21 Thread O. Olson
Hi,       I am really new to Solr, and I have never used anything similar to it before. So please pardon my ignorance. I downloaded  Solr 4.0 from http://lucene.apache.org/solr/downloads.html and start it using the commandline:   >java -jar start.jar    This generates a number of INFO lo

Re: How to combine Qparsers in a plugin?

2013-01-21 Thread Jack Krupansky
You may need to implement your own Query class that wraps the generated query and it could always return false for equals. -- Jack Krupansky -Original Message- From: denl0 Sent: Monday, January 21, 2013 10:54 AM To: solr-user@lucene.apache.org Subject: Re: How to combine Qparsers in a

RE: Scoring differences solr versions

2013-01-21 Thread Markus Jelsma
Could you provide indented format instead? This is hard to debug but i suspect it's the query norm. -Original message- > From:roySolr > Sent: Mon 21-Jan-2013 17:00 > To: solr-user@lucene.apache.org > Subject: Scoring differences solr versions > > Hi, > > I have some question about the

Re: curl with dynamic url not working

2013-01-21 Thread nishi
Thanks. The above issue is resolved by setting the following parameters at solrConfig.xml - simple true 1 6 6 - Regarding any pointer on - cron and the script for making exception handling/robust scheduler would be helpful. Thanks. -- View this message in contex

AutoComplete with FiterQuery for Full content

2013-01-21 Thread Sujatha Arun
Hi, I need suggestion on solr Autocomplete for Full content with Filter query. I have currently implemented this as below 1. Solr version 3.6.1 2. solr.StandardTokenizerFactory 3. EdgeNGramFilterFactory with maxGramSize="25" minGramSize="1" 4. Stored the content field 5. Use the

java.io.FileNotFoundException: /var/solrdata/coreX/index.20121111165300/_3m.fnm

2013-01-21 Thread Uomesh
Hi, I am getting below exception while loading my core. I can see a _3j.fnm file in my directory but it looking for _3m.fnm. Could you please help me what is causing this issue? http-8080-14 Jan-21 11:10:00-ERROR [org.apache.solr.core.SolrCore] - org.apache.solr.common.SolrException: Error execu

Delete all Documents in the Example (Solr 4.0)

2013-01-21 Thread O. Olson
Hi,       I am attempting to use the example-DIH that comes with the Solr 4.0 download. In /example, I start Solr using:   java -Dsolr.solr.home="./example-DIH/solr/" -jar start.jar   After playing with it for a while, I decided to delete all documents in the index. The FAQ at http://wiki

Re: Delete all Documents in the Example (Solr 4.0)

2013-01-21 Thread Shawn Heisey
On 1/21/2013 11:27 AM, O. Olson wrote: http://localhost:8983/solr/update and I got a 404 too. I then looked at /example-DIH/solr/solr/conf/solrconfig.xml and it seems to have . I am confused why I am getting a 404 if /update has a handler? You need to send the request to /solr/corename/update

Re: Delete all Documents in the Example (Solr 4.0)

2013-01-21 Thread Alexandre Rafalovitch
I just tested that and /update does not seem to honor the default core value (same 404 issue). Is that a bug? Regards, Alex. Personal blog: http://blog.outerthoughts.com/ LinkedIn: http://www.linkedin.com/in/alexandrerafalovitch - Time is the quality of nature that keeps events from happening

Re: Solr cache considerations

2013-01-21 Thread Erick Erickson
Hmm, interesting. I'll have to look closer... On Sun, Jan 20, 2013 at 3:50 PM, Walter Underwood wrote: > I routinely see hit rates over 75% on the document cache. Perhaps yours is > too small. Mine is set at 10240 entries. > > wunder > > On Jan 20, 2013, at 8:08 AM, Erick Erickson wrote: > >> Ab

When a URL is a component of a query string's data?

2013-01-21 Thread Jack Park
There exists in my Solr index a document (several, actually) which harbor http:// URL values. Trying to find documents with a particular URL fails. The query is like this: ResourceURLPropertyType:http://someserver.org/something Fails due to the second ":" If I substitute %3a into that query, e.g

Re: Spatial+Dataimport full import results in OutOfMemory for a rectangle defining a line

2013-01-21 Thread David Smiley (@MITRE.org)
Javier, Your minX is slightly greater than maxX, which is interpreted as a line that wraps nearly the entire globe. Is that what you intended? If this is what you intended, then you got bitten by this unfixed bug: https://issues.apache.org/jira/browse/LUCENE-4550 As a work-around, you could spli

Re: Using Solr Spatial in conjunction with HBASE/Hadoop

2013-01-21 Thread David Smiley (@MITRE.org)
What good is a key-value store in the context of oakstream's question? ~ David - Author: http://www.packtpub.com/apache-solr-3-enterprise-search-server/book -- View this message in context: http://lucene.472066.n3.nabble.com/Using-Solr-Spatial-in-conjunction-with-HBASE-Hadoop-tp4034307p40

Issues with docFreq/docCount on SolrCloud

2013-01-21 Thread Markus Jelsma
Hi, We have a few trunk clusters running with two replica's for each shard. We sometimes see results jumping positions for identical queries. We've tracked it down to differences in docFreq and docCount between the leader and replica's. The only way to force all cores in the shard to be consist

Re: When a URL is a component of a query string's data?

2013-01-21 Thread Jack Krupansky
The colons are probably okay. It is probably the slashes causing the problem. An embedded slash now terminates the preceding term and starts a regular expression term (that is terminated by a second slash). Solution: quote each slash with a backslash. ResourceURLPropertyType:http:\/\/somese

Re: When a URL is a component of a query string's data?

2013-01-21 Thread Jack Park
At the admin console, surrounding with "" worked fine. Many thanks Jack On Mon, Jan 21, 2013 at 11:24 AM, Jack Krupansky wrote: > The colons are probably okay. It is probably the slashes causing the > problem. An embedded slash now terminates the preceding term and starts a > regular expression

Solr and Unicode characters in strings

2013-01-21 Thread Jack Park
Here is a situation I now experience: What Solr has: economist and thus …@en What was sent: economist and thus …@en where those are just snippets from what I sent up -- the ellipsis wa

Re: How to combine Qparsers in a plugin?

2013-01-21 Thread Jack Krupansky
So? I mean, so what if a Query object cannot be cast to some other random object type. The whole point is that a class extending "Query" can be used where any "Query" object can be used. You need to add the code to your Query-derived class to create it using an existing query object and pass a

error initializing QueryElevationComponent

2013-01-21 Thread eShard
Hi, I'm trying to test out the queryelevationcomponent. elevate.xml is in the solrconfig.xml and it's in the conf directory. I left the defaults. I added this to the elevate.xml https://opentextdev/cs/llisapi.dll?func=ll&objID=577575&objAction=download"; /> id is a string setup as the uniq

Re: Enable Logging in the Example App

2013-01-21 Thread Ahmet Arslan
Hi Olson, java -Djava.util.logging.config.file=etc/logging.properties -jar start.jar should do the trick. There is an information about this in README.txt --- On Mon, 1/21/13, O. Olson wrote: > From: O. Olson > Subject: Enable Logging in the Example App > To: "solr-user@lucene.apache.org" >

Re: Spatial+Dataimport full import results in OutOfMemory for a rectangle defining a line

2013-01-21 Thread Javier Molina
Thanks for your reply David. After doing more testing I found that overlapping latitudes or longitudes was not the issue as you point out. The values presented are extreme but they are correct, our solution should allow a user to define a box in a map, a box crossing the 180 meridian is also vali

SolrException: Error loading class 'org.apache.solr.response.transform.EditorialMarkerFactory'

2013-01-21 Thread eShard
Hi, This is related to my earlier question regarding the elevationcomponent. I tried turning this on: If you are using the QueryElevationComponent, you may wish to mark documents that get boosted. The EditorialMarkerFactory will do exactly that: --> but it fails to loa

Re: Delete all Documents in the Example (Solr 4.0)

2013-01-21 Thread O. Olson
- Messaggio originale - Da: Shawn Heisey A: solr-user@lucene.apache.org Cc: Inviato: Lunedì 21 Gennaio 2013 12:35 Oggetto: Re: Delete all Documents in the Example (Solr 4.0) >On 1/21/2013 11:27 AM, O. Olson wrote: >> http://localhost:8983/solr/update >> >> and I got a 404 too. I the

Re: Enable Logging in the Example App

2013-01-21 Thread O. Olson
Thank you Ahmet. This worked perfectly. O. O. - Messaggio originale - Da: Ahmet Arslan A: solr-user@lucene.apache.org; O. Olson Cc: Inviato: Lunedì 21 Gennaio 2013 15:44 Oggetto: Re: Enable Logging in the Example App Hi Olson, java -Djava.util.logging.config.file=etc/logging.properti

Re: Delete all Documents in the Example (Solr 4.0)

2013-01-21 Thread Erick Erickson
Try the admin page (note, this doesn't need a core, .../solr should take you there). The cores should be listed on the left Best Erick On Mon, Jan 21, 2013 at 6:09 PM, O. Olson wrote: > > > > > - Messaggio originale - > Da: Shawn Heisey > A: solr-user@lucene.apache.org > Cc: > Inviato:

Re: Using Solr Spatial in conjunction with HBASE/Hadoop

2013-01-21 Thread oakstream
David, I appreciate your time. I'm going to take a crack at the Lucene sharded index approach and will let you know how I fare. Thanks again -- View this message in context: http://lucene.472066.n3.nabble.com/Using-Solr-Spatial-in-conjunction-with-HBASE-Hadoop-tp4034307p4035211.html Sent from

Re: java.io.FileNotFoundException: /var/solrdata/coreX/index.20121111165300/_3m.fnm

2013-01-21 Thread Erick Erickson
What have you done to get to this state? This is definitely not normal, but seems to indicate that you've somehow removed files from your index externally to Solr. what version of Solr? On Mon, Jan 21, 2013 at 12:25 PM, Uomesh wrote: > Hi, > > I am getting below exception while loading my core.

Problem querying collection in Solr 4.1

2013-01-21 Thread Brett Hoerner
I have a collection in Solr 4.1 RC1 and doing a simple query like text:"puppy dog" is causing an exception. Oddly enough, I CAN query for text:puppy or text:"puppy", but adding the space breaks everything. Schema and config: https://gist.github.com/f49da15e39e5609b75b1 This happens whether I quer

bf, nested queries and local params

2013-01-21 Thread Anatoli Matuskova
I'm trying to reach this: Having this query: q=table&bf=product(scale({!type=dismax qf=description,color v='with color'},0,1),price) And using on q (in solrconfig.xml) defType=dismax, qf=title, description I'm trying to query for "table" and influence the score by doing the product of the price

Re: bf, nested queries and local params

2013-01-21 Thread Jack Krupansky
Wrap the query argument for the scale function with the query function: q=table&bf=product(scale(query({!type=dismax qf=description,color v='with color'}),0,1),price) -- Jack Krupansky -Original Message- From: Anatoli Matuskova Sent: Monday, January 21, 2013 7:35 PM To: solr-user@lu

Re: bf, nested queries and local params

2013-01-21 Thread Anatoli Matuskova
Looks like doing this: /Wrap the query argument for the scale function with the query function: q=table&bf=product(scale(query({!type=dismax qf=description,color v='with color'}),0,1),price) / I'm still getting the same error. Something might be wrong when writing the nested query but can't fi

Re: bf, nested queries and local params

2013-01-21 Thread Jack Krupansky
The value for "bf" is a list of function queries, each separated by white space, so maybe the space after "dismax" is confusing the bf value parser. Post your exact test URL. -- Jack Krupansky -Original Message- From: Anatoli Matuskova Sent: Monday, January 21, 2013 7:53 PM To: solr-

Re: bf, nested queries and local params

2013-01-21 Thread Jack Krupansky
I think the space between "with" and "color" may be messing up the bf arg parser. Try a single term in the query, just to see if that's it. -- Jack Krupansky -Original Message- From: Anatoli Matuskova Sent: Monday, January 21, 2013 8:39 PM To: solr-user@lucene.apache.org Subject: Re:

Re: Spatial+Dataimport full import results in OutOfMemory for a rectangle defining a line

2013-01-21 Thread David Smiley (@MITRE.org)
Javier, I didn't point out anything about overlapping latitudes or longitudes. I pointed out that your rectangle is extremely wide. It's 359.98 degrees wide out of a maximum possibility of 360 even. That's wide! Wether it crosses the dateline or not doesn't trigger the bug; its tri

how to avoid DataImportHandler from interpreting "tinyint(1) unsigned" value as "Boolean" value?

2013-01-21 Thread nanyang cai
Hi, DIH is really handy. But I found it interpret "Tinyint(1) unsigned" values as "Boolean" values. In my case, we have a column 'status tinyint(1)', who could hold value of (0, 1, 2, 3); My configuration as blow: db-data-config.xml : schema.xml: But search results after indexing:

Re: Problem querying collection in Solr 4.1

2013-01-21 Thread Gopal Patwa
one thing I noticed in solrconfig xml that it set to use Lucene version 4.0 index format but you mention you are using it 4.1 LUCENE_40 On Mon, Jan 21, 2013 at 4:26 PM, Brett Hoerner wrote: > I have a collection in Solr 4.1 RC1 and doing a simple query like > text:"puppy dog" is causing an

Re: Spatial+Dataimport full import results in OutOfMemory for a rectangle defining a line

2013-01-21 Thread Javier Molina
Re: overlapping latitudes/longitudes, I think it was a mixup of sentences. At the end you pointed out where the problem was. After doing more testing I see the issue not only depends on the longitudes but it is also affected by latitudes. For example This very wide rectangle will cause an OutOf

Re: bf, nested queries and local params

2013-01-21 Thread Jack Krupansky
Seems that way. Sounds like it needs some deeper troubleshooting. Ah... try this, wrap the query function with a "product" function that simply multiplies by 1 to force the conversion q=table&bf=product(scale(product(query({!v='color'}),1),0,1),100) Even if that does work, sounds like a bug.

AutoComplete with FiterQuery for Full content

2013-01-21 Thread Sujatha Arun
Hi, I need suggestion on solr Autocomplete for Full content with Filter query. I have currently implemented this as below 1. Solr version 3.6.1 2. solr.StandardTokenizerFactory 3. EdgeNGramFilterFactory with maxGramSize="25" minGramSize="1" 4. Stored the content field 5. Use the

Re: AutoComplete with FiterQuery for Full content

2013-01-21 Thread Jack Krupansky
It's not clear what your question or problem is. Try explaining it in simple English first. Autocomplete is fairly simple - no need for the complexity of an ngram filter. Here's an example of a suggester component and request handler based on a simple text field: suggest org.apache.

Re: AutoComplete with FiterQuery for Full content

2013-01-21 Thread Sujatha Arun
Hi Jack, I need to filter the suggestions based on some other fields and the below mentioned method [Suggester] does not allow to do same. Hence at present we have only two options for suggest Implementation with filters 1.Facets 2.N-Grams as mentioned in this site . http://www.searchworkings

How distributed queries works?

2013-01-21 Thread SuoNayi
Dear list, I want to know the internal mechanism for the distributed queries of SolrCloud. AFAIK,distributed query is supported before the presence of SolrCloud, users can specify shard urls in the query parameters. We can distribute data by time interval in this case.It's called horizontal sca