Re: Facet to part of search results

2020-12-04 Thread Andy Webb
by some attribute(s) to get higher scores, can you filter out items that don't have those attributes? Also, maybe setting mm to require more terms to match could cut out unwanted results (that's not useful for the "dog" query of course). Andy On Fri, 4 Dec 2020 at 06:43, Radu Gheor

Why am I able to sort on a multiValued field?

2020-11-13 Thread Andy C
I am adding a new float field to my index that I want to perform range searches and sorting on. It will only contain a single value. I have an existing dynamic field definition in my schema.xml that I wanted to use to avoid having to updating the schema: I went ahead and implemented

Re: Folding Repeated Letters

2020-10-08 Thread Andy Webb
uot;: "solr.PatternReplaceFilterFactory", "pattern": "(.)\\1+", "replacement": "$1" } ] } } ] } This finds a match... http://localhost:8983/

Re: Term too complex for spellcheck.q param

2020-10-08 Thread Andy Webb
I added the maxQueryLength option to DirectSolrSpellchecker in https://issues.apache.org/jira/browse/SOLR-14131 - that landed in 8.5.0 so should be available to you. Andy On Wed, 7 Oct 2020 at 23:53, gnandre wrote: > Is there a way to truncate spellcheck.q param value from Solr s

Re: Updating configset

2020-09-11 Thread Andy C
Don't know if this is an option for you but the SolrJ Java Client library has support for uploading a config set. If the config set already exists it will overwrite it, and automatically RELOAD the dependent collection. See

Re: Error on searches containing specific character pattern

2020-09-07 Thread Andy @ BlueFusion
Thanks David, I'll set up  the techproducts schema and see what happens. Kind regards, Andy On 4/09/20 4:09 pm, David Smiley wrote: Hi, I looked at the code at those line numbers and it seems simply impossible that an ArrayIndexOutOfBoundsException could be thrown there because it's guarded

Error on searches containing specific character pattern

2020-09-01 Thread Andy @ BlueFusion
aven't been able to find anything similar reported online so I'm thinking it's a config issue and would be grateful for any pointers & solutions. Many thanks in advance,| -- Andy Dopleach /Director/ *BlueFusion <https://www.bluefusion.co.nz/>* p: 03 328 8646 m: 021 255 740

Re: Solr with HDFS configuration example running in production/dev

2020-08-20 Thread Andy Hind
. There be dragons! Andy > On 20 Aug 2020, at 07:25, Prashant Jyoti wrote: > > Hi Joe, > These are the errors I am running into: > > org.apache.solr.common.SolrException: Error CREATEing SolrCore > 'newcollsolr2_shard1_replica_n1': Unable to create core > [newcollsolr2_s

Re: Solrj client 8.6.0 issue special characters in query

2020-08-07 Thread Andy Webb
hi Jörn - something's decoding a UTF8 sequence using the legacy iso-8859-1 character set: Jörn is J%C3%B6rn in UTF8 J%C3%B6rn misinterpreted as iso-8859-1 is Jörn Jörn is J%C3%83%C2%B6rn in UTF8 I hope this helps track down the problem! Andy On Fri, 7 Aug 2020 at 12:08, Jörn Franke wrote

Unable to get ICUFoldingFilterFactory class loaded in unsecured 8.4.1 SolrCloud

2020-01-29 Thread Andy C
e problems with the class loader, as I start getting a NoClassDefFoundError : org/apache/lucene/analysis/util/ResourceLoaderAware exception. Any suggestions? Thanks, - Andy -

Re: Boolean Searches?

2019-03-14 Thread Andy C
Dave, You don't mention what query parser you are using, but with the default query parser you can field qualify all the terms entered in a text box by surrounding them with parenthesis. So if you want to search against the 'title' field and they entered: train OR dragon You could generate the

Re: which Zookeper version for Solr 6.6.5

2018-12-14 Thread Andy C
Bernd, I recently asked a similar question about Solr 7.3 and Zookeeper 3.4.11. This is the response I found most helpful: https://www.mail-archive.com/solr-user@lucene.apache.org/msg138910.html - Andy - On Fri, Dec 14, 2018 at 7:41 AM Bernd Fehling < bernd.fehl...@uni-bielefeld.de>

Re: solr instance keep increasing thread count

2018-12-04 Thread andy
update about 3000 docs per minute ,but other solr instance is running normally -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

solr instance keep increasing thread count

2018-12-04 Thread andy
we use solrcloud with version 5.2.1,openjdk 1.8,we have multiple solr machines, one of them keep increasing thread count ,I saw from http://xx:xxx/solr/#/~threads page, I found that a lot of [java.util.concurrent.locks.ReentrantReadWriteLock$FairSync@x] threads, the detail info like this:

Re: Connection Problem with CloudSolrClient.Builder().build When passing a Zookeeper Addresses and RootParam

2018-06-18 Thread Andy C
.empty(); (as you have done). Intent of my code was to support both using a chroot and not using a chroot. The value of _zkChroot is read from a config file in code not shown. - Andy -

Re: Connection Problem with CloudSolrClient.Builder().build When passing a Zookeeper Addresses and RootParam

2018-06-18 Thread Andy C
= Optional.empty(); } CloudSolrClient client = new CloudSolrClient.Builder(_zkHostList, chrootOption).build(); Adapted from code I found somewhere (unit test?). Intent is to support the option of configuring a chroot or not (stored in "_zkChroot") - Andy - On Mon, Jun 18, 201

