Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Event Hubs] Put uamqp.Message.properties into EventData.system_properties #10508

Merged
merged 21 commits into from
Mar 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
cb13bd8
Increment version
Feb 14, 2020
38e9f65
Update Development Status
Feb 14, 2020
aa30bc0
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Feb 15, 2020
c4710ea
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Feb 20, 2020
053f073
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Feb 24, 2020
f0697f7
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 6, 2020
c83241a
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 6, 2020
18c6fba
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 6, 2020
607f134
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 9, 2020
88fd7d1
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 9, 2020
fcbaf65
Remove typing.Deque for Py3.5.3
Mar 9, 2020
f52e2d9
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 10, 2020
8aaaf1e
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 11, 2020
a12351c
Merge branch 'master' of github.com:Azure/azure-sdk-for-python
Mar 25, 2020
8c76573
Copy uamqp.Message.properties to EventData.system_properties
Mar 25, 2020
5514118
Remove unused import
Mar 25, 2020
c94851c
Use - instead of _ to align all system properties
Mar 25, 2020
105ed1c
Correct a sys property key name
Mar 26, 2020
77da135
Update docstring of EventData.system_properties
Mar 26, 2020
4eef235
Fix a unit test bug
Mar 26, 2020
f4021c9
fix a pylint error
Mar 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 63 additions & 3 deletions sdk/eventhub/azure-eventhub/azure/eventhub/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,19 @@
PROP_PARTITION_KEY,
PROP_PARTITION_KEY_AMQP_SYMBOL,
PROP_TIMESTAMP,
PROP_ABSOLUTE_EXPIRY_TIME,
PROP_CONTENT_ENCODING,
PROP_CONTENT_TYPE,
PROP_CORRELATION_ID,
PROP_GROUP_ID,
PROP_GROUP_SEQUENCE,
PROP_MESSAGE_ID,
PROP_REPLY_TO,
PROP_REPLY_TO_GROUP_ID,
PROP_SUBJECT,
PROP_TO,
PROP_USER_ID,
PROP_CREATION_TIME,
)

if TYPE_CHECKING:
Expand All @@ -39,6 +52,22 @@
# event_data.encoded_size < 255, batch encode overhead is 5, >=256, overhead is 8 each
_BATCH_MESSAGE_OVERHEAD_COST = [5, 8]

_SYS_PROP_KEYS_TO_MSG_PROPERTIES = (
(PROP_MESSAGE_ID, "message_id"),
(PROP_USER_ID, "user_id"),
(PROP_TO, "to"),
(PROP_SUBJECT, "subject"),
(PROP_REPLY_TO, "reply_to"),
(PROP_CORRELATION_ID, "correlation_id"),
(PROP_CONTENT_TYPE, "content_type"),
(PROP_CONTENT_ENCODING, "content_encoding"),
(PROP_ABSOLUTE_EXPIRY_TIME, "absolute_expiry_time"),
(PROP_CREATION_TIME, "creation_time"),
(PROP_GROUP_ID, "group_id"),
(PROP_GROUP_SEQUENCE, "group_sequence"),
(PROP_REPLY_TO_GROUP_ID, "reply_to_group_id"),
)


class EventData(object):
"""The EventData class is a container for event content.
Expand All @@ -60,6 +89,7 @@ class EventData(object):
def __init__(self, body=None):
# type: (Union[str, bytes, List[AnyStr]]) -> None
self._last_enqueued_event_properties = {} # type: Dict[str, Any]
self._sys_properties = None # type: Optional[Dict[bytes, Any]]
if body and isinstance(body, list):
self.message = Message(body[0])
for more in body[1:]:
Expand Down Expand Up @@ -207,12 +237,42 @@ def properties(self, value):

@property
def system_properties(self):
# type: () -> Dict[Union[str, bytes], Any]
"""Metadata set by the Event Hubs Service associated with the event
# type: () -> Dict[bytes, Any]
"""Metadata set by the Event Hubs Service associated with the event.

An EventData could have some or all of the following meta data depending on the source
of the event data.

- b"x-opt-sequence-number" (int)
- b"x-opt-offset" (bytes)
- b"x-opt-partition-key" (bytes)
- b"x-opt-enqueued-time" (int)
- b"message-id" (bytes)
- b"user-id" (bytes)
- b"to" (bytes)
- b"subject" (bytes)
- b"reply-to" (bytes)
- b"correlation-id" (bytes)
- b"content-type" (bytes)
- b"content-encoding" (bytes)
- b"absolute-expiry-time" (int)
- b"creation-time" (int)
- b"group-id" (bytes)
- b"group-sequence" (bytes)
- b"reply-to-group-id" (bytes)

:rtype: dict
"""
return self.message.annotations

