karafka 2.5.8 → 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.
Files changed (263) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/LICENSE-COMM +4 -2
  4. data/config/locales/pro_errors.yml +1 -0
  5. data/lib/karafka/admin/replication.rb +36 -4
  6. data/lib/karafka/pro/active_job/consumer.rb +8 -0
  7. data/lib/karafka/pro/active_job/dispatcher.rb +8 -0
  8. data/lib/karafka/pro/active_job/job_options_contract.rb +8 -0
  9. data/lib/karafka/pro/admin/recovery/errors.rb +8 -0
  10. data/lib/karafka/pro/admin/recovery.rb +8 -0
  11. data/lib/karafka/pro/base_consumer.rb +8 -0
  12. data/lib/karafka/pro/cleaner/errors.rb +8 -0
  13. data/lib/karafka/pro/cleaner/messages/message.rb +8 -0
  14. data/lib/karafka/pro/cleaner/messages/messages.rb +8 -0
  15. data/lib/karafka/pro/cleaner/messages/metadata.rb +8 -0
  16. data/lib/karafka/pro/cleaner.rb +8 -0
  17. data/lib/karafka/pro/cli/contracts/server.rb +8 -0
  18. data/lib/karafka/pro/cli/parallel_segments/base.rb +8 -0
  19. data/lib/karafka/pro/cli/parallel_segments/collapse.rb +8 -0
  20. data/lib/karafka/pro/cli/parallel_segments/distribute.rb +8 -0
  21. data/lib/karafka/pro/cli/parallel_segments.rb +8 -0
  22. data/lib/karafka/pro/cli/topics/health.rb +8 -0
  23. data/lib/karafka/pro/cli/topics.rb +8 -0
  24. data/lib/karafka/pro/connection/manager.rb +8 -0
  25. data/lib/karafka/pro/connection/multiplexing/listener.rb +8 -0
  26. data/lib/karafka/pro/contracts/base.rb +8 -0
  27. data/lib/karafka/pro/encryption/cipher.rb +8 -0
  28. data/lib/karafka/pro/encryption/contracts/config.rb +8 -0
  29. data/lib/karafka/pro/encryption/errors.rb +8 -0
  30. data/lib/karafka/pro/encryption/messages/middleware.rb +8 -0
  31. data/lib/karafka/pro/encryption/messages/parser.rb +8 -0
  32. data/lib/karafka/pro/encryption/setup/config.rb +8 -0
  33. data/lib/karafka/pro/encryption.rb +8 -0
  34. data/lib/karafka/pro/instrumentation/performance_tracker.rb +8 -0
  35. data/lib/karafka/pro/iterator/expander.rb +8 -0
  36. data/lib/karafka/pro/iterator/tpl_builder.rb +8 -0
  37. data/lib/karafka/pro/iterator.rb +8 -0
  38. data/lib/karafka/pro/loader.rb +8 -0
  39. data/lib/karafka/pro/processing/adaptive_iterator/consumer.rb +8 -0
  40. data/lib/karafka/pro/processing/adaptive_iterator/tracker.rb +8 -0
  41. data/lib/karafka/pro/processing/collapser.rb +8 -0
  42. data/lib/karafka/pro/processing/coordinator.rb +8 -0
  43. data/lib/karafka/pro/processing/coordinators/errors_tracker.rb +8 -0
  44. data/lib/karafka/pro/processing/coordinators/filters_applier.rb +8 -0
  45. data/lib/karafka/pro/processing/coordinators/virtual_offset_manager.rb +8 -0
  46. data/lib/karafka/pro/processing/executor.rb +8 -0
  47. data/lib/karafka/pro/processing/expansions_selector.rb +8 -0
  48. data/lib/karafka/pro/processing/filters/base.rb +8 -0
  49. data/lib/karafka/pro/processing/filters/delayer.rb +8 -0
  50. data/lib/karafka/pro/processing/filters/expirer.rb +8 -0
  51. data/lib/karafka/pro/processing/filters/inline_insights_delayer.rb +8 -0
  52. data/lib/karafka/pro/processing/filters/throttler.rb +8 -0
  53. data/lib/karafka/pro/processing/filters/virtual_limiter.rb +8 -0
  54. data/lib/karafka/pro/processing/jobs/consume_non_blocking.rb +8 -0
  55. data/lib/karafka/pro/processing/jobs/eofed_non_blocking.rb +8 -0
  56. data/lib/karafka/pro/processing/jobs/periodic.rb +8 -0
  57. data/lib/karafka/pro/processing/jobs/periodic_non_blocking.rb +8 -0
  58. data/lib/karafka/pro/processing/jobs/revoked_non_blocking.rb +8 -0
  59. data/lib/karafka/pro/processing/jobs_builder.rb +8 -0
  60. data/lib/karafka/pro/processing/jobs_queue.rb +8 -0
  61. data/lib/karafka/pro/processing/offset_metadata/consumer.rb +8 -0
  62. data/lib/karafka/pro/processing/offset_metadata/fetcher.rb +8 -0
  63. data/lib/karafka/pro/processing/offset_metadata/listener.rb +8 -0
  64. data/lib/karafka/pro/processing/parallel_segments/filters/base.rb +8 -0
  65. data/lib/karafka/pro/processing/parallel_segments/filters/default.rb +8 -0
  66. data/lib/karafka/pro/processing/parallel_segments/filters/mom.rb +8 -0
  67. data/lib/karafka/pro/processing/partitioner.rb +8 -0
  68. data/lib/karafka/pro/processing/periodic_job/consumer.rb +8 -0
  69. data/lib/karafka/pro/processing/piping/consumer.rb +8 -0
  70. data/lib/karafka/pro/processing/schedulers/base.rb +8 -0
  71. data/lib/karafka/pro/processing/schedulers/default.rb +8 -0
  72. data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_lrj_mom.rb +8 -0
  73. data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_lrj_mom_vp.rb +8 -0
  74. data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_mom.rb +8 -0
  75. data/lib/karafka/pro/processing/strategies/aj/dlq_ftr_mom_vp.rb +8 -0
  76. data/lib/karafka/pro/processing/strategies/aj/dlq_lrj_mom.rb +8 -0
  77. data/lib/karafka/pro/processing/strategies/aj/dlq_lrj_mom_vp.rb +8 -0
  78. data/lib/karafka/pro/processing/strategies/aj/dlq_mom.rb +8 -0
  79. data/lib/karafka/pro/processing/strategies/aj/dlq_mom_vp.rb +8 -0
  80. data/lib/karafka/pro/processing/strategies/aj/ftr_lrj_mom.rb +8 -0
  81. data/lib/karafka/pro/processing/strategies/aj/ftr_lrj_mom_vp.rb +8 -0
  82. data/lib/karafka/pro/processing/strategies/aj/ftr_mom.rb +8 -0
  83. data/lib/karafka/pro/processing/strategies/aj/ftr_mom_vp.rb +8 -0
  84. data/lib/karafka/pro/processing/strategies/aj/lrj_mom.rb +8 -0
  85. data/lib/karafka/pro/processing/strategies/aj/lrj_mom_vp.rb +8 -0
  86. data/lib/karafka/pro/processing/strategies/aj/mom.rb +8 -0
  87. data/lib/karafka/pro/processing/strategies/aj/mom_vp.rb +8 -0
  88. data/lib/karafka/pro/processing/strategies/base.rb +8 -0
  89. data/lib/karafka/pro/processing/strategies/default.rb +8 -0
  90. data/lib/karafka/pro/processing/strategies/dlq/default.rb +8 -0
  91. data/lib/karafka/pro/processing/strategies/dlq/ftr.rb +8 -0
  92. data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj.rb +8 -0
  93. data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj_mom.rb +8 -0
  94. data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj_mom_vp.rb +8 -0
  95. data/lib/karafka/pro/processing/strategies/dlq/ftr_lrj_vp.rb +8 -0
  96. data/lib/karafka/pro/processing/strategies/dlq/ftr_mom.rb +8 -0
  97. data/lib/karafka/pro/processing/strategies/dlq/ftr_mom_vp.rb +8 -0
  98. data/lib/karafka/pro/processing/strategies/dlq/ftr_vp.rb +8 -0
  99. data/lib/karafka/pro/processing/strategies/dlq/lrj.rb +8 -0
  100. data/lib/karafka/pro/processing/strategies/dlq/lrj_mom.rb +8 -0
  101. data/lib/karafka/pro/processing/strategies/dlq/lrj_mom_vp.rb +8 -0
  102. data/lib/karafka/pro/processing/strategies/dlq/lrj_vp.rb +8 -0
  103. data/lib/karafka/pro/processing/strategies/dlq/mom.rb +8 -0
  104. data/lib/karafka/pro/processing/strategies/dlq/mom_vp.rb +8 -0
  105. data/lib/karafka/pro/processing/strategies/dlq/vp.rb +8 -0
  106. data/lib/karafka/pro/processing/strategies/ftr/default.rb +8 -0
  107. data/lib/karafka/pro/processing/strategies/ftr/vp.rb +8 -0
  108. data/lib/karafka/pro/processing/strategies/lrj/default.rb +8 -0
  109. data/lib/karafka/pro/processing/strategies/lrj/ftr.rb +8 -0
  110. data/lib/karafka/pro/processing/strategies/lrj/ftr_mom.rb +8 -0
  111. data/lib/karafka/pro/processing/strategies/lrj/ftr_mom_vp.rb +8 -0
  112. data/lib/karafka/pro/processing/strategies/lrj/ftr_vp.rb +8 -0
  113. data/lib/karafka/pro/processing/strategies/lrj/mom.rb +8 -0
  114. data/lib/karafka/pro/processing/strategies/lrj/mom_vp.rb +8 -0
  115. data/lib/karafka/pro/processing/strategies/lrj/vp.rb +8 -0
  116. data/lib/karafka/pro/processing/strategies/mom/default.rb +8 -0
  117. data/lib/karafka/pro/processing/strategies/mom/ftr.rb +8 -0
  118. data/lib/karafka/pro/processing/strategies/mom/ftr_vp.rb +8 -0
  119. data/lib/karafka/pro/processing/strategies/mom/vp.rb +8 -0
  120. data/lib/karafka/pro/processing/strategies/vp/default.rb +8 -0
  121. data/lib/karafka/pro/processing/strategies.rb +8 -0
  122. data/lib/karafka/pro/processing/strategy_selector.rb +8 -0
  123. data/lib/karafka/pro/processing/subscription_groups_coordinator.rb +8 -0
  124. data/lib/karafka/pro/processing/virtual_partitions/distributors/balanced.rb +8 -0
  125. data/lib/karafka/pro/processing/virtual_partitions/distributors/base.rb +8 -0
  126. data/lib/karafka/pro/processing/virtual_partitions/distributors/consistent.rb +8 -0
  127. data/lib/karafka/pro/recurring_tasks/consumer.rb +8 -0
  128. data/lib/karafka/pro/recurring_tasks/contracts/config.rb +8 -0
  129. data/lib/karafka/pro/recurring_tasks/contracts/task.rb +8 -0
  130. data/lib/karafka/pro/recurring_tasks/deserializer.rb +8 -0
  131. data/lib/karafka/pro/recurring_tasks/dispatcher.rb +8 -0
  132. data/lib/karafka/pro/recurring_tasks/errors.rb +8 -0
  133. data/lib/karafka/pro/recurring_tasks/executor.rb +8 -0
  134. data/lib/karafka/pro/recurring_tasks/listener.rb +8 -0
  135. data/lib/karafka/pro/recurring_tasks/matcher.rb +8 -0
  136. data/lib/karafka/pro/recurring_tasks/schedule.rb +8 -0
  137. data/lib/karafka/pro/recurring_tasks/serializer.rb +8 -0
  138. data/lib/karafka/pro/recurring_tasks/setup/config.rb +8 -0
  139. data/lib/karafka/pro/recurring_tasks/task.rb +8 -0
  140. data/lib/karafka/pro/recurring_tasks.rb +8 -0
  141. data/lib/karafka/pro/routing/features/active_job/builder.rb +8 -0
  142. data/lib/karafka/pro/routing/features/active_job.rb +8 -0
  143. data/lib/karafka/pro/routing/features/adaptive_iterator/config.rb +8 -0
  144. data/lib/karafka/pro/routing/features/adaptive_iterator/contracts/topic.rb +8 -0
  145. data/lib/karafka/pro/routing/features/adaptive_iterator/topic.rb +8 -0
  146. data/lib/karafka/pro/routing/features/adaptive_iterator.rb +8 -0
  147. data/lib/karafka/pro/routing/features/base.rb +8 -0
  148. data/lib/karafka/pro/routing/features/dead_letter_queue/contracts/topic.rb +8 -0
  149. data/lib/karafka/pro/routing/features/dead_letter_queue/topic.rb +8 -0
  150. data/lib/karafka/pro/routing/features/dead_letter_queue.rb +8 -0
  151. data/lib/karafka/pro/routing/features/delaying/config.rb +8 -0
  152. data/lib/karafka/pro/routing/features/delaying/contracts/topic.rb +8 -0
  153. data/lib/karafka/pro/routing/features/delaying/topic.rb +8 -0
  154. data/lib/karafka/pro/routing/features/delaying.rb +8 -0
  155. data/lib/karafka/pro/routing/features/direct_assignments/config.rb +8 -0
  156. data/lib/karafka/pro/routing/features/direct_assignments/contracts/consumer_group.rb +8 -0
  157. data/lib/karafka/pro/routing/features/direct_assignments/contracts/topic.rb +8 -0
  158. data/lib/karafka/pro/routing/features/direct_assignments/subscription_group.rb +8 -0
  159. data/lib/karafka/pro/routing/features/direct_assignments/topic.rb +8 -0
  160. data/lib/karafka/pro/routing/features/direct_assignments.rb +8 -0
  161. data/lib/karafka/pro/routing/features/expiring/config.rb +8 -0
  162. data/lib/karafka/pro/routing/features/expiring/contracts/topic.rb +8 -0
  163. data/lib/karafka/pro/routing/features/expiring/topic.rb +8 -0
  164. data/lib/karafka/pro/routing/features/expiring.rb +8 -0
  165. data/lib/karafka/pro/routing/features/filtering/config.rb +8 -0
  166. data/lib/karafka/pro/routing/features/filtering/contracts/topic.rb +8 -0
  167. data/lib/karafka/pro/routing/features/filtering/topic.rb +8 -0
  168. data/lib/karafka/pro/routing/features/filtering.rb +8 -0
  169. data/lib/karafka/pro/routing/features/inline_insights/config.rb +8 -0
  170. data/lib/karafka/pro/routing/features/inline_insights/contracts/topic.rb +8 -0
  171. data/lib/karafka/pro/routing/features/inline_insights/topic.rb +8 -0
  172. data/lib/karafka/pro/routing/features/inline_insights.rb +8 -0
  173. data/lib/karafka/pro/routing/features/long_running_job/config.rb +8 -0
  174. data/lib/karafka/pro/routing/features/long_running_job/contracts/topic.rb +8 -0
  175. data/lib/karafka/pro/routing/features/long_running_job/topic.rb +8 -0
  176. data/lib/karafka/pro/routing/features/long_running_job.rb +8 -0
  177. data/lib/karafka/pro/routing/features/multiplexing/config.rb +8 -0
  178. data/lib/karafka/pro/routing/features/multiplexing/contracts/routing.rb +81 -0
  179. data/lib/karafka/pro/routing/features/multiplexing/contracts/topic.rb +8 -0
  180. data/lib/karafka/pro/routing/features/multiplexing/patches/contracts/consumer_group.rb +8 -0
  181. data/lib/karafka/pro/routing/features/multiplexing/proxy.rb +8 -0
  182. data/lib/karafka/pro/routing/features/multiplexing/subscription_group.rb +8 -0
  183. data/lib/karafka/pro/routing/features/multiplexing/subscription_groups_builder.rb +8 -0
  184. data/lib/karafka/pro/routing/features/multiplexing.rb +17 -2
  185. data/lib/karafka/pro/routing/features/non_blocking_job/topic.rb +8 -0
  186. data/lib/karafka/pro/routing/features/non_blocking_job.rb +8 -0
  187. data/lib/karafka/pro/routing/features/offset_metadata/config.rb +8 -0
  188. data/lib/karafka/pro/routing/features/offset_metadata/contracts/topic.rb +8 -0
  189. data/lib/karafka/pro/routing/features/offset_metadata/topic.rb +8 -0
  190. data/lib/karafka/pro/routing/features/offset_metadata.rb +8 -0
  191. data/lib/karafka/pro/routing/features/parallel_segments/builder.rb +8 -0
  192. data/lib/karafka/pro/routing/features/parallel_segments/config.rb +8 -0
  193. data/lib/karafka/pro/routing/features/parallel_segments/consumer_group.rb +8 -0
  194. data/lib/karafka/pro/routing/features/parallel_segments/contracts/consumer_group.rb +8 -0
  195. data/lib/karafka/pro/routing/features/parallel_segments/topic.rb +8 -0
  196. data/lib/karafka/pro/routing/features/parallel_segments.rb +8 -0
  197. data/lib/karafka/pro/routing/features/patterns/builder.rb +8 -0
  198. data/lib/karafka/pro/routing/features/patterns/config.rb +8 -0
  199. data/lib/karafka/pro/routing/features/patterns/consumer_group.rb +8 -0
  200. data/lib/karafka/pro/routing/features/patterns/contracts/consumer_group.rb +8 -0
  201. data/lib/karafka/pro/routing/features/patterns/contracts/pattern.rb +8 -0
  202. data/lib/karafka/pro/routing/features/patterns/contracts/topic.rb +8 -0
  203. data/lib/karafka/pro/routing/features/patterns/detector.rb +8 -0
  204. data/lib/karafka/pro/routing/features/patterns/pattern.rb +8 -0
  205. data/lib/karafka/pro/routing/features/patterns/patterns.rb +8 -0
  206. data/lib/karafka/pro/routing/features/patterns/topic.rb +8 -0
  207. data/lib/karafka/pro/routing/features/patterns/topics.rb +8 -0
  208. data/lib/karafka/pro/routing/features/patterns.rb +8 -0
  209. data/lib/karafka/pro/routing/features/pausing/config.rb +8 -0
  210. data/lib/karafka/pro/routing/features/pausing/contracts/topic.rb +8 -0
  211. data/lib/karafka/pro/routing/features/pausing/topic.rb +8 -0
  212. data/lib/karafka/pro/routing/features/pausing.rb +8 -0
  213. data/lib/karafka/pro/routing/features/periodic_job/config.rb +8 -0
  214. data/lib/karafka/pro/routing/features/periodic_job/contracts/topic.rb +8 -0
  215. data/lib/karafka/pro/routing/features/periodic_job/topic.rb +8 -0
  216. data/lib/karafka/pro/routing/features/periodic_job.rb +8 -0
  217. data/lib/karafka/pro/routing/features/recurring_tasks/builder.rb +8 -0
  218. data/lib/karafka/pro/routing/features/recurring_tasks/config.rb +8 -0
  219. data/lib/karafka/pro/routing/features/recurring_tasks/contracts/topic.rb +8 -0
  220. data/lib/karafka/pro/routing/features/recurring_tasks/proxy.rb +8 -0
  221. data/lib/karafka/pro/routing/features/recurring_tasks/topic.rb +8 -0
  222. data/lib/karafka/pro/routing/features/recurring_tasks.rb +8 -0
  223. data/lib/karafka/pro/routing/features/scheduled_messages/builder.rb +8 -0
  224. data/lib/karafka/pro/routing/features/scheduled_messages/config.rb +8 -0
  225. data/lib/karafka/pro/routing/features/scheduled_messages/contracts/topic.rb +8 -0
  226. data/lib/karafka/pro/routing/features/scheduled_messages/proxy.rb +8 -0
  227. data/lib/karafka/pro/routing/features/scheduled_messages/topic.rb +8 -0
  228. data/lib/karafka/pro/routing/features/scheduled_messages.rb +8 -0
  229. data/lib/karafka/pro/routing/features/swarm/config.rb +8 -0
  230. data/lib/karafka/pro/routing/features/swarm/contracts/routing.rb +8 -0
  231. data/lib/karafka/pro/routing/features/swarm/contracts/topic.rb +8 -0
  232. data/lib/karafka/pro/routing/features/swarm/topic.rb +8 -0
  233. data/lib/karafka/pro/routing/features/swarm.rb +8 -0
  234. data/lib/karafka/pro/routing/features/throttling/config.rb +8 -0
  235. data/lib/karafka/pro/routing/features/throttling/contracts/topic.rb +8 -0
  236. data/lib/karafka/pro/routing/features/throttling/topic.rb +8 -0
  237. data/lib/karafka/pro/routing/features/throttling.rb +8 -0
  238. data/lib/karafka/pro/routing/features/virtual_partitions/config.rb +8 -0
  239. data/lib/karafka/pro/routing/features/virtual_partitions/contracts/topic.rb +8 -0
  240. data/lib/karafka/pro/routing/features/virtual_partitions/topic.rb +8 -0
  241. data/lib/karafka/pro/routing/features/virtual_partitions.rb +8 -0
  242. data/lib/karafka/pro/scheduled_messages/consumer.rb +8 -0
  243. data/lib/karafka/pro/scheduled_messages/contracts/config.rb +8 -0
  244. data/lib/karafka/pro/scheduled_messages/contracts/message.rb +8 -0
  245. data/lib/karafka/pro/scheduled_messages/daily_buffer.rb +8 -0
  246. data/lib/karafka/pro/scheduled_messages/day.rb +8 -0
  247. data/lib/karafka/pro/scheduled_messages/deserializers/headers.rb +8 -0
  248. data/lib/karafka/pro/scheduled_messages/deserializers/payload.rb +8 -0
  249. data/lib/karafka/pro/scheduled_messages/dispatcher.rb +8 -0
  250. data/lib/karafka/pro/scheduled_messages/errors.rb +8 -0
  251. data/lib/karafka/pro/scheduled_messages/max_epoch.rb +8 -0
  252. data/lib/karafka/pro/scheduled_messages/proxy.rb +8 -0
  253. data/lib/karafka/pro/scheduled_messages/schema_validator.rb +8 -0
  254. data/lib/karafka/pro/scheduled_messages/serializer.rb +8 -0
  255. data/lib/karafka/pro/scheduled_messages/setup/config.rb +8 -0
  256. data/lib/karafka/pro/scheduled_messages/state.rb +8 -0
  257. data/lib/karafka/pro/scheduled_messages/tracker.rb +8 -0
  258. data/lib/karafka/pro/scheduled_messages.rb +8 -0
  259. data/lib/karafka/pro/swarm/liveness_listener.rb +29 -14
  260. data/lib/karafka/setup/config_proxy.rb +9 -1
  261. data/lib/karafka/swarm/liveness_listener.rb +17 -8
  262. data/lib/karafka/version.rb +1 -1
  263. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a0dd67b39af3fbad16ce4c96f061309d97e21ae95bcace2bab1e7879823a622
