Loaders and UDFs are all initialized at the compilation phase, so you can't
pass dynamically calculated values in (you can do some things by
pre-calculating constants like current time, etc, using variable binding
via the define keyword, but you are trying to do something far more fancy).
Moreover
Or is it only possible to execute the load function at the beginning the
script? Otherwise it should be theoretical possible to handover information
that are created while the programm is running.
2013/9/17 John
> Hi,
>
> Im using Pig+Hbase. I try to create a Pig programm that looks like this:
>
Hi,
Im using Pig+Hbase. I try to create a Pig programm that looks like this:
MY_BLOOMFILTER = load 'hbase://bloomfilterTable' using ..."
... // do something to transform it to a DataByteArray
Now I want to load data outside of hbase based on the bloomfilter, therefor
I've build my own LoadFunct