Chris Hostetter | 1 Jul 2011 01:12

Re: Taxonomy faceting


: Lucid Imagination did a webcast on this, as far as I remember?

that was me ... the webcast was a pre-run of my apachecon talk...

http://www.lucidimagination.com/why-lucid/webinars/mastering-power-faceted-search
http://people.apache.org/~hossman/apachecon2010/facets/

...taxonomy stuff comes up ~slide 30

: The '1/topics/computing'-solution works at a single level, so if you are
: interested in a multi-level result like

if you want to show the whole tree when facetig you can just leave the 
"depth" number prefix out of terms, thta should work fine (but i haven't 
though about hard)

: > Are there better ways to achieve this?
: 
: Taxonomy faceting is a bit of a mess right now, but it is also an area
: where a lot is happening. For SOLR, there is

right, some of which i havne't been able to keep up on and can't comment 
on -- but in my experience if you are serious organizing your data in a 
taxonomy then you probably already have some data structure in your 
application layer that models the whole thing in memory, and maps nodeIds 
to nodeLabels and what not.  What usually works fine is to just index the 
nodeIds for the entire ancestory of the category each Document is in can 
work fine for the filtering (ie: fq=cat:1234), and to generate the facet 
presentation you do a simple facet.field=ancestorCategories&facet.limit=-1 
(Continue reading)

GAURAV PAREEK | 1 Jul 2011 01:49
Picon

Uninstall Solr

Hi All,

How to *uninstall* Solr completely ?

Any help will be appreciated.

Regards,
Gaurav
Erik Hatcher | 1 Jul 2011 02:10
Picon

Re: Uninstall Solr

How'd you install it?

Generally you just delete the directory where you "installed" it.  But you might be deploying solr.war in a
container somewhere besides Solr's example Jetty setup, in which case you need to undeploy it from those
other containers and remove the remnants.

Curious though... why uninstall it?  Solr makes a mighty fine hammer to have around :)

	Erik

On Jun 30, 2011, at 19:49 , GAURAV PAREEK wrote:

> Hi All,
> 
> How to *uninstall* Solr completely ?
> 
> Any help will be appreciated.
> 
> Regards,
> Gaurav

Romi | 1 Jul 2011 08:42
Picon

Re: How to optimize solr indexes

when i run as : deltaimport?command=delta-import&optimize=false 

But i am still getting optimize=true when i look at admin console which is
in my original post

-----
Thanks & Regards
Romi
--
View this message in context: http://lucene.472066.n3.nabble.com/How-to-optimize-solr-indexes-tp3125293p3128424.html
Sent from the Solr - User mailing list archive at Nabble.com.

Romi | 1 Jul 2011 08:48
Picon

Re: MergerFacor effect on indexes

To see the changes i am deleting my old indexes and recreating them but still
getting the same result :(

-----
Thanks & Regards
Romi
--
View this message in context: http://lucene.472066.n3.nabble.com/MergerFacor-effect-on-indexes-tp3125146p3128432.html
Sent from the Solr - User mailing list archive at Nabble.com.

nilay.tiw@gmail.com | 1 Jul 2011 09:28
Picon

Re: Solr Clustering For Multiple Pages

Hi  

I am asking about the  filter after clustering . Faceting   is based on the
single field so,if we need to filter we can search in related field .  But
in clustering it is created by multiple field  then how can we create a
filter for that.

Example 

after clusetring you get the following  

Model(20)
System(15)
Other Topics(5)

if i will click on Model then i should get  record associated with Model

Regards
Nilay Tiwari

-----
Regards
Nilay Tiwari
--
View this message in context: http://lucene.472066.n3.nabble.com/Solr-Clustering-For-Multiple-Pages-tp3085507p3128493.html
Sent from the Solr - User mailing list archive at Nabble.com.

Stanislaw Osinski | 1 Jul 2011 09:35
Favicon
Gravatar

Re: Solr Clustering For Multiple Pages

>
> I am asking about the  filter after clustering . Faceting   is based on the
> single field so,if we need to filter we can search in related field .  But
> in clustering it is created by multiple field  then how can we create a
> filter for that.
>
> Example
>
> after clusetring you get the following
>
> Model(20)
> System(15)
> Other Topics(5)
>
> if i will click on Model then i should get  record associated with Model
>

I'm not sure what you mean by "filter" -- ids of documents belonging to each
cluster are part of the response, see the "docs" array inside the cluster
(see http://wiki.apache.org/solr/ClusteringComponent#Quick_Start for example
output). When the user clicks a cluster, you just need to show the documents
with ids specified inside the cluster the user clicked.

Cheers,

Staszek
Stanislaw Osinski | 1 Jul 2011 09:45
Favicon
Gravatar

Re: Multicore clustering setup problem

Hi Walter,

That makes sense, but this has always been a multi-core setup, so the paths
> have not changed, and the clustering component worked fine for core0. The
> only thing new is I have fine tuned core1 (to begin implementing it).
> Previously the solrconfig.xml file was very basic. I replaced it with
> core0's solrconfig.xml and made very minor changes to it (unrelated to
> clustering) - it's a nearly identical solrconfig.xml file so I'm surprised
> it doesn't work for core1.
>

