summaryrefslogtreecommitdiff
path: root/NEWS.rst
diff options
context:
space:
mode:
authorWouter Bolsterlee <uws@xs4all.nl>2014-02-25 21:08:21 +0100
committerWouter Bolsterlee <uws@xs4all.nl>2014-02-25 21:08:21 +0100
commit106dcf070574c5be9bdeba90c689b09e3fbed71b (patch)
tree5a73f162f4f2fd3c08634dbe8014e1f3a7f323ec /NEWS.rst
parentda109ab7b3c8a6ede332bc0d99e3e71cbecf5154 (diff)
downloadhappybase-106dcf070574c5be9bdeba90c689b09e3fbed71b.tar.gz
No longer confuse batching/caching; add Table.scan(scan_batching=...)
For details, see the comments added in this commit, and issues #54 and issue #56.
Diffstat (limited to 'NEWS.rst')
-rw-r--r--NEWS.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS.rst b/NEWS.rst
index 0f6e7d8..907b40e 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -18,6 +18,14 @@ Release date: *not yet released*
Python 2.6 a separate ```ordereddict``` pacakge has to be installed from PyPI.
(`issue #39 <https://github.com/wbolster/happybase/issues/39>`_)
+* The `batch_size` argument to :py:meth:`Table.scan` is no longer propagated to
+ `Scan.setBatching()` at the Java side (inside the Thrift server). To influence
+ the `Scan.setBatching()` (which may split rows into partial rows) a new
+ `scan_batching` argument to :py:meth:`Table.scan` has been added. See `issue
+ #54 <https://github.com/wbolster/happybase/issues/54>`_, `issue #56
+ <https://github.com/wbolster/happybase/issues/56>`_, and the HBase docs for
+ `Scan.setBatching()` for more details.
+
HappyBase 0.7
-------------