summaryrefslogtreecommitdiff
path: root/happybase/batch.py
Commit message (Collapse)AuthorAgeFilesLines
* Use six.iteritems()Wouter Bolsterlee2016-07-271-2/+7
|
* Port to thriftpyWouter Bolsterlee2016-03-271-1/+1
|
* Expand docs for the 'wal' arg for Batch.put() and .delete()Wouter Bolsterlee2013-11-031-3/+7
|
* Expose Mutation.writeToWAL in .put(), .delete(), and batch()Wouter Bolsterlee2013-11-031-9/+21
| | | | | | | | Various data manipulation methods on Table and Batch instances now support a 'wal' argument to influence whether the mutation is written to the Write-Ahead Log. This is only supported in recent HBase version. Fixes issue #36.
* Tiny code comment improvementWouter Bolsterlee2013-11-031-2/+2
|
* Adapt to API changes in regenerated Thrift APIWouter Bolsterlee2013-11-031-2/+2
| | | | | Simply pass an empty dictionary to each method that takes an 'attributes' arg in the regenerated Thrift API.
* Also allow 'long' type for 'timestamp' argsWouter Bolsterlee2013-05-221-1/+2
| | | | Fixes issue #23.
* A few minor PEP8 cleanupsWouter Bolsterlee2013-05-031-1/+2
|
* Always access Thrift client instance through connectionWouter Bolsterlee2013-05-031-3/+3
|
* Split code into separate modulesWouter Bolsterlee2013-05-021-0/+114
Split the monolithic .api module into separate modules implementing the connection, table, and batch parts. The public API is still the same, since all functionality is available from the main 'happybase' namespace, so this is just an internal cleanup.