Um, yes this works.
On Fri, Jun 12, 2009 at 11:12 AM, Jeff Rodenburg
wrote:
> If I want to run the stable 1.3 release and the nightly build under the
> same Tomcat instance, should that be configured as multiple solr
> applications, or is there a different configuration to follow?
>
If I want to run the stable 1.3 release and the nightly build under the same
Tomcat instance, should that be configured as multiple solr applications, or
is there a different configuration to follow?
;? I don't mind adding a few more comments to the
> discussion I already started on CodePlex.
>
> \peter
>
> -Original Message-
> From: Jeff Rodenburg [mailto:[EMAIL PROTECTED]
> Sent: 24. januar 2008 20:59
> To: solr-user@lucene.apache.org
> Subject: Re: Getting So
Hey Peter - if you could submit your changes as an svn patch, we could apply
the update much faster.
thanks,
jeff
On Jan 23, 2008 2:42 AM, Peter Thygesen <[EMAIL PROTECTED]> wrote:
> I wrote a small client in .Net which query Solr and dumps the result on
> screen.. fantastic low-tech.. ;)
>
>
On Jan 23, 2008 1:29 PM, Chris Harris <[EMAIL PROTECTED]> wrote:
>
> >>> And then if you're using
> a client such as solrsharp, there's the question of whether *it* will
> slurp the whole stream into memory.
>
>
Solrsharp reads of the XML stream from Solr use standard dotnet framework
XML objects,
gt; Thx,
> Peter
>
> -Original Message-
> From: Jeff Rodenburg [mailto:[EMAIL PROTECTED]
> Sent: 18. januar 2008 03:24
> To: solr-user@lucene.apache.org
> Subject: Re: Getting SolrSharp to work
>
> Thanks for the updates Peter. Can you pass along your Solr instance
>
Thanks for the updates Peter. Can you pass along your Solr instance
information?
thanks,
jeff r.
On Jan 17, 2008 7:22 AM, Peter Thygesen <[EMAIL PROTECTED]> wrote:
> Version solrsharp-Dec-30-2007.zip
>
> I had to make a few changes to get this version to work. Here is what I
> did.
>
> ---
Hi Peter -
Hmm, not sure what's going on here. Please take a look in the
SolrConfigurationSection class, which sets the Culture setting.
thanks,
jeff r.
On Jan 17, 2008 6:05 AM, Peter Thygesen <[EMAIL PROTECTED]> wrote:
> Norwegian and danish letters like "ÆØÅ" are messed up when indexing us
OK, this simplifies things greatly. For C#, the proper culture setting for
interaction with Solr should be Invariant.
Basically, the primary requirement for Solrsharp is to be
"culturally-consistent" with the targeted Solr server to ensure proper
data-type formatting. Since Solr is culturally-ag
Thanks for the comments Hoss. More notes embedded below...
On 10/17/07, Chris Hostetter <[EMAIL PROTECTED]> wrote:
>
>
> : However, SolrSharp culture settings should be reflective and consistent
> with
> : the solr server instance's culture. This leads to my question: does
> Solr
> : control its
We discovered and verified an issue in SolrSharp whereby indexing and
searching can be disrupted without taking Windows globalization & culture
settings into consideration. For example, European cultures affect numeric
and date values differently from US/English cultures. The resolution for
this
ent that was using a non-invariant number format, but can this also
> happen on Solr's side? If so, I guess I may need to configure it
> somewhere...
>
> Cheers,
> Filipe Correia
>
> On 10/10/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> > Hi Felipe -
>
Hi Felipe -
The issue you're encountering is a problem with the data format being passed
to the solr server. If you follow the stack trace that you posted, you'll
notice that the solr field is looking for a value that's a float, but the
passed value is "1,234".
I'm guessing this is caused by one
Yes, that would be the right solution. I'm not sure if, in order to use
french culture settings on xp, you would require corresponding changes in
culture settings for the solr instance.
Hope this helps.
-- j
On 9/24/07, JP Genty - LibertySurf <[EMAIL PROTECTED]> wrote:
>
>
> I use solrsharp
It may be off-topic, but it's friday and thought all the java coders would
appreciate today's dilbert. (I'm not primary a java dev, but I know the
feeling)
http://www.dilbert.com/comics/dilbert/archive/dilbert-20070907.html
cheers,
jeff r.
Solrsharp now supports query debugging. This is enabled through the
debugQuery and explainOther parameters.
A DebugResults object is referenced by a SearchResults instance and provides
all the debugging information that is available through these parameters,
such as:
- QueryString and ParsedQ
A big update was just posted to the Solrsharp project. This update now
provides for first-class support for highlighting in the library.
The implementation is really robust and provides the following features:
- Structured highlight parameter assignment based on the SolrField
object
- F
ould help me out a
> great deal.
>
> As for the highlighting, did you have any ideas about a good way to go
> about it? I was thinking about taking a stab at it, but I want to get
> your input first.
>
>
> Thanks,
> Charlie
>
>
> -Original Message-
> F
Pull down the latest example code from
http://solrstuff.org/svn/solrsharpwhich includes adding facets to
search results. It's really short and
simple to add facets; the example application implements one form of it.
The nice thing about the facet support is that it utilizes generics to allow
you t
Thanks for the comments, Charlie.
No, you didn't miss anything with the highlight results. It hasn't been
implemented yet. :-/
The first implementation was quite janky, and was consequently removed. I'm
adding an issue in JIRA about implementing highlighted fields. (
https://issues.apache.org/
Not sure if this would help you, but we encountered java heap OOM issues
with 1.1 earlier this year. We patched solr with the latest bits at the
time, which included a lucene memory fix for java heap OOM issues. (
http://issues.apache.org/jira/browse/LUCENE-754)
Different servlet container (Tomc
As an example, consider the following:
Two questions:
1) Is the definition of the source attribute for a copyField node that
would work as a dynamicField node valid?
2) Is the dest attribute for a copyField node required to be implemented
as a node? Could it be a dynamic field? For exampl
As an example, consider the following:
Two questions:
1) Is the definition of the source attribute for a copyField node that would
work as a dynamicField node valid?
2) Is the dest attribute for a copyField node required to be implemented as
a node? Could it be a dynamic field? For example
I've been asked a few questions of late that all have a familiar theme:
what's going on with solrsharp development? Well, I've been working on the
next iteration of the Solrsharp client library, attempting to bring it more
in line with the capabilities of Solr, at least as of the 1.2 release. Th
Thanks Ryan. Comments below.
On 7/5/07, Ryan McKinley <[EMAIL PROTECTED]> wrote:
I just took a quick look at solrsharp. I don't really have to use it
yet, so this is not an in depth review.
I like the templated SearchResults -- that seems useful.
That has proven to be extremely useful in
Nope, other than just oversight.
I just modified the QueryParameter class to change the _boost and Boost
variable & property to type float, and all works well. I'll log an issue in
JIRA and update the source.
thanks otis,
jeff
On 7/5/07, Otis Gospodnetic <[EMAIL PROTECTED]> wrote:
Hi,
He
On 7/3/07, Walter Underwood <[EMAIL PROTECTED]> wrote:
The Atom Publishing Protocol would be a good choice for a rest API to
Solr.
That comes with a spec, interop testing, and an active community.
+1
I have a search use case that requires that I use the results of search from
IndexA and apply them as a query component of a second search to IndexB.
(The nature of the data doesn't allow me to combine these indexes).
At present, this is handled at the client level: search one index, get the
resul
great, thanks Yonik.
On 6/20/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 6/21/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> As an aside, it would be nice to record these issues more granularly in
> JIRA. Could we get a component created for our client library, similar
Thanks to Yonik, Michael, Ryan, (and others) for some recent help on various
issues discovered with Solrsharp. We were able to discover a few issues
with the library relative to the Solr 1.2 release. Those issues have been
remedied and have been pushed into source control.
The Solrsharp source
eldValue("timestamp",
DateTime.Now.ToString("s")+"Z")));
Regards
Michael
- Original Message -
From: "Jeff Rodenburg" <[EMAIL PROTECTED]>
To:
Sent: Wednesday, June 20, 2007 1:56 PM
Subject: Re: SolrSharp example
> On 6/20/07, Yonik Seeley <[EMA
On 6/20/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 6/20/07, Michael Plax <[EMAIL PROTECTED]> wrote:
> This is a log that I got after runnning SolrSharp example. I think
example
> program posts not properly formatted xml.
> I'm running Solr on Windows XP, Java 1.5. Are those settings could be
Hi Michael -
Moving this conversations to the general solr mailing list...
1. SolrSharp example solution works with schema.xml from
apache-solr-1.1.0-incubating.If I'm using schema.xml from
apache-solr-1.2.0 example program doesn't update index...
I didn't realize the solr 1.2 release c
rom VS solution.
Thank you,
Michael
- Original Message -
From: "Jeff Rodenburg" <[EMAIL PROTECTED]>
To:
Sent: Wednesday, June 13, 2007 3:59 PM
Subject: Update to SolrSharp
> Solrsharp has been validated against the Solr 1.2 release. Validation
was
> made using th
Solrsharp has been validated against the Solr 1.2 release. Validation was
made using the example application that's available with the Solrsharp code
against a default example index with the Solr 1.2 released bits.
- The source code for Solrsharp is now accessible via subversion. Many
thanks to
On 6/7/07, Rafael Rossini <[EMAIL PROTECTED]> wrote:
Hi, Jeff and Mike.
Would you mind telling us about the architecture of your solutions a
little bit? Mike, you said that you implemented a highly-distributed
search
engine using Solr as indexing nodes. What does that mean? You guys
implemen
Mike - thanks for the comments. Some responses added below.
On 6/7/07, Mike Klaas <[EMAIL PROTECTED]> wrote:
I've implemented a highly-distributed search engine using Solr (200m
docs and growing, 60+ servers). It is not a Solr-based solution in
the vein of FederatedSearch--it is a higher-le
I've been exploring distributed search, as of late. I don't know about the
"next solr" but I could certainly see a "distributed solr" grow out of such
an expansion.
In terms of the FederatedSearch wiki entry (updated last year), has there
been any progress made this year on this topic, at least
David -
It depends on what "distributed" means in your question.
If you're looking for high availability, that can be accomplished through
typical load balancing schemes for the servlet container that's running
solr. Solr helps out in this respect with a replication scheme using rsync
that keep
We're controlling this with Tomcat configuration on our end. I'm not a
servlet-container guru, but I would imagine similar capabilities exist on
Jetty, et al.
-- j
On 5/24/07, Ryan McKinley <[EMAIL PROTECTED]> wrote:
Is there a good way to force an index to be read-only?
I could configure a
I sent a few messages to the list about Solrsharp, the C# library for
working with Solr, a couple of weeks ago. This was the first iteration of
the library and something I expected to see modified as others got a chance
to review it. I've not heard any feedback since then, though.
For those tha
Not yet from us, but I'm thinking about a nagios plugin for Solr. It would
be tomcat-based for the http stuff, however.
On 4/18/07, Walter Underwood <[EMAIL PROTECTED]> wrote:
Is there a good spot to track request rate in Solr? Has anyone
built a monitor?
wunder
--
Search Guru
Netflix
to the Solr team too.
I am looking forward to using Solr and Solr# in the coming months. Your
client is going to be a great help.
regards,
-jim
On 4/9/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
>
> All -
>
> I'm proud to announce a release to a new client API for So
All -
I'm proud to announce a release to a new client API for Solr -- SolrSharp.
SolrSharp is a C# library that abstracts the interoperation of a solr search
server. This is an initial release that covers the basics of working with
Solr. The library is very fleshed out, but the example has only
Otis
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Simpy -- http://www.simpy.com/ - Tag - Search - Share
- Original Message
From: Jeff Rodenburg <[EMAIL PROTECTED]>
To: solr-user@lucene.apache.org
Sent: Friday, April 6, 2007 11:16:28 AM
Subject: Re: Question about code contribution
Whoops, typo: "...do the source c
I prefer B.
Whoops, typo: "...do the source code files need to contain the boilerplate
Apache license."
On 4/6/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
If I'm contributing new source files (separate project entirely) through
JIRA, so the source code files need to contain t
If I'm contributing new source files (separate project entirely) through
JIRA, so the source code files need to contain the boilerplate Apache
license/disclaimers and the like? This is new code and a new project (C#),
and the wiki page on contributions (
http://wiki.apache.org/solr/HowToContribut
happy with
this C# client.
grts,m
"Jeff Rodenburg" <[EMAIL PROTECTED]>
31/03/2007 18:00
Please respond to
solr-user@lucene.apache.org
To
solr-user@lucene.apache.org
cc
Subject
C# API for Solr
We built our first search system architecture around Lucene.Net back in
This one caught us as well.
Refer to
http://lucene.apache.org/java/docs/queryparsersyntax.html#Escaping%20Special%20Charactersfor
understanding what characters need to be escaped for your queries.
On 4/4/07, galo <[EMAIL PROTECTED]> wrote:
Hi,
I have an index consisting on the following fie
Whenever I've encountered this, the cause has nearly always been starting
tomcat with the proper current working directory.
I went through the example install a few weeks ago, line by line, from the
wiki page for Tomcat and it ran fine. I'm running 5.5.17, and have done
this on both FC5 and FC6.
upport on this issue.
cheers,
j
On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> Yonik - is this the JIRA entry you're referring to?
>
> http://issues.apache.org/jira/browse/LUCENE-754
Yes. But from the heap dump
Yonik - is this the JIRA entry you're referring to?
http://issues.apache.org/jira/browse/LUCENE-754
On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> We are doing incremental updates, and we optimize quite
Major version is 1.0. The bits are from a nightly build from early
September 2006.
We do have plans to upgrade solr soon.
On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> We are doing incremental updates, and we optim
Sorry for the confusion. We do have caching disabled. I was asking the
question because I wasn't certain if the configurable cache settings applied
throughout, or if the FieldCache in lucene still came in play.
The two integer-based facets are single valued per document. The
string-based facet
ra eyes on this, much appreciated.
-- j
On 4/2/07, Mike Klaas <[EMAIL PROTECTED]> wrote:
On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> With facet queries and the fields used, what qualifies as a "large"
number
> of values? The wiki uses U.S. states as an exa
On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 4/1/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> Our scenario: 150MB index, 14 documents, read/write servers in place
> using standard replication. Running Tomcat 5.5.17 on Redhat Enterprise
> Linux 4. Java con
can use to
estimate the cache consumption rate for facet queries?
-- j
On 4/1/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
I've read through the list entries here, the Lucene list, and the wiki
docs and am not resolving a major pain point for us. We've been trying to
determine wh
Ryan - I'm working on cleanup to release this thing for the world to enjoy.
-- j
On 3/31/07, Ryan McKinley <[EMAIL PROTECTED]> wrote:
Yes yes!
On 3/31/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> We built our first search system architecture around Lucene.Net back in
What would make things consistent for the client api's is a prescribed set
of implementations for a solr release. For example, executing searches with
these parameters, support for facets requires those parameters, updates
should be called in this manner, etc. For lack of a better term, a
loosel
I've read through the list entries here, the Lucene list, and the wiki docs
and am not resolving a major pain point for us. We've been trying to
determine what could possibly cause us to hit this in our given environment,
and am hoping more eyes on this issue can help.
Our scenario: 150MB index
Good thought, Yonik. I haven't looked at the Java client, would certainly
be worthwhile. I'll move to prepping the files so they're completely
generic and can work for anyone.
One administrative question: can I contribute these files to be stored under
/lucene/solr/trunk/client? I don't have a
We built our first search system architecture around Lucene.Net back in 2005
and continued to make modifications through 2006. We quickly learned that
search management is so much more than query algorithms and indexing
choices. We were not readily prepared for the operational overhead that our
I'm curious what mechanisms everyone is using to control read/write access
for distributed replicated indexes. We're moving to a replication
environment very soon, and our client applications (quite a few) all have
configuration pointers to the URLs for solr instances. As a precaution, I
don't w
We're running solr with multiple webapps under Tomcat 5.5.17, runs fine. We
have it deployed on FC5, FC6 and RHEL4 distros. Works the same on all of
them, no blocking issues.
From a general perspective, Bertrand is correct: go with what you know as
long as it meets your needs.
On 3/9/07, Be
Jira
before and wasn't sure of the process. I decided to figure it out after
answering Gola's question this morning...then saw that Jeff had mentioned
a
similar issue last night. I apologize again for confusion over the double
entry.
Thanks,
-Graham
> -Original Message-
> Fro
This issue has been logged as:
https://issues.apache.org/jira/browse/SOLR-188
A patch file is included for those who are interested. I've unit tested in
my environment, please validate it for your own environment.
cheers,
j
On 3/5/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
Thanks Hoss. I'll add an issue in JIRA and attach the patch.
On 3/5/07, Chris Hostetter <[EMAIL PROTECTED]> wrote:
: This line assumes a single solr installation under Tomcat, whereas the
: multiple webapp scenario runs from a different location (the "/solr"
part).
: I'm sure this applies e
I noticed an issue with the optimize bash script in /bin. Per the line:
rs=`curl http://${solr_hostname}:${solr_port}/solr/update -s -d
""`
This line assumes a single solr installation under Tomcat, whereas the
multiple webapp scenario runs from a different location (the "/solr" part).
I'm sure
Now I follow. I was misreading the first comments, thinking that the field
content would be deconstructed to smaller components or pieces. Too much
(or not enough) coffee.
I'm expecting the index doc needs to be constructed with lat/long/dates in
sequential order, i.e.:
123
32.123456
Congrats to all involved committers on the project as well. Solr is an
invaluable system in my operation. Great job.
On 1/17/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
Solr has just graduated from the Incubator, and has been accepted as a
Lucene sub-project!
Thanks to all the Lucene and Solr
Yonik/Hoss -
OK, you lost me. It sounds as if this PhraseQuery-ish approach involves
breaking datetime and lat/long values into pieces, and evaluation occurs
with positioning. Is that accurate?
On 1/16/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 1/15/07, Chris Hostetter <[EMAIL PROTECTE
Nick - this depends on the analyzer used to index the field as well as the
analyzer used in your search query. This gets handled in solr with the
fieldtype and requesthandler. Referencing the sample schema.xml off the
wiki site, I would start with fieldtype="text" and go from there. If it
doesn
Thanks Hoss. Interesting approach, but the "N" bound could be well in the
hundreds, and the N bound would be variable (some maximum number, but
different across events.)
I've not yet used dynamic fields in this manner. With that number range,
what limitations could I encounter? Given the size
facet the way to go?
thanks,
jeff
On 1/12/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 1/12/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> I'm stuck with a query issue that at present seems unresolvable. Hoping
the
> community has some insight to this.
>
> My in
I'm stuck with a query issue that at present seems unresolvable. Hoping the
community has some insight to this.
My index contains events that have multiple beginning/ending date ranges and
multiple locations. For example, event A (uniqueId = 123) occurs every
weekend, sometimes in one location,
that you need to deal
with, the SynonymFilter can help you out.
: Date: Thu, 11 Jan 2007 13:30:39 -0800
: From: Jeff Rodenburg <[EMAIL PROTECTED]>
: Reply-To: solr-user@lucene.apache.org
: To: solr-user@lucene.apache.org
: Subject: WordDelimiterFilter usage
:
: I'm trying to determine
I'm trying to determine how to index/query for a certain use case, and the
WordDelimiterFilterFactory appears to be what I need to use. Here's the
scenario:
- Text field being indexed
- Field exists as a full name
- Data might be "cold play"
- This should match against searches for "cold play" a
This is good information, thanks Chris. My preference was to keep things
separate, just needed some external info from others to back me up.
thanks,
jeff
On 1/7/07, Chris Hostetter <[EMAIL PROTECTED]> wrote:
I don't know if there really are any general purpose best practices ... it
really de
I've followed a host of past threads on this subject and am trying to
determine what's best for our implementation. For those who've chimed in on
this, I think I'm just looking for a good summary (as Hoss recently
mentioned, perhaps a FAQ).
We presently have one index running under Solr/Tomcat55
What is the recommended path to deployment for replacing a solr nightly
build with another? In our scenario, we're updating our current build is
roughly 3 months old. We're updating to the latest.
Aside from replacing the bits and restarting, are there any steps that
everyone is following in ma
Outstanding, thanks.
- j
On 9/13/06, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 9/13/06, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
> Thanks for the heads up on the merchant_name. I would probably just
keep a
> dictionary in memory, but if I wanted to pull the stored merchan
Thanks Chris.
I bumped the facet.limit to 10 and it works like a charm.
Thanks for the heads up on the merchant_name. I would probably just keep a
dictionary in memory, but if I wanted to pull the stored merchant_name back,
how would/can I do that?
thanks,
j
On 9/13/06, Chris Hostetter <[EMAI
I just pulled down the nightly solr build from 9/12 and have it up and
running. I copied an index created in a solr version that's about 3 months
old.
I have a query formulated like this:
http://solrbox:8080/solr/select?q=description:dell&rows=0&facet=true&facet.limit=-1&facet.field=merchant_nam
On 9/12/06, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 9/12/06, climbingrose <[EMAIL PROTECTED]> wrote:
> I want to be able to programmatically
> submit/delete document from Java code rather than through command line.
I
> read JavaSolr page but it seems that the code isn't stable enough for
> pr
Hi Simon -
We're running Solr in production, and it's rock solid. Of course you can't
really just take an anonymous word for it, but I would honestly put this
stack up against any other system you can find, open source or commercial.
Run it for yourself and you'll be alarmed at how sound it is,
Tim -
If you can help it, I would suggest running Solr under Tomcat under Linux.
Speaking from experience in a mixed mode environment, the Linux/Tomcat/Solr
implementation just works. We're not newbies under Linux, but we're also a
native Windows shop. The memory management and system availabil
From the Tasklist wiki:
-
Simple faceted browsing (grouping) support in the standard query
handler
-
group by field (provide counts for each distinct value in that
field)
-
group by (query1, query2, query3, query4, query5)
How far/close is this task to completio
perfect, thanks Chris
On 6/27/06, Chris Hostetter <[EMAIL PROTECTED]> wrote:
: Would the query term(s) passed in a request need to be stemmed/analyzed
: outside of the request (prior to), or is that handled internally? I'm
still
: making my way through the code but need to answer that questio
Would the query term(s) passed in a request need to be stemmed/analyzed
outside of the request (prior to), or is that handled internally? I'm still
making my way through the code but need to answer that question in short
order.
cheers,
j
That's great information, thanks Bill
On 6/26/06, Bill Au <[EMAIL PROTECTED]> wrote:
I added what I considered a first draft into the solrconfig.xml wiki.
Bill
On 6/23/06, Chris Hostetter <[EMAIL PROTECTED]> wrote:
>
>
> : You can put a load balancer in front of the pool of slave servers for
O/E on the ping. Just found the adminPing config setting.
On 6/23/06, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:
Should the /admin/ping URL work on any Solr instance? i.e.,
http://solr-server:8080/solr/admin/ping? I'm seeing a 500 error.
Based on this information, it doesn't
Should the /admin/ping URL work on any Solr instance? i.e.,
http://solr-server:8080/solr/admin/ping? I'm seeing a 500 error.
Based on this information, it doesn't sound as if any failover or LB
capacity in Tomcat is being used. Is that correct?
thanks,
j
On 6/23/06, Chris Hostetter <[EMAIL PRO
I'm reading in earnest the wiki entries regarding collection distribution
and the master/slave operational basis. This is very similar to what we've
used previously in our operation based on the lucene core. We're deploying
initially on Tomcat 5.5.17, Linux RHEL 3 and the latest bits from Solr.
Thanks Chris/Yonik, don't know why I didn't see those yet.
-- j
On 5/15/06, Chris Hostetter <[EMAIL PROTECTED]> wrote:
: I was checking around the solr site and pages at apache.org and wasn't
: finding much. Before jumping into the code, I'd like to get as familiar
: with solr as I could fro
I was checking around the solr site and pages at apache.org and wasn't
finding much. Before jumping into the code, I'd like to get as familiar
with solr as I could from existing docs or the like. Can someone point me
in the direction?
thanks,
jeff r.
96 matches
Mail list logo