4
- data.tar.gz: 0061a806b411a0526826327be18946fb39fe90c324a82e45d329ef9a45e3168a
3
+ metadata.gz: 0a43645cb0713b1565aa8ff9b3779d5d19225f08d2449e816ab17aaa532a6ffd
4
+ data.tar.gz: 438e1dcb6d6b65fd29e2d4f2feb6cee80cf8c629cba273b3e2936637379cda75
5
5
  SHA512:
6
- metadata.gz: 7cae09aabcea7cf6eb692bc5747dc51327601eebd680314a62c064c626f79db17a7a6c3f0e49a6a95859eeb4d6e30a51b7a6cb3b7acd1c69400734981e926db6
7
- data.tar.gz: 1c1c031bd16d1da91fa7fc3a2627e157db698b51883c91197c6cf5311d19abd8d9be75742db447d588e73c1a30dca196f991a4ec9ee49f31090fcb2863f45b47
6
+ metadata.gz: 44a2d60d274f70321846a4190e007f4d5c75f22e995835fe92cf29a5a658ed7eb99bd96147d6cfa08e9821676ca7064fcd095ecf17b6ac4014c018d885621e27
7
+ data.tar.gz: 4eb201aeb1e1d416008913c58b7f39637dce2342506f0032d8556b285025cf23f1475f8cf08f2d91a4ee00a9241902e26fc8ca7297547a41cd0b1126d09029ac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Karafka Framework Changelog
2
2
 
