Re: On startup is there a hook to start another framework?

2011-07-13 Thread Ted Dunning
At this small size (the 100 or so activities) it is unlikely to make much sense to have indexes and such. Simply reading the entire set of activities into memory, adding new ones and writing out the simplest format possible is probably as fast as any other implementation. Indexes are useful to av

RE: On startup is there a hook to start another framework?

2011-07-13 Thread Hiller, Dean x66079
Monday, July 11, 2011 1:16 PM To: user@hbase.apache.org Subject: Re: On startup is there a hook to start another framework? On Mon, Jul 11, 2011 at 8:16 AM, Hiller, Dean x66079 wrote: > 1.       How can I startup a framework in hbase? > Use coprocessors or, subclass it (the latter is

Re: On startup is there a hook to start another framework?

2011-07-11 Thread Stack
On Mon, Jul 11, 2011 at 8:16 AM, Hiller, Dean x66079 wrote: > 1.       How can I startup a framework in hbase? > Use coprocessors or, subclass it (the latter is not recommended -- it becomes a pain fast). > 2.       How can I locate the primary node the data is on and the secondary > nodes? >

On startup is there a hook to start another framework?

2011-07-11 Thread Hiller, Dean x66079
I was wondering if there was a way so we could create a function framework so when doing map/reduce over a file in our cluster, we could sort of call functionSvc.process(incomingActivityDto); so that we end up processing the dto close to the data especially since the steps are access the accoun