You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2019/08/23 16:15:16 UTC

[pulsar] branch master updated (687406e -> 40fbf5d)

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/pulsar.git.


    from 687406e  Admin pod should use broker service to discover broker pods (#4995)
     add 40fbf5d  support parse batch entry payload (#4992)

No new revisions were added by this update.

Summary of changes:
 dashboard/Dockerfile                               |   6 +-
 .../django/stats/templates/stats/messages.html     |  35 +++++--
 dashboard/django/stats/views.py                    | 114 +++++++++++++++++----
 .../django/utils}/__init__.py                      |   0
 .../django/utils/import_utils.py                   |  11 +-
 dashboard/requirements.txt                         |   8 ++
 pulsar-client-cpp/include/pulsar/Message.h         |   3 +
 .../BoostHash.h => include/pulsar/MessageBatch.h}  |  35 ++++---
 pulsar-client-cpp/include/pulsar/MessageId.h       |  10 +-
 pulsar-client-cpp/lib/Commands.h                   |   5 +-
 pulsar-client-cpp/lib/Message.cc                   |   2 +
 pulsar-client-cpp/lib/MessageBatch.cc              |  57 +++++++++++
 pulsar-client-cpp/python/pulsar/__init__.py        |  42 ++++++++
 pulsar-client-cpp/python/src/message.cc            |  17 +++
 pulsar-client-cpp/python/src/utils.h               |   1 +
 pulsar-client-cpp/tests/BatchMessageTest.cc        |  61 ++++++++---
 16 files changed, 335 insertions(+), 72 deletions(-)
 copy {docker/pulsar-standalone/django/stats/templatetags => dashboard/django/utils}/__init__.py (100%)
 copy docker/pulsar-standalone/django/stats/apps.py => dashboard/django/utils/import_utils.py (85%)
 create mode 100644 dashboard/requirements.txt
 copy pulsar-client-cpp/{lib/BoostHash.h => include/pulsar/MessageBatch.h} (60%)
 create mode 100644 pulsar-client-cpp/lib/MessageBatch.cc