-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Use non-blocking poll after production; allow flush for testing (#…
…12) I believe a nullary call to poll uses a default timeout of -1 (wait indefinitely), but we really just want to make sure that pending callbacks are triggered for the acks that have been buffered in the background, from previous events. poll(0) will not block if the buffer is empty. For testing we need to call flush(-1), so add sync=True as an option. Documentation for `rd_kafka_poll`: https://github.com/edenhill/librdkafka/blob/4faeb8132521da70b6bcde14423a14eb7ed5c55e/src/rdkafka.h#L3079 This addresses part of #10
- Loading branch information
1 parent
2a4150e
commit c3f33d1
Showing
3 changed files
with
81 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
""" | ||
Configuration loading and validation. | ||
""" | ||
|
||
from typing import Optional | ||
|
||
from attrs import attr | ||
from confluent_kafka.schema_registry import SchemaRegistryClient | ||
from django.conf import settings | ||
|
||
|
||
@attr.s | ||
class CommonConfig: | ||
settings = attr.ib(type=dict) | ||
|
||
|
||
def create_schema_registry_client() -> Optional[SchemaRegistryClient]: | ||
""" | ||
Create a schema registry client from common settings. | ||
""" | ||
url = getattr(settings, 'EVENT_BUS_KAFKA_SCHEMA_REGISTRY_URL', None) | ||
if url is None: | ||
warnings.warn("Cannot configure event-bus-kafka: Missing setting EVENT_BUS_KAFKA_SCHEMA_REGISTRY_URL") | ||
return None | ||
|
||
key = getattr(settings, 'EVENT_BUS_KAFKA_SCHEMA_REGISTRY_API_KEY', '') | ||
secret = getattr(settings, 'EVENT_BUS_KAFKA_SCHEMA_REGISTRY_API_SECRET', '') | ||
|
||
return SchemaRegistryClient({ | ||
'url': url, | ||
'basic.auth.user.info': f"{key}:{secret}", | ||
}) | ||
|
||
|
||
def load_common_settings() -> Optional[dict]: | ||
""" | ||
Load common settings, a base for either producer or consumer configuration. | ||
""" | ||
bootstrap_servers = getattr(settings, 'EVENT_BUS_KAFKA_BOOTSTRAP_SERVERS', None) | ||
if bootstrap_servers is None: | ||
warnings.warn("Cannot configure event-bus-kafka: Missing setting EVENT_BUS_KAFKA_BOOTSTRAP_SERVERS") | ||
return None | ||
|
||
settings = { | ||
'bootstrap.servers': bootstrap_servers, | ||
} | ||
|
||
key = getattr(settings, 'EVENT_BUS_KAFKA_API_KEY', None) | ||
secret = getattr(settings, 'EVENT_BUS_KAFKA_API_SECRET', None) | ||
|
||
if key and secret: | ||
settings.update({ | ||
'sasl.mechanism': 'PLAIN', | ||
'security.protocol': 'SASL_SSL', | ||
'sasl.username': key, | ||
'sasl.password': secret, | ||
}) | ||
|
||
return settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters