David Alves wrote:
Hi ... again
In my previous mail I stated that increasing the stack size solved the
problem, well I jumped a little bit to the conclusion, in fact it
didn't, the StackOverFlowError always occurs at the end of the cycle
when no more records match the filter.
What you think is happening? Whats do you imagine as the nature of your
regex matching? Will it match the occasional row or will it match a
small clump in the middle of your table and once it leaves this clump
never match again? If the later, maybe try wrapping your regex filter
in StopRowFilter
(http://hbase.org/hbase/docs/r0.1.0/api/org/apache/hadoop/hbase/filter/StopRowFilter.html)
-- or InclusiveStopRowFilter, if thats your fancy.
St.Ack