if self._sys_properties is None:
self._sys_properties = {}
if self.message.properties:
for key, prop_name in _SYS_PROP_KEYS_TO_MSG_PROPERTIES:
value = getattr(self.message.properties, prop_name, None)
if value:
self._sys_properties[key] = value
self._sys_properties.update(self.message.annotations)
yunhaoling marked this conversation as resolved.
Show resolved Hide resolved
return self._sys_properties

@property
def body(self):
Expand Down
14 changes: 14 additions & 0 deletions sdk/eventhub/azure-eventhub/azure/eventhub/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@
PROP_LAST_ENQUEUED_TIME_UTC = b"last_enqueued_time_utc"
PROP_RUNTIME_INFO_RETRIEVAL_TIME_UTC = b"runtime_info_retrieval_time_utc"

PROP_MESSAGE_ID = b"message-id"
PROP_USER_ID = b"user-id"
PROP_TO = b"to"
PROP_SUBJECT = b"subject"
PROP_REPLY_TO = b"reply-to"
PROP_CORRELATION_ID = b"correlation-id"
PROP_CONTENT_TYPE = b"content-type"
PROP_CONTENT_ENCODING = b"content-encoding"
PROP_ABSOLUTE_EXPIRY_TIME = b"absolute-expiry-time"
PROP_CREATION_TIME = b"creation-time"
PROP_GROUP_ID = b"group-id"
PROP_GROUP_SEQUENCE = b"group-sequence"
PROP_REPLY_TO_GROUP_ID = b"reply-to-group-id"

EPOCH_SYMBOL = b"com.microsoft:epoch"
TIMEOUT_SYMBOL = b"com.microsoft:timeout"
RECEIVER_RUNTIME_METRIC_SYMBOL = b"com.microsoft:enable-receiver-runtime-metric"
Expand Down
38 changes: 37 additions & 1 deletion sdk/eventhub/azure-eventhub/tests/unittest/test_event_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import platform
import pytest

import uamqp
from azure.eventhub import _common

pytestmark = pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="This is ignored for PyPy")

Expand Down Expand Up @@ -52,6 +53,41 @@ def test_app_properties():
assert event_data.properties["a"] == "b"


def test_sys_properties():
properties = uamqp.message.MessageProperties()
properties.message_id = "message_id"
properties.user_id = "user_id"
properties.to = "to"
properties.subject = "subject"
properties.reply_to = "reply_to"
properties.correlation_id = "correlation_id"
properties.content_type = "content_type"
properties.content_encoding = "content_encoding"
properties.absolute_expiry_time = 1
properties.creation_time = 1
properties.group_id = "group_id"
properties.group_sequence = 1
properties.reply_to_group_id = "reply_to_group_id"
message = uamqp.Message(properties=properties)
message.annotations = {_common.PROP_OFFSET: "@latest"}
ed = EventData._from_message(message) # type: EventData

assert ed.system_properties[_common.PROP_OFFSET] == "@latest"
assert ed.system_properties[_common.PROP_CORRELATION_ID] == properties.correlation_id
assert ed.system_properties[_common.PROP_MESSAGE_ID] == properties.message_id
assert ed.system_properties[_common.PROP_CONTENT_ENCODING] == properties.content_encoding
assert ed.system_properties[_common.PROP_CONTENT_TYPE] == properties.content_type
assert ed.system_properties[_common.PROP_USER_ID] == properties.user_id
assert ed.system_properties[_common.PROP_TO] == properties.to
assert ed.system_properties[_common.PROP_SUBJECT] == properties.subject
assert ed.system_properties[_common.PROP_REPLY_TO] == properties.reply_to
assert ed.system_properties[_common.PROP_ABSOLUTE_EXPIRY_TIME] == properties.absolute_expiry_time
assert ed.system_properties[_common.PROP_CREATION_TIME] == properties.creation_time
assert ed.system_properties[_common.PROP_GROUP_ID] == properties.group_id
assert ed.system_properties[_common.PROP_GROUP_SEQUENCE] == properties.group_sequence
assert ed.system_properties[_common.PROP_REPLY_TO_GROUP_ID] == properties.reply_to_group_id


def test_event_data_batch():
batch = EventDataBatch(max_size_in_bytes=100, partition_key="par")
batch.add(EventData("A"))
Expand Down