Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions core/sdk/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ pub use iggy_common::{
Aes256GcmEncryptor, Args, ArgsOptional, AutoLogin, CacheMetrics, CacheMetricsKey, ClientError,
ClientInfoDetails, ClusterMetadata, ClusterNode, ClusterNodeRole, ClusterNodeStatus,
CompressionAlgorithm, Consumer, ConsumerGroup, ConsumerGroupDetails, ConsumerGroupMember,
ConsumerKind, EncryptorKind, GlobalPermissions, HeaderKey, HeaderKind, HeaderValue,
HttpClientConfig, HttpClientConfigBuilder, HttpMethod, IdKind, Identifier, IdentityInfo,
IggyByteSize, IggyDuration, IggyError, IggyExpiry, IggyIndexView, IggyMessage,
ConsumerKind, EncryptorKind, GlobalPermissions, HeaderField, HeaderKey, HeaderKind,
HeaderValue, HttpClientConfig, HttpClientConfigBuilder, HttpMethod, IdKind, Identifier,
IdentityInfo, IggyByteSize, IggyDuration, IggyError, IggyExpiry, IggyIndexView, IggyMessage,
IggyMessageHeader, IggyMessageHeaderView, IggyMessageView, IggyMessageViewIterator,
IggyTimestamp, MaxTopicSize, Partition, Partitioner, Partitioning, Permissions,
PersonalAccessTokenExpiry, PollMessages, PolledMessages, PollingKind, PollingStrategy,
Expand Down
23 changes: 23 additions & 0 deletions examples/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,29 @@ python basic/consumer.py

Demonstrates fundamental client connection, authentication, batch message sending, and polling with support for TCP/QUIC/HTTP protocols.

### Message Headers

Shows how to attach and read Python SDK user headers with `str`, `bytes`, `bool`, `int`, and `float` values. Two variants share their logic through `message-headers/common.py`:

- `plain-headers/` uses the convenient `dict[str, str | bytes | bool | int | float]` form; the SDK infers a wire type for each value.
- `typed-headers/` uses explicit `HeaderKey`/`HeaderValue` for full control over the wire type.

Both are consumed identically, since plain headers are stored as typed headers on the wire.
Comment thread
jiengup marked this conversation as resolved.

```bash
# Using uv
uv run message-headers/plain-headers/producer.py
uv run message-headers/plain-headers/consumer.py
uv run message-headers/typed-headers/producer.py
uv run message-headers/typed-headers/consumer.py

# Without using uv
python message-headers/plain-headers/producer.py
python message-headers/plain-headers/consumer.py
python message-headers/typed-headers/producer.py
python message-headers/typed-headers/consumer.py
```

## TLS Examples

To test with a TLS-enabled server, start the server with TLS configured (see main README), then run:
Expand Down
247 changes: 247 additions & 0 deletions examples/python/message-headers/common.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,247 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

import argparse
import asyncio
import json
import secrets
import time
from collections.abc import Callable, Iterator, Mapping
from dataclasses import dataclass
from enum import StrEnum
from typing import Any

from apache_iggy import (
HeaderKey,
HeaderValue,
IggyClient,
PollingStrategy,
ReceiveMessage,
StreamDetails,
TopicDetails,
)
from apache_iggy import SendMessage as Message
from loguru import logger

STREAM_NAME = "message-headers-stream"
TOPIC_NAME = "orders"
PARTITION_ID = 0
BATCHES_LIMIT = 5
MESSAGES_PER_BATCH = 10

PlainHeaderValue = str | bytes | bool | int | float
PlainHeaders = dict[str, PlainHeaderValue]
TypedHeaders = dict[HeaderKey, HeaderValue]
HeadersBuilder = Callable[["Order"], PlainHeaders | TypedHeaders]
MessageHandler = Callable[[ReceiveMessage], None]


class OrderType(StrEnum):
CREATED = "OrderCreated"
CONFIRMED = "OrderConfirmed"
REJECTED = "OrderRejected"


@dataclass(frozen=True, slots=True)
class ArgNamespace:
connection_string: str


@dataclass(frozen=True, slots=True)
class Order:
order_type: OrderType
payload: str


def parse_args() -> ArgNamespace:
parser = argparse.ArgumentParser()
parser.add_argument(
"connection_string",
help=(
"Connection string for Iggy client, e.g. "
"'iggy+tcp://iggy:iggy@127.0.0.1:8090'"
),
default="iggy+tcp://iggy:iggy@127.0.0.1:8090",
nargs="?",
type=str,
)
return ArgNamespace(**vars(parser.parse_args()))


def generate_orders() -> Iterator[Order]:
order_id = 0

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this function, the generated order_ids are not coherent. The current code will effectively produce the following 6 events:

OrderConfirmed(order-0)
OrderRejected(order-0)
OrderCreated(order-3)
OrderConfirmed(order-1)
OrderRejected(order-1)
OrderCreated(order-6)

while True:
order_id += 1
match order_id % 3:
case 0:
payload = {
"orderId": f"order-{order_id}",
"customerId": f"customer-{secrets.randbelow(100)}",
"amount": secrets.randbelow(10000) + 1,
}
yield Order(OrderType.CREATED, json.dumps(payload))
case 1:
payload = {
"orderId": f"order-{order_id // 3}",
"timestamp": int(time.time() * 1000),
}
yield Order(OrderType.CONFIRMED, json.dumps(payload))
case _:
payload = {
"orderId": f"order-{order_id // 3}",
"reason": "Insufficient balance",
}
yield Order(OrderType.REJECTED, json.dumps(payload))


async def connect(connection_string: str) -> IggyClient:
client = IggyClient.from_connection_string(connection_string)
logger.info("Connecting to Iggy")
await client.connect()
logger.info("Connected")
return client


async def init_system(client: IggyClient) -> None:
try:
logger.info(f"Creating stream with name {STREAM_NAME}...")
stream: StreamDetails | None = await client.get_stream(STREAM_NAME)
if stream is None:
await client.create_stream(name=STREAM_NAME)
logger.info("Stream was created successfully.")
else:
logger.warning(f"Stream {stream.name} already exists with ID {stream.id}")
except Exception as error:
logger.error(f"Error creating stream: {error}")
logger.exception(error)

try:
logger.info(f"Creating topic {TOPIC_NAME} in stream {STREAM_NAME}")
topic: TopicDetails | None = await client.get_topic(STREAM_NAME, TOPIC_NAME)
if topic is None:
await client.create_topic(
stream=STREAM_NAME,
partitions_count=1,
name=TOPIC_NAME,
replication_factor=1,
)
logger.info("Topic was created successfully.")
else:
logger.warning(f"Topic {topic.name} already exists with ID {topic.id}")
except Exception as error:
logger.error(f"Error creating topic {error}")
logger.exception(error)


async def produce_messages(client: IggyClient, build_headers: HeadersBuilder) -> None:
interval = 0.5
logger.info(
f"Messages will be sent to stream: {STREAM_NAME}, "
f"topic: {TOPIC_NAME}, partition: {PARTITION_ID} "
f"with interval {interval * 1000} ms."
)
orders = generate_orders()
sent_batches = 0

while sent_batches < BATCHES_LIMIT:
messages: list[Message] = []
for order in (next(orders) for _ in range(MESSAGES_PER_BATCH)):
headers = build_headers(order)
messages.append(Message(order.payload, user_headers=headers))
logger.info(
f"Prepared {order.order_type} with headers: {format_headers(headers)}"
)

try:
await client.send_messages(
stream=STREAM_NAME,
topic=TOPIC_NAME,
partitioning=PARTITION_ID,
messages=messages,
)
sent_batches += 1
logger.info(f"Sent {len(messages)} message(s).")
except Exception as error:
logger.error(f"Exception type: {type(error).__name__}, message: {error}")
logger.exception(error)

await asyncio.sleep(interval)

logger.info(f"Sent {sent_batches} batches of messages, exiting.")


async def consume_messages(client: IggyClient, handle_message: MessageHandler) -> None:
interval = 0.5
logger.info(
f"Messages will be consumed from stream: {STREAM_NAME}, "
f"topic: {TOPIC_NAME}, partition: {PARTITION_ID} "
f"with interval {interval * 1000} ms."
)
consumed_batches = 0

while consumed_batches < BATCHES_LIMIT:
try:
logger.debug("Polling for messages...")
polled_messages = await client.poll_messages(
stream=STREAM_NAME,
topic=TOPIC_NAME,
partition_id=PARTITION_ID,
polling_strategy=PollingStrategy.Next(),
count=MESSAGES_PER_BATCH,
auto_commit=True,
)
if not polled_messages:
logger.info("No messages found in current poll")
await asyncio.sleep(interval)
continue

for message in polled_messages:
handle_message(message)

consumed_batches += 1
logger.info(f"Consumed {len(polled_messages)} message(s).")
await asyncio.sleep(interval)
except Exception as error:
logger.exception(f"Exception occurred while consuming messages: {error}")
break

logger.info(f"Consumed {consumed_batches} batches of messages, exiting.")


def log_order(message_type: OrderType | None, payload: object) -> None:
match message_type:
case OrderType.CREATED:
logger.info(f"Order Created: {payload}")
case OrderType.CONFIRMED:
logger.info(f"Order Confirmed: {payload}")
case OrderType.REJECTED:
logger.info(f"Order Rejected: {payload}")
case _:
logger.warning(f"Received unknown message type: {message_type}")


def format_headers(headers: Mapping[Any, Any]) -> dict[str, str]:
formatted: dict[str, str] = {}
for key, value in headers.items():
formatted_key = repr(key) if isinstance(key, HeaderKey) else str(key)
if isinstance(value, bytes):
formatted[formatted_key] = f"bytes({value.hex()})"
elif isinstance(value, HeaderValue):
formatted[formatted_key] = repr(value)
else:
formatted[formatted_key] = f"{value!r} ({type(value).__name__})"
return formatted
77 changes: 77 additions & 0 deletions examples/python/message-headers/plain-headers/consumer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

import asyncio
import json
import sys
from pathlib import Path

sys.path.append(str(Path(__file__).resolve().parent.parent))

from apache_iggy import ReceiveMessage # noqa: E402
from common import ( # noqa: E402
OrderType,
PlainHeaderValue,
connect,
consume_messages,
format_headers,
log_order,
parse_args,
)
from loguru import logger # noqa: E402


def handle_message(message: ReceiveMessage) -> None:
payload = json.loads(message.payload().decode("utf-8"))
headers = message.user_headers()

logger.info(
f"Handling message at offset {message.offset()} "
f"with origin timestamp {message.origin_timestamp()}."
)

scalar_headers: dict[PlainHeaderValue, PlainHeaderValue] = {}
if headers is not None:
# `to_scalar_dict` converts the typed headers stored on the wire back
# into the convenient plain `dict[str, str | bytes | bool | int |
# float]` form.
scalar_headers = headers.to_scalar_dict()
logger.info(f"Plain headers: {format_headers(scalar_headers)}")

log_order(get_message_type(scalar_headers), payload)


def get_message_type(
headers: dict[PlainHeaderValue, PlainHeaderValue],
) -> OrderType | None:
message_type = headers.get("message-type")
if isinstance(message_type, str):
try:
return OrderType(message_type)
except ValueError:
logger.warning(f"Received unknown message type: {message_type}")
return None


async def main() -> None:
args = parse_args()
client = await connect(args.connection_string)
await consume_messages(client, handle_message)


if __name__ == "__main__":
asyncio.run(main())
Loading
Loading