python-happybase / happybase

A developer-friendly Python library to interact with Apache HBase
https://happybase.readthedocs.io/
Other
611 stars 163 forks source link

the future of happybase #233

Open wbolster opened 4 years ago

wbolster commented 4 years ago

considering that:

it may be good for happybase's future if:

thoughts welcome, especially from @aiudirog (with whom i also have had recent email contact).

wbolster commented 4 years ago

i've transferred my wbolster/happybase github repository into a new python-happybase github organisation (unfortunately happybase was taken already), and i've invited @aiudirog to become a co-owner of this new github org.

aiudirog commented 4 years ago

I should have my third idea for merging the two forks (where async is the default) fleshed out by tomorrow.

With that finished, it wouldn't be very hard at all to create a happybase package that just inverts the imports of the aiohappybase package to provide the strict supperset without code duplication that could serve as a nice transition period.

aiudirog commented 4 years ago

I've finished the "sync as a sub-package" implementation: https://github.com/aiudirog/aiohappybase/pull/3

It's a little hacky in its pursuit of code dryness but I think that's okay because in theory it will nearly guarantee the two implementations don't diverge without having to code everything twice.

aiudirog commented 4 years ago

I went through the open PRs and added counters to Batch and append() to Table. Between those two changes and some of the ones I had already made, #192, #175, #125, #96, and #89 should be satisfied.

wbolster commented 4 years ago

this is fantastic, thank you for all your work