Re: facet query

2012-12-26 Thread Billy Newman
Again I am interested in hierarchical faceting as explained here: http://wiki.apache.org/solr/HierarchicalFaceting Again looking for anyone that has experience with PathHierarchyTokenizerFactory and Pivot Faceting to help me choose the 'best' solution. PathHierarchyTokenizerFactory seems to be ea

Re: DIH update?

2012-10-26 Thread Billy Newman
DIH. Again I do not believe that this functionality exists (I cannot get it to work with my simple example). Just wondering if anyone had thought about plans in the future. Thanks, Billy On Thu, Oct 25, 2012 at 9:46 PM, Gora Mohanty wrote: > On 26 October 2012 08:51, Billy Newman wrote:

DIH update?

2012-10-25 Thread Billy Newman
Any plans on adding update functionality to DIH?

Field in DataConfig not in Solr Schema

2012-10-25 Thread Billy Newman
I am using columns in my DataConfig specifically to grab them later as a template. i.e. Where stuff is the field I want to index, but all stuff is just a temporary column used such that I can get at it via the template transformer. 'stuff' is in my schema 'allStuff' is not. I get the followi

Re: Query all fields

2012-10-24 Thread Billy Newman
Makes sense, thanks! Billy Sent from my iPhone On Oct 24, 2012, at 4:25 PM, Ahmet Arslan wrote: > >> Looking at the Solr tutorial I see >> queries like: >> >> q=video&fl=name,id (return only name and id fields) >> >> Does that query all fields for the word video? > > No query is executed

Index polygon/bbox with DIH

2012-10-20 Thread Billy Newman
Hey guys, Just started using Solr 4 and my main use case involves indexing bounding boxes/polygons. I have a pretty small dataset and am currently using the DIH (URLDatasource) to index my XML. Part of my XML comes back as minx, miny, maxx, maxy. Is it possible to index my bbox using the DIH?

Re: Solr-4.0.0 DIH not indexing xml attributes

2012-10-20 Thread Billy Newman
; Is it possible to post the whole DIH script? > > ----- Original Message - > | From: "Billy Newman" > | To: solr-user@lucene.apache.org > | Sent: Friday, October 19, 2012 9:06:08 AM > | Subject: Solr-4.0.0 DIH not indexing xml attributes > | > | Hello

Solr-4.0.0 DIH not indexing xml attributes

2012-10-19 Thread Billy Newman
Hello all, I am having problems indexing xml attributes using the DIH. I have the following xml: However nothing is getting inserted into my index. I am pretty sure this should work so I have no idea what is wrong. Can anyone else confirm that this is a problem? Or is it just me? Thanks

Re: Custom html headers/footers to solr admin console

2012-10-11 Thread Billy Newman
purely intended for developers/in-house use. Mostly I just > want to be sure you aren't thinking about letting users, say, see > this page. Consider > /update?stream.body=*:* > > Best > Erick > > On Thu, Oct 11, 2012 at 4:57 PM, Billy Newman wrote: >> Hello all,

Re: One index or multiple?

2012-10-07 Thread Billy Newman
if > 1> you have deletes in your DB > 2> you have no way of deleting _just_ those >documents that correspond to the rows >you've deleted > Otherwise, if you could delete only the docs that > correspond to the deleted rows in your DB, then > your data view w

Re: One index or multiple?

2012-10-07 Thread Billy Newman
hanges from any other one. It would be much less > confusing to run them separately. > > wunder > > On Oct 6, 2012, at 2:30 PM, Erick Erickson wrote: > >> Sure, you need to define the appropriate delete query for each DIH entry. >> >> Best >> Erick >> >> On

Re: One index or multiple?

2012-10-05 Thread Billy Newman
you set it to "false" >> _and_ assuming that your is >> defined, it should work OK. >> >> The other approach would be to control the >> indexing of your XML from, say, a SolrJ program >> combined with a cron job >> >> Does that work? >

Re: One index or multiple?

2012-10-05 Thread Billy Newman
solr/FieldCollapsing > > By including a type, you an also do nifty things like delete all the > records for a particular type by query. > > Best > Erick > > > On Fri, Oct 5, 2012 at 11:22 AM, Billy Newman wrote: >> I am looking into Solr to index a few of my data sets

DIH - ssl/https support

2012-10-01 Thread Billy Newman
I am trying to hit a an https url from the DIH and am having problems. Basically I would like to give the DIH my server certificate (since it is really the server that is running the DIH) to use to query my https URL. Currently the DIH throws exceptions when trying to request the https URL. Any

Deploying and securing Solr war in JBoss AS

2012-10-01 Thread Billy Newman
I am struggling with how to protect the Solr URLs (esp. the admin page(s)) when I deploy solr to JBoss. I know that I can extract the web.xml from the war and mess with that, but was wondering if there was a way to deploy the war as-is and modify some JBoss config file to protect that wars URL(s).

Re: DIH - importing XML with nested elements that have the same name

2012-09-26 Thread Billy Newman
nothing about using '//' in a forEach attribute. Any suggestions? Thanks, Billy On Wed, Sep 26, 2012 at 10:59 AM, Billy Newman wrote: > Hello all, > > I am running solr 4.0.0-BETA and I am running into an issue when > trying to import an XML document in which I want forEach

DIH - importing XML with nested elements that have the same name

2012-09-26 Thread Billy Newman
Hello all, I am running solr 4.0.0-BETA and I am running into an issue when trying to import an XML document in which I want forEach to pull from nested elements with the same element name. doc example: 1 Item 1 2

DIH - 'url' element in 'entity' does not work with url parameters

2012-09-25 Thread Billy Newman
Hello All. I am trying to configure the DIH to import XML data from a URL. The url attribute contains parameters in he link and I cannot get it to work. http://test.org/data?version=1.0&type=test"; processor="XPathEntityProcessor"