calrissian / accumulo-recipes

Recipes & cookbooks for Accumulo.
http://www.calrissian.org
Apache License 2.0
37 stars 18 forks source link

Implement a zookeeper implementation to house store metadata. #137

Open eawagner opened 10 years ago

eawagner commented 10 years ago

This is born out of the discussion to persist information about the version of each store ( in (#20).

cjnolet commented 10 years ago

I don't this would be very hard at all in fact with Curator it will be as simple as saying: framework.create().forPath('/calrissian/accumulorecipes/store/entitystore/version', "1.1.1".getBytes()); and new String(framework.getData().forPath('/calrissian/accumulorecipes/store/entitystore/version').getData());

I think we should reserve the /calrissian/accumulorecipes/store namespace for this. /conductor is being used for the Conductor project currently but I think I may change that to /calrissian/conductor because conductor is generic enough that it's possible someone could already be using it.