I'd probably need to take a look at the whole Solr dir you're working with,
clearly there's something wrong with the classpath of core1.

Again, I'm wondering if perhaps since both cores have the clustering
> component, if it should have a shared configuration in a different file
> used
> by both cores(?). Perhaps the duplicate clusteringComponent configuration
> for both cores is the problem?
>

I'm not an expert on Solr's internals related to core management, but I once
did configure two cores with search results clustering, where clustering
configuration and <lib>s were specified for each core separately, so this is
unlikely to be a problem. Another approach would be to put all the JARs
required for clustering in a common directory and point Solr to that lib
using the sharedLib attribute in the <solr> tag:
http://wiki.apache.org/solr/CoreAdmin#solr. But it really should work both
ways.

(Continue reading)

Stanislaw Osinski | 1 Jul 2011 09:48
Favicon
Gravatar

Re: How to use solr clustering to show in search results

The "docs" array contained in each cluster contains ids of documents
belonging to the cluster, so for each id you need to look up the document's
content, which comes earlier in the response (in the response/docs array).

Cheers,

Staszek

On Thu, Jun 30, 2011 at 11:50, Romi <romijain3186 <at> gmail.com> wrote:

> wanted to use clustering in my search results, i configured solr for
> clustering and i got following json for clusters. But i am not getting how
> to use it to show in search results. as corresponding to one doc i have
> number of fields and up till now i am showing name, description and id. now
> in clusters i have labels and doc id. then how to use my docs in clusters,
> i
> am really confused what to do Please reply.
>
> *
> "clusters":[
>
>            {
>                   "labels":[
>                       "Complement any Business Casual or Semi-formal
> Attire"
>                    ],
>                   "docs":[
>                        "7799",
>                        "7801"
>                    ]
(Continue reading)

gauravpareek2009 | 1 Jul 2011 10:41
Picon

Re: Uninstall Solr

Hello Erik,
thank u for ur help.

I understand that we need to delete the folder but how undeploy the solr.war and where i can find it.
If anyone can send me the document to "unisnatll solr software" will be great.

Regards,
Gaurav Pareek
----------
Sent via Nokia Email

------Original message------
From: Erik Hatcher <erik.hatcher <at> gmail.com>
To: <solr-user <at> lucene.apache.org>
Date: Thursday, June 30, 2011 8:10:48 PM GMT-0400
Subject: Re: Uninstall Solr

How'd you install it?

Generally you just delete the directory where you "installed" it.  But you might be deploying solr.war in a
container somewhere besides Solr's example Jetty setup, in which case you need to undeploy it from those
other containers and remove the remnants.

Curious though... why uninstall it?  Solr makes a mighty fine hammer to have around :)

	Erik

On Jun 30, 2011, at 19:49 , GAURAV PAREEK wrote:

> Hi All,
(Continue reading)


Gmane