Re: Performance if there is a large number of field

2018-05-11 Thread Andy C
Shawn, Why are range searches more efficient than wildcard searches? I guess I would have expected that they just provide different mechanism for defining the range of unique terms that are of interest, and that the merge processing would be identical. Would a search such as: field:c* be more

Re: Upgrading to Solr 7.3 but Zookeeper 3.4.11 no longer available on Zookeeper mirror sites

2018-05-09 Thread Andy C
Thanks Shawn. That makes sense. On Wed, May 9, 2018 at 5:10 PM, Shawn Heisey <apa...@elyograg.org> wrote: > On 5/9/2018 2:38 PM, Andy C wrote: > > Was not quite sure from reading the JIRA why the Zookeeper team felt the > > issue was so critical that they felt the need to

Re: Upgrading to Solr 7.3 but Zookeeper 3.4.11 no longer available on Zookeeper mirror sites

2018-05-09 Thread Andy C
invert the dataDir and dataLogDir directories. It does present something of a PR issue for us, if we tell our customers to use a ZK version that has been pulled from the mirrors. Any plans to move to ZK 3.4.12 in future releases? Thanks, - Andy - On Wed, May 9, 2018 at 4:09 PM, Erick Erickson

Upgrading to Solr 7.3 but Zookeeper 3.4.11 no longer available on Zookeeper mirror sites

2018-05-09 Thread Andy C
leases? Would appreciate any guidance. Thanks, - Andy -

Re: Adding Documents to Solr by using Java Client API is failed

2018-03-19 Thread Andy Tang
for test programs it's not _necessary_ > > Best, > Erick > > > On Fri, Mar 16, 2018 at 2:02 PM, Andy Tang <andytang2...@gmail.com> wrote: > > Erik, > > > > Thank you for reminding. > > javac -cp > > .:/opt/solr/solr-6.6.2/dist/*:/opt/solr/sol

Re: Adding Documents to Solr by using Java Client API is failed

2018-03-16 Thread Andy Tang
lude /opt/solr/solr-6.6.2/dist/solrj-lib in > your classpath. > > Best, > Erick > > On Fri, Mar 16, 2018 at 12:14 PM, Andy Tang <andytang2...@gmail.com> > wrote: > > I have the code to add document to Solr. I tested it in Both Solr 6.6.2 >

Recovering from machine failure

2018-03-16 Thread Andy C
to reflect the new IP address of the VMs. But will that be sufficient? Appreciate any guidance. Thanks - Andy -

Adding Documents to Solr by using Java Client API is failed

2018-03-16 Thread Andy Tang
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:338) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 2 more What is wrong with it? Is this urlString correct? Any help is appreciated! Andy Tang