3
+ ## 2.5.9 (2026-03-30)
4
+ - [Enhancement] Validate that `statistics.interval.ms` is not zero when dynamic multiplexing is enabled (Pro).
5
+ - [Fix] Fix swarm liveness reporting to also use `on_connection_listener_fetch_loop` so nodes stay alive when `statistics.interval.ms` is disabled.
6
+ - [Fix] Fix `ConfigProxy#producer` when called as a reader resetting the producer to nil instead of returning its value (#3076).
7
+ - [Fix] Fix `Replication#build_generate_command` using `--reassignment-json-file` with `--generate` instead of `--topics-to-move-json-file` and `--broker-list` ([#3087](https://github.com/karafka/karafka/issues/3087)).
8
+
3
9
  ## 2.5.8 (2026-03-23)
4
10
  - **[Feature]** Add `Karafka::Admin::Recovery` for coordinator-bypass offset reading and consumer group migration when the Kafka group coordinator is in a FAILED state (Pro).
5
11
 
data/LICENSE-COMM CHANGED
@@ -10,7 +10,7 @@ In order to use the Software under this Agreement, you must either: (a) receive
10
10
 
11
11
  1. License Grant
12
12
 
13
- 1.1 General Use. This Agreement grants you a non-exclusive, non-transferable, limited license to the use rights for the Software, without the right to grant sublicenses, subject to the terms and conditions in this Agreement. The Software is licensed, not sold.
13
+ 1.1 General Use. This Agreement grants you a non-exclusive, non-transferable, limited license to the use rights for the Software, without the right to grant sublicenses, subject to the terms and conditions in this Agreement. The Software is licensed, not sold. No patent rights are granted under this Agreement. This license grant covers only the copyright rights necessary to use the Software as expressly permitted herein.
14
14
 
15
15
  1.1.1 Entity Definition. Where you have purchased or otherwise acquired the Software as or for an entity, "you" and "your" refer exclusively to the single legal entity (such as a corporation, limited liability company, partnership, or other legally recognized organization) that is the named licensee. This license does not extend to any parent company, subsidiary, affiliate, related entity, or other member of a corporate group, regardless of ownership structure or control relationships. Each separate legal entity requires its own license.
16
16
 
@@ -30,7 +30,9 @@ In order to use the Software under this Agreement, you must either: (a) receive
30
30
 
31
31
  3.2 UNDER NO CIRCUMSTANCES MAY YOU USE THE SOFTWARE AS PART OF A PRODUCT OR SERVICE THAT PROVIDES SIMILAR FUNCTIONALITY TO THE SOFTWARE ITSELF.
32
32
 
33
- 3.3 ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING PROHIBITION. WITHOUT LIMITING THE GENERALITY OF SECTION 3.1, THE SOFTWARE AND ITS SOURCE CODE MAY NOT BE USED IN ANY MANNER TO TRAIN, DEVELOP, IMPROVE, OR VALIDATE ANY ARTIFICIAL INTELLIGENCE OR MACHINE LEARNING SYSTEM. THIS PROHIBITION APPLIES REGARDLESS OF WHETHER THE SOFTWARE IS ACCESSED DIRECTLY, THROUGH AUTOMATED MEANS, OR VIA THIRD-PARTY DATASETS OR SERVICES. ANY SUCH USE CONSTITUTES A MATERIAL BREACH OF THIS AGREEMENT AND MAY RESULT IN IMMEDIATE TERMINATION OF YOUR LICENSE AND PURSUIT OF ALL AVAILABLE LEGAL REMEDIES. For clarity, this prohibition applies to the training and development of AI systems, and does not restrict licensed users from utilizing AI-powered development tools in the ordinary course of developing software that integrates with the Software.
33
+ 3.3 ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING PROHIBITION. WITHOUT LIMITING THE GENERALITY OF SECTION 3.1, THE SOFTWARE AND ITS SOURCE CODE MAY NOT BE USED IN ANY MANNER TO TRAIN, DEVELOP, IMPROVE, OR VALIDATE ANY ARTIFICIAL INTELLIGENCE OR MACHINE LEARNING SYSTEM. THIS PROHIBITION APPLIES REGARDLESS OF WHETHER THE SOFTWARE IS ACCESSED DIRECTLY, THROUGH AUTOMATED MEANS, OR VIA THIRD-PARTY DATASETS OR SERVICES. ANY SUCH USE CONSTITUTES A MATERIAL BREACH OF THIS AGREEMENT AND MAY RESULT IN IMMEDIATE TERMINATION OF YOUR LICENSE AND PURSUIT OF ALL AVAILABLE LEGAL REMEDIES. For clarity, this prohibition applies to the training and development of AI systems, and does not restrict licensed users from utilizing AI-powered development tools in the ordinary course of developing software that integrates with the Software. Additionally, runtime retrieval of the Software's source code by AI assistants, coding agents, and retrieval-augmented generation (RAG) systems is permitted solely for the purpose of providing contextual help to Karafka users, provided that such retrieval does not result in the storage, reproduction, or use of the source code for training, fine-tuning, or improving any AI or machine learning system.
34
+
35
+ 3.4 Source-Available Access. The Software's source code is made available for reading, referencing, and linking for personal or commercial use. This permits viewing the source code for informational purposes, referencing it in discussions or documentation, and linking to the official repository. Such access does not constitute a license to use, copy, reproduce, modify, or distribute the Software or any portion thereof. All restrictions in Sections 3.1, 3.2, and 3.3 remain fully applicable regardless of how the source code was accessed. Receipt, viewing, or possession of the Software's source code does not convey or imply any license or right beyond those expressly granted in this Agreement.
34
36
 
35
37
  The Open Source version of the Software ("LGPL Version") is licensed under the terms of the GNU Lesser General Public License version 3.0 ("LGPL") and not under this EULA.
36
38
 
@@ -2,6 +2,7 @@ en:
2
2
  validations:
3
3
  routing:
4
4
  swarm_nodes_not_used: 'At least one of the nodes has no assignments'
5
+ multiplexing_statistics_required_for_dynamic_multiplexing: 'Dynamic multiplexing requires statistics to be enabled (statistics.interval.ms must be greater than 0)'
5
6
 
6
7
  topic:
7
8
  virtual_partitions.partitioner_respond_to_call: needs to be defined and needs to respond to `#call`
@@ -55,6 +55,7 @@ module Karafka
55
55
  :target_replication_factor,
56
56
  :partitions_assignment,
57
57
  :reassignment_json,
58
+ :topics_to_move_json,
58
59
  :execution_commands,
59
60
  :steps
60
61
  )
@@ -108,6 +109,7 @@ module Karafka
108
109
  @cluster_info = cluster_info
109
110
 
110
111
  generate_reassignment_json
112
+ generate_topics_to_move_json
111
113
  generate_execution_commands
112
114
  generate_steps
113
115
 
@@ -256,6 +258,15 @@ module Karafka
256
258
  file_path
257
259
  end
258
260
 
261
+ # Export the topics-to-move JSON to a file for use with kafka-reassign-partitions.sh
262
+ # --generate. This optional step lets you ask Kafka to propose its own reassignment plan
263
+ # so you can compare it against the plan Karafka generated before executing.
264
+ # @param file_path [String] path where to save the JSON file
265
+ def export_topics_to_move_file(file_path)
266
+ File.write(file_path, @topics_to_move_json)
267
+ file_path
268
+ end
269
+
259
270
  # @return [String] human-readable summary of the plan
260
271
  def summary
261
272
  broker_count = @cluster_info[:brokers].size
@@ -428,6 +439,19 @@ module Karafka
428
439
  @reassignment_json = JSON.pretty_generate(reassignment_data)
429
440
  end
430
441
 
442
+ # Generates the topics-to-move JSON required by kafka-reassign-partitions.sh --generate.
443
+ # This file is only needed when you want Kafka to propose its own reassignment plan for
444
+ # comparison against the plan Karafka already computed. It is not required for execution.
445
+ # @return [void]
446
+ def generate_topics_to_move_json
447
+ topics_data = {
448
+ version: 1,
449
+ topics: [{ topic: @topic }]
450
+ }
451
+
452
+ @topics_to_move_json = JSON.pretty_generate(topics_data)
453
+ end
454
+
431
455
  # Generates command templates for executing the reassignment plan
432
456
  # Builds generate, execute, and verify command templates with placeholders
433
457
  # @return [void]
@@ -439,11 +463,16 @@ module Karafka
439
463
  }
440
464
  end
441
465
 
442
- # Builds the kafka-reassign-partitions.sh command for generating reassignment plan
443
- # @return [String] command template with placeholder for broker addresses
466
+ # Builds the kafka-reassign-partitions.sh --generate command that asks Kafka to propose
467
+ # its own reassignment plan. This is optional you can compare Kafka's suggestion against
468
+ # the plan Karafka already computed, or skip this step and go straight to --execute.
469
+ # @return [String] command template with placeholders for broker addresses and IDs
444
470
  def build_generate_command
471
+ broker_ids = @cluster_info[:brokers].map { |b| b[:node_id] }.sort.join(",")
472
+
445
473
  "kafka-reassign-partitions.sh --bootstrap-server <KAFKA_BROKERS> " \
446
- "--reassignment-json-file reassignment.json --generate"
474
+ "--topics-to-move-json-file topics-to-move.json " \
475
+ "--broker-list #{broker_ids} --generate"
447
476
  end
448
477
 
449
478
  # Builds the kafka-reassign-partitions.sh command for executing reassignment
@@ -466,7 +495,10 @@ module Karafka
466
495
  def generate_steps
467
496
  @steps = [
468
497
  "1. Export the reassignment JSON using: plan.export_to_file('reassignment.json')",
469
- "2. Validate the plan (optional): #{@execution_commands[:generate]}",
498
+ "2. (Optional) Compare against Kafka's own proposal:",
499
+ " a. Export topics-to-move JSON: plan.export_topics_to_move_file('topics-to-move.json')",
500
+ " b. Ask Kafka to generate its plan: #{@execution_commands[:generate]}",
501
+ " c. Compare Kafka's output with the Karafka-generated reassignment.json above",
470
502
  "3. Execute the reassignment: #{@execution_commands[:execute]}",
471
503
  "4. Monitor progress: #{@execution_commands[:verify]}",
472
504
  "5. Verify completion by checking topic metadata",
@@ -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