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

Re: DIH update?

2012-10-26 Thread Billy Newman
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 g...@mimirtech.com wrote: On 26 October 2012 08:51, Billy Newman newman

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. field column=allStuff xpath=/foo/stuff / field column=stuff template=label:${x.allStuff} / Where stuff is the field I want to index, but all stuff is just a temporary column used such that I can get

DIH update?

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

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 iori...@yahoo.com wrote: Looking at the Solr tutorial I see queries like: q=videofl=name,id (return only name and id fields) Does that query all fields for the word video? No query is

Re: Solr-4.0.0 DIH not indexing xml attributes

2012-10-20 Thread Billy Newman
the whole DIH script? - Original Message - | From: Billy Newman newman...@gmail.com | 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 all, | | I am having problems indexing xml attributes

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?

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: root Stuff attr1=some attr attr2=another attr ... /Stuff /root I am using the following XPath for my fields: field column=attr1 xpath=/root/Stuff/@attr1 / field column=attr2

Re: Custom html headers/footers to solr admin console

2012-10-11 Thread Billy Newman
is pretty much 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=deletequery*:*/querydelete/ Best Erick On Thu, Oct 11, 2012 at 4:57 PM, Billy Newman newman...@gmail.com wrote

Re: One index or multiple?

2012-10-07 Thread Billy Newman
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 Fri, Oct 5, 2012 at 5:40 PM, Billy Newman newman...@gmail.com wrote: Does DIH support only deleting/re

Re: One index or multiple?

2012-10-07 Thread Billy Newman
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 would be consistent... Best Erick On Sun, Oct 7, 2012 at 10:00 AM, Billy Newman newman...@gmail.com wrote

Re: One index or multiple?

2012-10-05 Thread Billy Newman
the records for a particular type by query. Best Erick On Fri, Oct 5, 2012 at 11:22 AM, Billy Newman newman...@gmail.com wrote: I am looking into Solr to index a few of my data sets, 3 to be exact. The first 2 are really small xml docs retrieved via url, ~300 records each. The data

Re: One index or multiple?

2012-10-05 Thread Billy Newman
. 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? Erick On Fri, Oct 5, 2012 at 2:39 PM, Billy Newman newman...@gmail.com wrote: Erick, I did mention using the DIH to index the first two datasets

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

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

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: test item id1/id nameItem 1/name /item

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

2012-09-26 Thread Billy Newman
'//' in a forEach attribute. Any suggestions? Thanks, Billy On Wed, Sep 26, 2012 at 10:59 AM, Billy Newman newman...@gmail.com 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 to pull from nested elements

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. dataConfig dataSource type=URLDataSource / document entity name=test pk=link