Thanks David,
I have updated the wiki documentation
http://wiki.apache.org/solr/DataImportHandler#transformer
The default transformers do not have any special privilege it is like
any normal user provided transformer.We just identified some commonly
found usecases and added transformers for that.
The wiki didn't mention I can specify multiple transformers. BTW, it's
"transformer" (singular), not "transformers". I did mean both NFT and DFT
because I was speaking of the general case, not just mine in particular. I
thought that the built-in transformers were always in-effect and so I
expec
Hi David,
I think you meant RegexTransformer instead of NumberFormatTransformer.
Anyhow, the order in which the transformers are applied is the same as the
order in which you specify them.
So make sure your entity has
transformers="RegexTransformer,DateFormatTransformer".
On Thu, Oct 16, 2008 at
I'm trying out the dataimport capability. I have a column that is a series
of dates separated by spaces like so:
"1996-00-00 1996-04-00"
And I'm trying to import it like so:
However this fails and the stack trace suggests it is first trying to apply
the dateTimeFormat before splitBy. I think t