Re: SolrCloud 7.2.1 - UnsupportedOperationException thrown after query on specific environments

2018-03-05 Thread Andy Jolly
We were able to locate the exact issue after some more digging. We added a query to another collection that runs alongside the job we were executing and we were missing the collection reference in the URL. If the below query is run by itself in at least Solr 7, the error will be reproduced.

Re: SolrCloud 7.2.1 - UnsupportedOperationException thrown after query on specific environments

2018-03-02 Thread Andy Jolly
Erick Erickson wrote > Maybe your remote job server is using a different set of jars than > your local one? How does the remote job server work? The remote job server and our local are running the same code as our local, and both our local and remote job server are making queries against the same

SolrCloud 7.2.1 - UnsupportedOperationException thrown after query on specific environments

2018-03-01 Thread Andy Jolly
We are receiving an UnsupportedOperationException after making certain requests. The requests themselves do not seem to be causing the issue as when we run the job that makes these requests locally against the same SolrCloud cluster where the errors are being thrown, there are no errors. These

./fs-manager process run under solr

2018-01-10 Thread Andy Fake
Hi, I use Solr 5.5, I recently notice a process a process ./fs-manager is run under user solr that take quite high CPU usage. I don't think I see such process before. Is that a legitimate process from Solr? Thanks.

Re: After upgrade to Solr 6.5, q.op=AND affects filter query differently than in older version

2017-05-01 Thread Andy C
s present. And then changing the filter query to: fq=ctindex_populated:false OR ctindex:myId Would this be more efficient than your proposed filter query? Thanks again, - Andy - On Mon, May 1, 2017 at 10:19 AM, Shawn Heisey <apa...@elyograg.org> wrote: > On 4/26/2017 1:04 PM, Andy C wrote: > > I'

After upgrade to Solr 6.5, q.op=AND affects filter query differently than in older version

2017-04-26 Thread Andy C
op setting? More details: - Using the standard query parser - The fieldType of the ctindex field is "string" - I upgraded to 6.5 by copying my 5.3 config files over, updating the schema version to 1.6 in the schema.xml, updating the luceneMatchVersion to 6.5.0 in the solrconfig.xml, and building a brand new index. Thanks, - Andy -

Re: Overlapped Gap Facets

