You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by si...@apache.org on 2018/10/02 18:36:10 UTC

[bookkeeper] branch master updated (337b4c0 -> bbddabc)

This is an automated email from the ASF dual-hosted git repository.

sijie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git.


    from 337b4c0  [TABLE SERVICE] [CLIENT] Provide a simple version of storage clients
     add bbddabc  [TABLE SERVICE] [CLIENT] Implement the python client to access tables

No new revisions were added by this update.

Summary of changes:
 stream/clients/python/bookkeeper/admin/client.py   |   8 +-
 .../clients/python/bookkeeper/admin/namespace.py   |  44 ++++-
 .../clients/python/bookkeeper/admin/namespaces.py  |  36 +++-
 .../clients/python/bookkeeper/common/constants.py  |   2 +-
 .../clients/python/bookkeeper/common/exceptions.py | 169 +++++++++++++++-
 .../python/bookkeeper/common/future/polling.py     |   9 +-
 stream/clients/python/bookkeeper/common/method.py  | 214 +++++++++++++++++++++
 stream/clients/python/bookkeeper/common/retry.py   |   4 +-
 stream/clients/python/bookkeeper/common/timeout.py | 213 ++++++++++++++++++++
 stream/clients/python/bookkeeper/kv/client.py      |  27 ++-
 stream/clients/python/bookkeeper/kv/table.py       | 124 ++++++++++++
 .../bookkeeper/{common => proto}/__init__.py       |   0
 stream/clients/python/examples/admin.py            |  43 +++++
 .../stream/protocol/ProtocolConstants.java         |   8 +-
 14 files changed, 862 insertions(+), 39 deletions(-)
 create mode 100644 stream/clients/python/bookkeeper/common/method.py
 create mode 100644 stream/clients/python/bookkeeper/common/timeout.py
 create mode 100644 stream/clients/python/bookkeeper/kv/table.py
 copy stream/clients/python/bookkeeper/{common => proto}/__init__.py (100%)