API reference¶
This chapter contains detailed API documentation for HappyBase. It is suggested to read the user guide first to get a general idea about how HappyBase works.
The HappyBase API is organised as follows:
Connection:The
Connectionclass is the main entry point for application developers. It connects to the HBase Thrift server and provides methods for table management.Table:The
Tableclass is the main class for interacting with data in tables. This class offers methods for data retrieval and data manipulation. Instances of this class can be obtained using theConnection.table()method.Batch:The
Batchclass implements the batch API for data manipulation, and is available through theTable.batch()method.ConnectionPool:The
ConnectionPoolclass implements a thread-safe connection pool that allows an application to (re)use multiple connections.