Re: DataByteArray as Input in Load Function

2013-09-23 Thread Dmitriy Ryaboy
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

Re: DataByteArray as Input in Load Function

2013-09-17 Thread John
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: >

DataByteArray as Input in Load Function

2013-09-17 Thread John
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