2016-11-17 Thread Andy C
last 24 hours ("[NOW-1DAYS,NOW]"), but be aware that when you subsequently restrict your query using one of these intervals using NOW without rounding has a negative impact on the filter query cache (see https://dzone.com/articles/solr-date-math-now-and-filter for a better explanation than I

Re: Zero value fails to match Positive, Negative, or Zero interval facet

2016-10-21 Thread Andy C
the same issue will occur in 6.2.1. How should I proceed from here? Thanks, - Andy - private int compareStart(FacetInterval o1, FacetInterval o2) { if (o1.start == null) { if (o2.start == null) { return 0; } return -1; } if (o2

Zero value fails to match Positive, Negative, or Zero interval facet

2016-10-19 Thread Andy C
converted to a range query internally), and it fails to show up in the Negative or Positive intervals either. Any ideas what is going on, and if there is anything I can do to get this to work correctly? I am using Solr 5.3.1. I've pasted the output from the Solr Admin UI query below. Tha

Preceding special characters in ClassicTokenizerFactory

2016-10-03 Thread Whelan, Andy
Hello, I am guessing that what I am looking for is probably going to require extending StandardTokenizerFactory or ClassicTokenizerFactory. But I thought I would ask the group here before attempting this. We are indexing documents from an eclectic set of sources. There is, however, a heavy

Are there issues with the use of SolrCloud / embedded Zookeeper in non-HA deployments?

2016-07-28 Thread Andy C
here. Are there other reasons not to use the embedded Zookeeper? More generally, are there downsides to using SolrCloud with a single Zookeeper node and single Solr node? Would appreciate any feedback. Thanks, Andy

using lucene parser syntax with eDisMax

2016-07-15 Thread Whelan, Andy
Hello, I am using the eDisMax parser and have the following question. With the eDisMax parser we can pass a query, q="brown and mazda", and configure a bunch of fields in a solrconfig.xml SearchHandler to query on as "qf". Let's say I have a SOLR schema.xml with the following fields: and

Facet in SOLR Cloud vs Core

2016-07-07 Thread Whelan, Andy
Hello, I have am somewhat of a novice when it comes to using SOLR in a distributed SolrCloud environment. My team and I are doing development work with a SOLR core. We will shortly be transitioning over to a SolrCloud environment. My question specifically has to do with Facets in a SOLR

Re: Storing positions and offsets vs FieldType IndexOptions DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS

2015-05-30 Thread Andy Lee
I also met the same problem, could you tell me why? Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Storing-positions-and-offsets-vs-FieldType-IndexOptions-DOCS-AND-FREQS-AND-POSITIONS-AND-OFFSETS-tp4061354p4208875.html Sent from the Solr - User mailing list archive

Duplicate scoring situation in DelegatingCollector

2014-11-14 Thread Andy Crossen
Hi folks, I have a DelegatingCollector installed via a PostFilter (kind of like an AnalyticsQuery) that needs the document score to a) add to a collection of score-based stats, and b) decide whether to keep the document based on the score. If I keep the document, I call super.collect() (where

Re: Using hundreds of dynamic fields

2014-07-16 Thread Andy Crossen
based on negative performance implications of having to read and rewrite all previous fields for a document when doing atomic updates? Or are there additional inherent negatives to using lots of dynamic fields? Andy On Fri, Jun 27, 2014 at 11:46 AM, Jared Whiklo jared.whi...@umanitoba.ca wrote

Using hundreds of dynamic fields

2014-06-27 Thread Andy Crossen
Hi folks, My application requires tracking a daily performance metric for all documents. I start tracking for an 18 month window from the time a doc is indexed, so each doc will have ~548 of these fields. I have in my schema a dynamic field to capture this requirement: dynamicField

Re: [ANN] Heliosearch 0.06 released, native code faceting

2014-06-19 Thread Andy
Congrats! Any idea when will native faceting off-heap fieldcache be available for multivalued fields? Most of my fields are multivalued so that's the big one for me. Andy On Thursday, June 19, 2014 3:46 PM, Yonik Seeley yo...@heliosearch.com wrote: FYI, for those who want to try out

Apache Solr Configuration Problem (Japanese Language)

2014-03-05 Thread Andy Alexander
I am trying to pass a string of Japanese characters to an Apache Solr query. The string in question is '製品'. When a search is passed without any arguments, it brings up all of the indexed information, including all of the documents that have this particular string in them, however when this

Sorting by a dynamically-generated field in a distributed context

2014-01-21 Thread Andy Crossen
Hi folks, Using Solr 4.6.0 in a cloud configuration, I'm developing a SearchComponent that generates a custom score for each document. Its operational flow looks like this: 1. The score is derived from an analysis of search results coming out of the QueryComponent. Therefore, the component is

Highlight: simple.pre/post not being applied always

2013-10-31 Thread Andy Pickler
someone help me know where to look for why the pre/post aren't being applied? Thanks, Andy Pickler

Re: Join Query Behavior

2013-10-25 Thread Andy Pickler
leave off the join query in 4.5 and get the same results, which tells me obviously it is having no effect. Is there a change to the join query behavior between these releases, or could I have configured something differently in my 4.5.1 install? Thanks, Andy Pickler On Thu, Oct 24, 2013 at 2:42

Join Query Behavior

2013-10-24 Thread Andy Pickler
gives us different (and expected) results, while the query doesn't affect the results at all in 4.5. Is there any known join query behavior differences/fixes between 4.2 and 4.5 that might explain this, or should I be looking at other factors? Thanks, Andy Pickler

Re: Schema Lint

2013-08-06 Thread Andy Lester
On Aug 6, 2013, at 9:55 AM, Steven Bower smb-apa...@alcyon.net wrote: Is there an easy way in code / command line to lint a solr config (or even just a solr schema)? No, there's not. I would love there to be one, especially for the DIH. -- Andy Lester = a...@petdance.com = www.petdance.com

Re: Perl Solr help - doing *:* query

2013-07-09 Thread Andy Lester
On Jul 9, 2013, at 2:48 PM, Shawn Heisey s...@elyograg.org wrote: This is primarily to Andy Lester, who wrote the WebService::Solr module on CPAN, but I'll take a response from anyone who knows what I can do. If I use the following Perl code, I get an error. What error do you get? Never

Re: DIH: HTMLStripTransformer in sub-entities?

2013-07-06 Thread Andy Pickler
That's exactly what turned out to be the problem. We thought we had already tried that permutation but apparently hadn't. I know it's obvious in retrospect. Thanks for the suggestion. Thanks, Andy Pickler On Wed, Jul 3, 2013 at 2:38 PM, Alexandre Rafalovitch arafa...@gmail.comwrote: On Tue

DIH: HTMLStripTransformer in sub-entities?

2013-07-02 Thread Andy Pickler
/ *THIS DOESN'T WORK!* /entity /entity We've tried several different permutations of putting the sub-entity column in different nest levels of the XML to no avail. I'm curious if we're trying something that is just not supported or whether we are just trying the wrong things. Thanks, Andy Pickler

Re: DIH: HTMLStripTransformer in sub-entities?

2013-07-02 Thread Andy Pickler
don't think any of this helps you identify my problem, but I tried to address your questions. Thanks, Andy On Tue, Jul 2, 2013 at 9:14 AM, Gora Mohanty g...@mimirtech.com wrote: On 2 July 2013 20:29, Andy Pickler andy.pick...@gmail.com wrote: Solr 4.1.0 We've been using the DIH to pull data

Re: Solr Security

2013-06-24 Thread Andy Lester
But either way, that's a pretty ridiculous solution. I don't know of any other server product that disregards security so willingly. Why are you wasting your time with such an inferior project? Perhaps ElasticSearch is more to your liking. xoxo, Andy -- Andy Lester = a...@petdance.com

RE: Slow Highlighter Performance Even Using FastVectorHighlighter

2013-06-14 Thread Andy Brown
, and termOffsets set to true. It all seems redundant just to allow for partial word matching/highlighting but I didn't know of a better way. Does anything stand out to you that could be the culprit? Let me know if you need any more clarification. Thanks! - Andy -Original Message- From

Velocity / Solritas not works in solr 4.3 and Tomcat 6

2013-06-09 Thread andy tang
*Could anyone help me to see what is the reason which Solritas page failed?* *I can go to http://localhost:8080/solr without problem, but fail to go to http://localhost:8080/solr/browse* *As below is the status report! Any help is appreciated.* *Thanks!* *Andy* * * *type* Status report

Re: [blogpost] Memory is overrated, use SSDs

2013-06-06 Thread Andy
This is very interesting. Thanks for sharing the benchmark. One question I have is did you precondition the SSD ( http://www.sandforce.com/userfiles/file/downloads/FMS2009_F2A_Smith.pdf )? SSD performance tends to take a very deep dive once all blocks are written at least once and the garbage

Re: Why do FQs make my spelling suggestions so slow?

2013-05-29 Thread Andy Lester
. Thanks for the ticket. I am looking at the effects of turning on spellcheck.onlyMorePopular to true, which reduces the number of collations it seems to do, but doesn't affect the underlying question of is the spellchecker doing FQs properly? Thanks, Andy -- Andy Lester = a...@petdance.com

Why do FQs make my spelling suggestions so slow?

2013-05-28 Thread Andy Lester
like to be able to use the spellchecker but the results with only 10-20 maxCollationTries aren't nearly as good as if we can bump that up to 100, but we can't afford the slow response time. We also can't do without the FQs. Thanks, Andy -- Andy Lester = a...@petdance.com = www.petdance.com

Re: Why do FQs make my spelling suggestions so slow?

2013-05-28 Thread Andy Lester
of combinations. The results I get back with 100 tries are about twice as many as I get with 10 tries. That's a big difference to the user where it's trying to figure misspelled phrases. Andy -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

MoreLikeThis - No Results

2013-05-22 Thread Andy Pickler
to not be significant. I realize that I may not understand how the MLT Handler is doing things under the covers...I've only been guessing until now based on the (otherwise excellent) results I've been seeing. Thanks, Andy Pickler P.S. For some additional information, the following query: /mlt?q

RE: Slow Highlighter Performance Even Using FastVectorHighlighter

2013-05-22 Thread Andy Brown
handler that only searches the whole word fields and it returns in 850 ms with highlighting. Any ideas? - Andy -Original Message- From: Bryan Loofbourrow [mailto:bloofbour...@knowledgemosaic.com] Sent: Monday, May 20, 2013 1:39 PM To: solr-user@lucene.apache.org Subject: RE: Slow

Re: MoreLikeThis - No Results

2013-05-22 Thread Andy Pickler
results...and they indeed are relevant. Thanks, Andy Pickler On Wed, May 22, 2013 at 12:20 PM, Andy Pickler andy.pick...@gmail.comwrote: I'm a developing a recommendation feature in our app using the MoreLikeThisHandler http://wiki.apache.org/solr/MoreLikeThisHandler, and so far it is doing

Slow Highlighter Performance Even Using FastVectorHighlighter

2013-05-20 Thread Andy Brown
str name=hl.tag.post![CDATA[/strong]]/str /lst /requestHandler Cheers! - Andy

Re: Any estimation for solr 4.3?

2013-05-02 Thread Andy Lester
On May 2, 2013, at 3:36 AM, Jack Krupansky j...@basetechnology.com wrote: RC4 of 4.3 is available now. The final release of 4.3 is likely to be within days. How can I see the Changelog of what will be in it? Thanks, xoa -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Any estimation for solr 4.3?

2013-05-02 Thread Andy Lester
what is currently pending to go in 4.3? -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Any estimation for solr 4.3?

2013-05-02 Thread Andy Lester
somewhere that describes the process set up? -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Any estimation for solr 4.3?

2013-05-02 Thread Andy Lester
This is how the dev process works. -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Solr indexing

2013-04-18 Thread Andy Lester
nothing of timezones. Solr expects everything is in UTC. If you want time zone support, you'll have to convert local time to UTC before importing, and then convert back to local time from UTC when you read from Solr. xoa -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Top 10 Terms in Index (by date)

2013-04-02 Thread Andy Pickler
in a table or something. Thanks, Andy Pickler On Tue, Apr 2, 2013 at 7:16 AM, Tomás Fernández Löbbe tomasflo...@gmail.com wrote: Oh, I see, essentially you want to get the sum of the term frequencies for every term in a subset of documents (instead of the document frequency as the FacetComponent

Top 10 Terms in Index (by date)

2013-04-01 Thread Andy Pickler
as to whether I'm headed in the right direction and then what my query would be? Thanks, Andy Pickler

Re: Top 10 Terms in Index (by date)

2013-04-01 Thread Andy Pickler
out faceting like you mentioned as well as the TermsComponent (which as I understand also only counts documents). Thanks, Andy Pickler On Mon, Apr 1, 2013 at 4:31 PM, Tomás Fernández Löbbe tomasflo...@gmail.com wrote: So you have one document per user comment? Why not use faceting plus filtering

Re: [ANNOUNCE] Solr wiki editing change

2013-03-28 Thread Andy Lester
-time step. Please add my username, AndyLester, to the approved editors list. Thanks. -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Facets with 5000 facet fields

2013-03-21 Thread Andy
What do I need to do to use this new per segment faceting method? From: Mark Miller markrmil...@gmail.com To: solr-user@lucene.apache.org Sent: Wednesday, March 20, 2013 1:09 PM Subject: Re: Facets with 5000 facet fields On Mar 20, 2013, at 11:29 AM, Chris

Re: Facets with 5000 facet fields

2013-03-21 Thread Andy
-user@lucene.apache.org Sent: Thursday, March 21, 2013 9:04 AM Subject: Re: Facets with 5000 facet fields as was said below, add facet.method=fcs to your query URL. Upayavira On Thu, Mar 21, 2013, at 09:41 AM, Andy wrote: What do I need to do to use this new per segment faceting method

Re: Facets with 5000 facet fields

2013-03-20 Thread Andy
Hoss, What about the case where there's only a small number of fields (a dozen or two) but each field has hundreds of thousands or millions of values? Would Solr be able to handle that? From: Chris Hostetter hossman_luc...@fucit.org To:

Re: Facets with 5000 facet fields

2013-03-20 Thread Andy
? From: Toke Eskildsen t...@statsbiblioteket.dk To: solr-user@lucene.apache.org solr-user@lucene.apache.org; Andy angelf...@yahoo.com Sent: Wednesday, March 20, 2013 4:06 AM Subject: Re: Facets with 5000 facet fields On Wed, 2013-03-20 at 07:19 +0100, Andy wrote: What about the case where

Re: Importing datetime

2013-03-19 Thread Andy Lester
need to do is use a date formatting function in your SELECT out of the MySQL database to get the date into the format that MySQL likes. See https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format xoa -- Andy Lester = a...@petdance.com = www.petdance.com

Re: How can I limit my Solr search to an arbitrary set of 100,000 documents?

2013-03-12 Thread Andy Lester
that their next search-within-a-list will have those new results. Andy -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: [Beginner] wants to contribute in open source project

2013-03-11 Thread Andy Lester
for newcomers to help on?) but I hope that you'll get some ideas. xoa -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

How can I limit my Solr search to an arbitrary set of 100,000 documents?

2013-03-08 Thread Andy Lester
://lucene.472066.n3.nabble.com/Search-within-a-subset-of-documents-td1680475.html Thanks, Andy -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: How to use SolrCloud in multi-threaded indexing

2013-02-04 Thread andy
Thanks man -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-use-SolrCloud-in-multi-threaded-indexing-tp4037641p4038481.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to use SolrCloud in multi-threaded indexing

2013-02-04 Thread andy
Thanks man -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-use-SolrCloud-in-multi-threaded-indexing-tp4037641p4038482.html Sent from the Solr - User mailing list archive at Nabble.com.

How to use SolrCloud in multi-threaded indexing

2013-01-31 Thread andy
Hi, I am going to upgrade to solr 4.1 from version 3.6, and I want to set up to shards. I use ConcurrentUpdateSolrServer to index the documents in solr3.6. I saw the api CloudSolrServer in 4.1,BUT 1:CloudSolrServer use the LBHttpSolrServer to issue requests,but * LBHttpSolrServer should NOT be

Re: custom solr sort

2013-01-07 Thread andy
? There may be other ways of achieving the same thing. Upayavira On Sun, Jan 6, 2013, at 01:32 AM, andy wrote: Hi, Maybe this is an old thread or maybe it's different with previous one. I want to custom solr sort and pass solr param from client to solr server, so I implemented SearchComponent

custom solr sort

2013-01-05 Thread andy
=com.tianji.solr.handler.component.MySortComponent/ requestHandler name=/mysearch class=solr.SearchHandler arr name=last-components strmySortComponent/str /arr /requestHandler Thanks Andy -- View this message in context: http://lucene.472066.n3.nabble.com/custom-solr-sort-tp4031014.html Sent from the Solr - User mailing

Re: Pause and resume indexing on SolR 4 for backups

2012-12-21 Thread Andy D'Arcy Jewell
be a must sooner or later. -- Andy D'Arcy Jewell SysMicro Limited Linux Support T: 0844 9918804 M: 07961605631 E: andy.jew...@sysmicro.co.uk W: www.sysmicro.co.uk

Pause and resume indexing on SolR 4 for backups

2012-12-20 Thread Andy D'Arcy Jewell
unavailability of SolR, probably by displaying a down for maintenance message, but this should preferably be only a very short amount of time. Can anyone comment on my proposed solutions above, or provide any additional ones? Thanks for any input you can provide! -Andy -- Andy D'Arcy Jewell SysMicro

Re: Pause and resume indexing on SolR 4 for backups

2012-12-20 Thread Andy D'Arcy Jewell
to a web-app, which accepts uploads and will be available 24/7, with a global audience, so pausing it may be rather difficult (tho I may put this to the developer - it may for instance be possible if he has a small number of choke points for input into SolR). Thanks. -- Andy D'Arcy Jewell

Re: Pause and resume indexing on SolR 4 for backups

2012-12-20 Thread Andy D'Arcy Jewell
or prevent commits during the backup (otherwise we have a potential race condition). -Andy -- Andy D'Arcy Jewell SysMicro Limited Linux Support E: andy.jew...@sysmicro.co.uk W: www.sysmicro.co.uk

Re: Pause and resume indexing on SolR 4 for backups

2012-12-20 Thread Andy D'Arcy Jewell
solr) 2. Remove all files under /var/lib/solr/data/index/ 3. Move/copy files from /tmp/snapshot.20121220155853703/ to /var/lib/solr/data/index/ 4. Restart Tomcat (or just solr) Thanks everyone who's pitched in on this! Once I've got this working, I'll document it. -Andy -- Andy D'Arcy Jewell

Re: solr searchHandler/searchComponent for query statistics

2012-12-06 Thread Andy Lester
in aggregate about queries over time? Or for giving statistics about individual queries, like time breakouts for benchmarking? For the latter, you want debugQuery=true and you get a raft of stats down in lst name=debug. xoa -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Backing up SolR 4.0

2012-12-04 Thread Andy D'Arcy Jewell
remaining reference to the data, it's not deleted... Thanks once again! -Andy -- Andy D'Arcy Jewell SysMicro Limited Linux Support E: andy.jew...@sysmicro.co.uk W: www.sysmicro.co.uk

Backing up SolR 4.0

2012-12-03 Thread Andy D'Arcy Jewell
the data files won't do... Can anyone give me a pointer to that easy-to-find document I have so far failed to find? Or failing that, maybe some sound advice on how to proceed? Regards, -Andy -- Andy D'Arcy Jewell SysMicro Limited Linux Support E: andy.jew...@sysmicro.co.uk W

Re: Backing up SolR 4.0

2012-12-03 Thread Andy D'Arcy Jewell
-time which would be required to regenerate the indexes from scratch? Regards, -Andy -- Andy D'Arcy Jewell SysMicro Limited Linux Support E: andy.jew...@sysmicro.co.uk W: www.sysmicro.co.uk

Re: Permanently Full Old Generation...

2012-11-30 Thread Andy Kershaw
(build 23.5-b02, mixed mode) We are currently running more tests but it takes a while before the issues become apparent. Andy Kershaw On 29 November 2012 18:31, Walter Underwood wun...@wunderwood.org wrote: Several suggestions. 1. Adjust the traffic load for about 75% CPU. When you hit 100

Re: Permanently Full Old Generation...

2012-11-29 Thread Andy Kershaw
Thanks for responding Shawn. Annette is away until Monday so I am looking into this in the meantime. Looking at the times of the Full GC entries at the end of the log, I think they are collections we started manually through jconsole to try and reduce the size of the old generation. This only

Re: stopwords in solr

2012-11-27 Thread Andy Lester
. There are not really any sensible defaults for stopwords, so Solr doesn't provide them. Just add them to the stopwords.txt and reindex your core. xoa -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

How do I best detect when my DIH load is done?

2012-11-19 Thread Andy Lester
or interface that I should be using instead? Thanks, xoa -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Cacti monitoring of Solr and Tomcat

2012-11-19 Thread Andy Lester
/viewtopic.php?f=12t=19744start=15 It looks promising although it doesn't monitor Solr itself. Suggestions? Thanks, Andy -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

Re: Cacti monitoring of Solr and Tomcat

2012-11-19 Thread Andy Lester
mighty tasty, but we must have it in-house on our own servers, for monitoring internal dev systems, and we'd like it to be open source. We already have Cacti up and running, but it's possible we could use something else. -- Andy Lester = a...@petdance.com = www.petdance.com = AIM:petdance

  1   2   3   >