commit | 4f276fb99f0c81c786c934635fd0c6ffa324a6e9 | [log] [tgz] |
---|---|---|
author | Bharath Vissapragada <bharathv@apache.org> | Wed Jun 17 12:02:31 2020 -0700 |
committer | GitHub <noreply@github.com> | Wed Jun 17 12:02:31 2020 -0700 |
tree | 76cfabc68b9c39c976b9defc0340fed5be54dec9 | |
parent | 575a3c49df74f40e6e0204d2432899262fa7c53a [diff] |
HBASE-24538: Simplify the lifecycle of mini cluster. (#7) Cleans up unnecessary methods and moves the teardown of the mini cluster to the d'tor so that an explicit cleanup is not needed. It is not prone to the deadlocks mentioned in the jira anymore. Signed-off-by: Marc Parisi <phrocker@apache.org>
Native client for HBase
This is a C/C++ library that implements a HBase client.
Synchronous and Async versions will both be built on the same foundation. The core foundation will be C++. External users wanting a C library will have to choose either async or sync. These libraries will be thin veneers ontop of the C++.
We should try and follow pthreads example as much as possible:
All public C files will start with hbase_*.{h, cc}. This is to keep naming conflicts to a minimum. Anything without the hbase_ prefix is assumed to be implementation private.
All C apis and typedefs will be prefixed with hb_.
All typedefs end with _t.
The build environment is docker. This should keep a consistent build environment for everyone. Buck the build system works best with mmap'd files. On OSX this means that vmwarefusion works the best. However it should work with just the defaults.