karafka 2.5.7 → 2.5.9
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/LICENSE-COMM +4 -2
- data/config/locales/pro_errors.yml +1 -0
- data/lib/karafka/admin/replication.rb +36 -4
- data/lib/karafka/pro/active_job/consumer.rb +8 -0
- data/lib/karafka/pro/active_job/dispatcher.rb +8 -0
- data/lib/karafka/pro/active_job/job_options_contract.rb +8 -0
- data/lib/karafka/pro/admin/recovery/errors.rb +51 -0
- data/lib/karafka/pro/admin/recovery.rb +486 -0
- data/lib/karafka/pro/base_consumer.rb +8 -0
- data/lib/karafka/pro/cleaner/errors.rb +8 -0
- data/lib/karafka/pro/cleaner/messages/message.rb +8 -0
- data/lib/karafka/pro/cleaner/messages/messages.rb +8 -0
- data/lib/karafka/pro/cleaner/messages/metadata.rb +8 -0
- data/lib/karafka/pro/cleaner.rb +8 -0
- data/lib/karafka/pro/cli/contracts/server.rb +8 -0
- data/lib/karafka/pro/cli/parallel_segments/base.rb +8 -0
- data/lib/karafka/pro/cli/parallel_segments/collapse.rb +8 -0
- data/lib/karafka/pro/cli/parallel_segments/distribute.rb +8 -0
- data/lib/karafka/pro/cli/parallel_segments.rb +8 -0
- data/lib/karafka/pro/cli/topics/health.rb +10 -2
- data/lib/karafka/pro/cli/topics.rb +8 -0
- data/lib/karafka/pro/connection/manager.rb +8 -0
- data/lib/karafka/pro/connection/multiplexing/listener.rb +8 -0
- data/lib/karafka/pro/contracts/base.rb +8 -0
- data/lib/karafka/pro/encryption/cipher.rb +8 -0
- data/lib/karafka/pro/encryption/contracts/config.rb +8 -0
- data/lib/karafka/pro/encryption/errors.rb +8 -0
- data/lib/karafka/pro/encryption/messages/middleware.rb +8 -0
- data/lib/karafka/pro/encryption/messages/parser.rb +8 -0
- data/lib/karafka/pro/encryption/setup/config.rb +8 -0
- data/lib/karafka/pro/encryption.rb +8 -0
- data/lib/karafka/pro/instrumentation/performance_tracker.rb +8 -0
- data/lib/karafka/pro/iterator/expander.rb +9 -1
- data/lib/karafka/pro/iterator/tpl_builder.rb +8 -0
- data/lib/karafka/pro/iterator.rb +9 -1
- data/lib/karafka/pro/loader.rb +8 -0
- data/lib/karafka/pro/processing/adaptive_iterator/consumer.rb +8 -0
- data/lib/karafka/pro/processing/adaptive_iterator/tracker.rb +8 -0
- data/lib/karafka/pro/processing/collapser.rb +8 -0
- data/lib/karafka/pro/processing/coordinator.rb +8 -0
- data/lib/karafka/pro/processing/coordinators/errors_tracker.rb +8 -0
- data/lib/karafka/pro/processing/coordinators/filters_applier.rb +8 -0
- data/lib/karafka/pro/processing/coordinators/virtual_offset_manager.rb +8 -0
- data/lib/karafka/pro/processing/executor.rb +8 -0
- data/lib/karafka/pro/processing/expansions_selector.rb +8 -0
- data/lib/karafka/pro/processing/filters/base.rb +8 -0
- data/lib/karafka/pro/processing/filters/delayer.rb +8 -0
- data/lib/karafka/pro/processing/filters/expirer.rb +8 -0
- data/lib/karafka/pro/processing/filters/inline_insights_delayer.rb +8 -0
- data/lib/karafka/pro/processing/filters/throttler.rb +8 -0
- data/lib/karafka/pro/processing/filters/virtual_limiter.rb +8 -0
- data/lib/karafka/pro/processing/jobs/consume_non_blocking.rb +8 -0
- data/lib/karafka/pro/processing/jobs/eofed_non_blocking.rb +8 -0
- data/lib/karafka/pro/processing/jobs/periodic.rb +8 -0
- data/lib/karafka/pro/processing/jobs/periodic_non_blocking.rb +8 -0
- data/lib/karafka/pro/processing/jobs/revoked_non_blocking.rb +8 -0
- data/lib/karafka/pro/processing/jobs_builder.rb +8 -0
- data/lib/karafka/pro/processing/jobs_queue.rb +8 -0
- data/lib/karafka/pro/processing/offset_metadata/consumer.rb +8 -0
- data/lib/karafka/pro/processing/offset_metadata/fetcher.rb +8 -0
- data/lib/karafka/pro/processing/offset_metadata/listener.rb +8 -0
- data/lib/karafka/pro/processing/parallel_segments/filters/base.rb +8 -0
- data/lib/karafka/pro/processing/parallel_segments/filters/default.rb +8 -0
- data/lib/karafka/pro/processing/parallel_segments/filters/mom.rb +8 -0
- data/lib/karafka/pro/processing/partitioner.rb +8 -0
- data/lib/karafka/pro/processing/periodic_job/consumer.rb +8 -0
- data/lib/karafka/pro/processing/piping/consumer.rb +8 -0
- data/lib/karafka/pro/processing/schedulers/base.rb +8 -0
- data/lib/karafka/pro/processing/schedulers/default.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_lrj_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_lrj_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_lrj_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_lrj_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/dlq_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/ftr_lrj_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/ftr_lrj_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/ftr_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/ftr_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/lrj_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/lrj_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/aj/mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/base.rb +8 -0
- data/lib/karafka/pro/processing/strategies/default.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/default.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/ftr_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/lrj.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/lrj_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/lrj_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/lrj_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/dlq/vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/ftr/default.rb +8 -0
- data/lib/karafka/pro/processing/strategies/ftr/vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/default.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/ftr.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/ftr_mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/ftr_mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/ftr_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/mom.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/mom_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/lrj/vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/mom/default.rb +8 -0
- data/lib/karafka/pro/processing/strategies/mom/ftr.rb +8 -0
- data/lib/karafka/pro/processing/strategies/mom/ftr_vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/mom/vp.rb +8 -0
- data/lib/karafka/pro/processing/strategies/vp/default.rb +8 -0
- data/lib/karafka/pro/processing/strategies.rb +8 -0
- data/lib/karafka/pro/processing/strategy_selector.rb +8 -0
- data/lib/karafka/pro/processing/subscription_groups_coordinator.rb +8 -0
- data/lib/karafka/pro/processing/virtual_partitions/distributors/balanced.rb +8 -0
- data/lib/karafka/pro/processing/virtual_partitions/distributors/base.rb +8 -0
- data/lib/karafka/pro/processing/virtual_partitions/distributors/consistent.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/consumer.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/contracts/config.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/contracts/task.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/deserializer.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/dispatcher.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/errors.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/executor.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/listener.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/matcher.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/schedule.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/serializer.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/setup/config.rb +8 -0
- data/lib/karafka/pro/recurring_tasks/task.rb +8 -0
- data/lib/karafka/pro/recurring_tasks.rb +8 -0
- data/lib/karafka/pro/routing/features/active_job/builder.rb +8 -0
- data/lib/karafka/pro/routing/features/active_job.rb +8 -0
- data/lib/karafka/pro/routing/features/adaptive_iterator/config.rb +8 -0
- data/lib/karafka/pro/routing/features/adaptive_iterator/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/adaptive_iterator/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/adaptive_iterator.rb +8 -0
- data/lib/karafka/pro/routing/features/base.rb +8 -0
- data/lib/karafka/pro/routing/features/dead_letter_queue/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/dead_letter_queue/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/dead_letter_queue.rb +8 -0
- data/lib/karafka/pro/routing/features/delaying/config.rb +8 -0
- data/lib/karafka/pro/routing/features/delaying/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/delaying/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/delaying.rb +8 -0
- data/lib/karafka/pro/routing/features/direct_assignments/config.rb +8 -0
- data/lib/karafka/pro/routing/features/direct_assignments/contracts/consumer_group.rb +8 -0
- data/lib/karafka/pro/routing/features/direct_assignments/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/direct_assignments/subscription_group.rb +8 -0
- data/lib/karafka/pro/routing/features/direct_assignments/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/direct_assignments.rb +8 -0
- data/lib/karafka/pro/routing/features/expiring/config.rb +8 -0
- data/lib/karafka/pro/routing/features/expiring/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/expiring/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/expiring.rb +8 -0
- data/lib/karafka/pro/routing/features/filtering/config.rb +8 -0
- data/lib/karafka/pro/routing/features/filtering/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/filtering/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/filtering.rb +8 -0
- data/lib/karafka/pro/routing/features/inline_insights/config.rb +8 -0
- data/lib/karafka/pro/routing/features/inline_insights/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/inline_insights/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/inline_insights.rb +8 -0
- data/lib/karafka/pro/routing/features/long_running_job/config.rb +8 -0
- data/lib/karafka/pro/routing/features/long_running_job/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/long_running_job/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/long_running_job.rb +8 -0
- data/lib/karafka/pro/routing/features/multiplexing/config.rb +8 -0
- data/lib/karafka/pro/routing/features/multiplexing/contracts/routing.rb +81 -0
- data/lib/karafka/pro/routing/features/multiplexing/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/multiplexing/patches/contracts/consumer_group.rb +8 -0
- data/lib/karafka/pro/routing/features/multiplexing/proxy.rb +8 -0
- data/lib/karafka/pro/routing/features/multiplexing/subscription_group.rb +8 -0
- data/lib/karafka/pro/routing/features/multiplexing/subscription_groups_builder.rb +8 -0
- data/lib/karafka/pro/routing/features/multiplexing.rb +17 -2
- data/lib/karafka/pro/routing/features/non_blocking_job/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/non_blocking_job.rb +8 -0
- data/lib/karafka/pro/routing/features/offset_metadata/config.rb +8 -0
- data/lib/karafka/pro/routing/features/offset_metadata/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/offset_metadata/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/offset_metadata.rb +8 -0
- data/lib/karafka/pro/routing/features/parallel_segments/builder.rb +8 -0
- data/lib/karafka/pro/routing/features/parallel_segments/config.rb +8 -0
- data/lib/karafka/pro/routing/features/parallel_segments/consumer_group.rb +8 -0
- data/lib/karafka/pro/routing/features/parallel_segments/contracts/consumer_group.rb +8 -0
- data/lib/karafka/pro/routing/features/parallel_segments/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/parallel_segments.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/builder.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/config.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/consumer_group.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/contracts/consumer_group.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/contracts/pattern.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/detector.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/pattern.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/patterns.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns/topics.rb +8 -0
- data/lib/karafka/pro/routing/features/patterns.rb +8 -0
- data/lib/karafka/pro/routing/features/pausing/config.rb +8 -0
- data/lib/karafka/pro/routing/features/pausing/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/pausing/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/pausing.rb +8 -0
- data/lib/karafka/pro/routing/features/periodic_job/config.rb +8 -0
- data/lib/karafka/pro/routing/features/periodic_job/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/periodic_job/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/periodic_job.rb +8 -0
- data/lib/karafka/pro/routing/features/recurring_tasks/builder.rb +8 -0
- data/lib/karafka/pro/routing/features/recurring_tasks/config.rb +8 -0
- data/lib/karafka/pro/routing/features/recurring_tasks/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/recurring_tasks/proxy.rb +8 -0
- data/lib/karafka/pro/routing/features/recurring_tasks/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/recurring_tasks.rb +8 -0
- data/lib/karafka/pro/routing/features/scheduled_messages/builder.rb +8 -0
- data/lib/karafka/pro/routing/features/scheduled_messages/config.rb +8 -0
- data/lib/karafka/pro/routing/features/scheduled_messages/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/scheduled_messages/proxy.rb +8 -0
- data/lib/karafka/pro/routing/features/scheduled_messages/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/scheduled_messages.rb +8 -0
- data/lib/karafka/pro/routing/features/swarm/config.rb +8 -0
- data/lib/karafka/pro/routing/features/swarm/contracts/routing.rb +8 -0
- data/lib/karafka/pro/routing/features/swarm/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/swarm/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/swarm.rb +8 -0
- data/lib/karafka/pro/routing/features/throttling/config.rb +8 -0
- data/lib/karafka/pro/routing/features/throttling/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/throttling/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/throttling.rb +8 -0
- data/lib/karafka/pro/routing/features/virtual_partitions/config.rb +8 -0
- data/lib/karafka/pro/routing/features/virtual_partitions/contracts/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/virtual_partitions/topic.rb +8 -0
- data/lib/karafka/pro/routing/features/virtual_partitions.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/consumer.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/contracts/config.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/contracts/message.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/daily_buffer.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/day.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/deserializers/headers.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/deserializers/payload.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/dispatcher.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/errors.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/max_epoch.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/proxy.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/schema_validator.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/serializer.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/setup/config.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/state.rb +8 -0
- data/lib/karafka/pro/scheduled_messages/tracker.rb +8 -0
- data/lib/karafka/pro/scheduled_messages.rb +8 -0
- data/lib/karafka/pro/swarm/liveness_listener.rb +29 -14
- data/lib/karafka/setup/config_proxy.rb +9 -1
- data/lib/karafka/swarm/liveness_listener.rb +17 -8
- data/lib/karafka/version.rb +1 -1
- metadata +5 -2
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
# This software is NOT open source. It is source-available commercial software
|
|
7
7
|
# requiring a paid license for use. It is NOT covered by LGPL.
|
|
8
8
|
#
|
|
9
|
+
# The author retains all right, title, and interest in this software,
|
|
10
|
+
# including all copyrights, patents, and other intellectual property rights.
|
|
11
|
+
# No patent rights are granted under this license.
|
|
12
|
+
#
|
|
9
13
|
# PROHIBITED:
|
|
10
14
|
# - Use without a valid commercial license
|
|
11
15
|
# - Redistribution, modification, or derivative works without authorization
|
|
16
|
+
# - Reverse engineering, decompilation, or disassembly of this software
|
|
12
17
|
# - Use as training data for AI/ML models or inclusion in datasets
|
|
13
18
|
# - Scraping, crawling, or automated collection for any purpose
|
|
14
19
|
#
|
|
@@ -17,6 +22,9 @@
|
|
|
17
22
|
# - Runtime retrieval by AI assistants, coding agents, and RAG systems
|
|
18
23
|
# for the purpose of providing contextual help to Karafka users
|
|
19
24
|
#
|
|
25
|
+
# Receipt, viewing, or possession of this software does not convey or
|
|
26
|
+
# imply any license or right beyond those expressly stated above.
|
|
27
|
+
#
|
|
20
28
|
# License: https://karafka.io/docs/Pro-License-Comm/
|
|
21
29
|
# Contact: contact@karafka.io
|
|
22
30
|
|