Re: Dynamic Scaling of Accumulo

2023-04-03 Thread Dave Marion
I could see that working initially, but I think you would get some drift over time as splits or merges happen. In your example, what happens when later someone adds splits for a - z? How would we know to mark (-inf, a] and (a, b] as HOSTED and (b,c] as ONDEMAND? In a table where the row is time

Re: Dynamic Scaling of Accumulo

2023-04-03 Thread Keith Turner
On Mon, Apr 3, 2023 at 10:45 AM Dave Marion wrote: > > Looking through the code to see what would have to change to remove the > ondemand table state, I'm struggling to find a way to implement this > without having an ondemand state. Currently, the ondemand table state is We could have tablet

Re: Dynamic Scaling of Accumulo

2023-04-03 Thread Dave Marion
Looking through the code to see what would have to change to remove the ondemand table state, I'm struggling to find a way to implement this without having an ondemand state. Currently, the ondemand table state is set in ZooKeeper as the ZTABLE_STATE and both the client and the server use it.