sentry-arroyo 2.22.0__tar.gz → 2.24.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sentry_arroyo-2.22.0/sentry_arroyo.egg-info → sentry_arroyo-2.24.0}/PKG-INFO +2 -2
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/processor.py +2 -2
- sentry_arroyo-2.24.0/requirements.txt +3 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0/sentry_arroyo.egg-info}/PKG-INFO +2 -2
- sentry_arroyo-2.24.0/sentry_arroyo.egg-info/requires.txt +1 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/setup.py +1 -1
- sentry_arroyo-2.22.0/requirements.txt +0 -1
- sentry_arroyo-2.22.0/sentry_arroyo.egg-info/requires.txt +0 -1
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/LICENSE +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/MANIFEST.in +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/README.md +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/abstract.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/kafka/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/kafka/commit.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/kafka/configuration.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/kafka/consumer.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/local/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/local/backend.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/local/storages/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/local/storages/abstract.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/backends/local/storages/memory.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/commit.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/dlq.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/errors.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/abstract.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/batching.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/buffer.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/commit.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/filter.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/guard.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/healthcheck.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/noop.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/produce.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/reduce.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/run_task.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/run_task_in_threads.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/run_task_with_multiprocessing.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/unfold.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/py.typed +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/types.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/clock.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/codecs.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/concurrent.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/logging.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/metricDefs.json +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/metric_defs.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/metrics.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/profiler.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/utils/retries.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/examples/transform_and_produce/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/examples/transform_and_produce/batched.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/examples/transform_and_produce/script.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/examples/transform_and_produce/simple.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/sentry_arroyo.egg-info/SOURCES.txt +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/sentry_arroyo.egg-info/dependency_links.txt +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/sentry_arroyo.egg-info/not-zip-safe +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/sentry_arroyo.egg-info/top_level.txt +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/setup.cfg +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/backends/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/backends/mixins.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/backends/test_commit.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/backends/test_kafka.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/backends/test_local.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_all.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_batching.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_buffer.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_commit.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_filter.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_guard.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_noop.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_produce.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_reduce.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_run_task.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_run_task_in_threads.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_run_task_with_multiprocessing.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/strategies/test_unfold.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/processing/test_processor.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/test_commit.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/test_dlq.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/test_kip848_e2e.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/test_types.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/utils/__init__.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/utils/test_concurrent.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/utils/test_metrics.py +0 -0
- {sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/tests/utils/test_retries.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sentry-arroyo
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.24.0
|
|
4
4
|
Summary: Arroyo is a Python library for working with streaming data.
|
|
5
5
|
Home-page: https://github.com/getsentry/arroyo
|
|
6
6
|
Author: Sentry
|
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python
|
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
License-File: LICENSE
|
|
16
|
-
Requires-Dist: confluent-kafka
|
|
16
|
+
Requires-Dist: confluent-kafka<2.10.0,>=2.7.0
|
|
17
17
|
Dynamic: author
|
|
18
18
|
Dynamic: author-email
|
|
19
19
|
Dynamic: classifier
|
|
@@ -236,7 +236,7 @@ class StreamProcessor(Generic[TStrategyPayload]):
|
|
|
236
236
|
logger.info("New partitions assigned: %r", partitions)
|
|
237
237
|
logger.info("Member id: %r", self.__consumer.member_id)
|
|
238
238
|
self.__metrics_buffer.metrics.increment(
|
|
239
|
-
"arroyo.consumer.partitions_assigned.count", len(partitions)
|
|
239
|
+
"arroyo.consumer.partitions_assigned.count", len(partitions), tags={"consumer_member_id": self.__consumer.member_id}
|
|
240
240
|
)
|
|
241
241
|
|
|
242
242
|
current_partitions = dict(self.__consumer.tell())
|
|
@@ -262,7 +262,7 @@ class StreamProcessor(Generic[TStrategyPayload]):
|
|
|
262
262
|
logger.info("Partitions to revoke: %r", partitions)
|
|
263
263
|
|
|
264
264
|
self.__metrics_buffer.metrics.increment(
|
|
265
|
-
"arroyo.consumer.partitions_revoked.count", len(partitions)
|
|
265
|
+
"arroyo.consumer.partitions_revoked.count", len(partitions), tags={"consumer_member_id": self.__consumer.member_id}
|
|
266
266
|
)
|
|
267
267
|
|
|
268
268
|
if partitions:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sentry-arroyo
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.24.0
|
|
4
4
|
Summary: Arroyo is a Python library for working with streaming data.
|
|
5
5
|
Home-page: https://github.com/getsentry/arroyo
|
|
6
6
|
Author: Sentry
|
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python
|
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
License-File: LICENSE
|
|
16
|
-
Requires-Dist: confluent-kafka
|
|
16
|
+
Requires-Dist: confluent-kafka<2.10.0,>=2.7.0
|
|
17
17
|
Dynamic: author
|
|
18
18
|
Dynamic: author-email
|
|
19
19
|
Dynamic: classifier
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
confluent-kafka<2.10.0,>=2.7.0
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
confluent-kafka>=2.7.0
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
confluent-kafka>=2.7.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sentry_arroyo-2.22.0 → sentry_arroyo-2.24.0}/arroyo/processing/strategies/run_task_in_threads.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|