Re: Documents auto-expiry inside a collection Solr 6.0.0

2016-05-14 Thread Hammad
Wonderful - thanks Hoss. I had only one default updateRequestProcessorChain but yes as I started with the data_driven_schema_configs configset, and modified that to include my new updateRequestProcessorChain, it's not used because; was forcing "add-unknown-fields-to-the-schema" updateRequestProce

Documents auto-expiry inside a collection Solr 6.0.0

2016-05-12 Thread Hammad
Hi Team, I followed below walkthough for auto expiry configuration https://lucidworks.com/blog/2014/05/07/document-expiration/ Each step is followed but nothing happens. I was expecting to see expiry automatically set as per multiple mechanisms configured. Does it work differently in 6.0.0 than

Re: DIH Admin Page Commands

2008-12-13 Thread Ahmed Hammad
ind opening an issue in Jira? If you have a patch, that'd be > awesome > :-) > > On Sat, Dec 13, 2008 at 8:58 PM, Ahmed Hammad wrote: > > > Hi, > > > > I would like to add a few utility commands to the DIH admin page. I > > frequently need these commands

DIH Admin Page Commands

2008-12-13 Thread Ahmed Hammad
Hi, I would like to add a few utility commands to the DIH admin page. I frequently need these commands to manage the index. The commands are: full Import, delta Import, status, reload config, ... In addition to "Return to Admin Page" link. It will be a simple forms at the end of debug.jsp as foll

Re: Regex Transformer Error

2008-11-29 Thread Ahmed Hammad
t 2:49 AM, Ahmed Hammad <[EMAIL PROTECTED]> wrote: > > Hi All, > > > > Although the HTMLStripStandardTokenizerFactory will remove HTML tags, it > > will be stored in the index and needed to be removed while searching. In > my > > case the HTML tags has no need

Re: Regex Transformer Error

2008-11-17 Thread Ahmed Hammad
<[EMAIL PROTECTED]> wrote: > There is a nice HTML stripper inside Solr. > "solr.HTMLStripStandardTokenizerFactory" > > -Original Message- > From: Ahmed Hammad [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 05, 2008 10:43 AM > To: solr-user@l

Re: DataImportHandler not indexing all the records

2008-11-15 Thread Ahmed Hammad
Thanks Shalin, I have added a new field type in my schema as following: and added my field After restarting Solr, and making full-import, everything work just fine. Many thanks. Regards, Ahmed My best wishes, Regards, Ahmed Hammad On Sat, Nov

Re: DataImportHandler not indexing all the records

2008-11-15 Thread Ahmed Hammad
I had a similar problem like Giri. I have 17,000 record in one table and DIH can import only 12464. After some investigation, I found my problem. I have a regular expression to strip off html tags form input text, as following: The DIH RegEx have stack overflow on the record 17,000 due to erro

Re: Regex Transformer Error

2008-11-06 Thread Ahmed Hammad
It worked by replace < with < and > with > Thank you for your support, ahmd On Thu, Nov 6, 2008 at 2:39 AM, Norskog, Lance <[EMAIL PROTECTED]> wrote: > There is a nice HTML stripper inside Solr. > "solr.HTMLStripStandardTokenizerFactory" > > >

Re: Regex Transformer Error

2008-11-05 Thread Ahmed Hammad
Hi, It works with the attribute regex="<(.|\n)*?>" Sorry for the disturbance. Regards, ahmd On Wed, Nov 5, 2008 at 8:18 PM, Ahmed Hammad <[EMAIL PROTECTED]> wrote: > Hi, > > I am using Solr 1.3 data import handler. One of my table fields has html > tags, I

Regex Transformer Error

2008-11-05 Thread Ahmed Hammad
Hi, I am using Solr 1.3 data import handler. One of my table fields has html tags, I want to strip it of the field text. So obviously I need the Regex Transformer. I added transformer="RegexTransformer" attribute to my entity and a new field with: Every thing works fine. The text is replace wi