racecar 2.0.0.beta6 → 2.0.0
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 +20 -20
- data/README.md +0 -2
- data/lib/racecar/version.rb +1 -1
- metadata +9 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbf41d42dfa928893b72e569837c86cdab99e180a4c182c6b7ef7194553f57f5
|
4
|
+
data.tar.gz: 4e67b732e59c59431c34a19d32b0a5d0ffae64a31fd858e35d2673b26c3ac192
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a501912a2c4f9f8d32c943b1c9516042998b241ce743449c3db48623507e360bc14af96c70a2f3b1448550de9e5e6a45d917bf31b3a2f6270f4401eed9c1d70a
|
7
|
+
data.tar.gz: 8e13043d7f41ff8fcaa47d7e5b1cdd4f5a2fd75eba04579172e31dbe76c7831a0d8fc9ed1dd976baec2a8d782c6ad4656f96709d7b3161f7186004aa633a5324
|
data/CHANGELOG.md
CHANGED
@@ -2,30 +2,30 @@
|
|
2
2
|
|
3
3
|
## racecar v2.0.0
|
4
4
|
|
5
|
+
* Replace `ruby-kafka` with `rdkafka-ruby` as the low-level library underneath Racecar.
|
5
6
|
* Fix `max_wait_time` usage (#179).
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* [Racecar::Consumer]
|
9
|
-
* [Racecar::Consumer] `
|
10
|
-
* [Racecar::Consumer] `
|
11
|
-
* [Racecar::Consumer]
|
12
|
-
* [Racecar::Consumer]
|
13
|
-
* [Racecar::Consumer]
|
14
|
-
* [Racecar::Consumer]
|
15
|
-
* [Racecar::
|
16
|
-
* [Racecar::Config]
|
17
|
-
* [Racecar::Config]
|
18
|
-
* [Racecar::Config]
|
19
|
-
* [Racecar::Config] Add `
|
20
|
-
* [Racecar::Config]
|
21
|
-
* [Racecar::Config]
|
22
|
-
* [Racecar::Config] SASL configuration via `sasl_mechanism`, `sasl_kerberos_service_name`, `sasl_kerberos_principal`, `sasl_kerberos_kinit_cmd`, `sasl_kerberos_keytab`, `sasl_kerberos_min_time_before_relogin`, `sasl_username` and `sasl_password`
|
7
|
+
* Removed config option `sasl_over_ssl`.
|
8
|
+
* [Racecar::Consumer] Do not pause consuming partitions on exception.
|
9
|
+
* [Racecar::Consumer] `topic`, `payload` and `key` are mandadory to method `produce`.
|
10
|
+
* [Racecar::Consumer] `process_batch` retrieves an array of messages instead of batch object.
|
11
|
+
* [Racecar::Consumer] Remove `offset_retention_time`.
|
12
|
+
* [Racecar::Consumer] Allow providing `additional_config` for subscriptions.
|
13
|
+
* [Racecar::Consumer] Provide access to `producer` and `consumer`.
|
14
|
+
* [Racecar::Consumer] Enforce delivering messages with method `deliver!`.
|
15
|
+
* [Racecar::Consumer] instead of raising when a partition EOF is reached, the result can be queried through `consumer.last_poll_read_partition_eof?`.
|
16
|
+
* [Racecar::Config] Remove `offset_retention_time`, `connect_timeout` and `offset_commit_threshold`.
|
17
|
+
* [Racecar::Config] Pass config to `rdkafka-ruby` via `producer` and `consumer`.
|
18
|
+
* [Racecar::Config] Replace `max_fetch_queue_size` with `min_message_queue_size`.
|
19
|
+
* [Racecar::Config] Add `synchronous_commits` to control blocking of `consumer.commit` (default `false`).
|
20
|
+
* [Racecar::Config] Add `security_protocol` to control protocol between client and broker.
|
21
|
+
* [Racecar::Config] SSL configuration via `ssl_ca_location`, `ssl_crl_location`, `ssl_keystore_location` and `ssl_keystore_password`.
|
22
|
+
* [Racecar::Config] SASL configuration via `sasl_mechanism`, `sasl_kerberos_service_name`, `sasl_kerberos_principal`, `sasl_kerberos_kinit_cmd`, `sasl_kerberos_keytab`, `sasl_kerberos_min_time_before_relogin`, `sasl_username` and `sasl_password`.
|
23
23
|
* [Instrumentation] `produce_message.racecar` sent whenever a produced message is queued. Payload includes `topic`, `key`, `value` and `create_time`.
|
24
24
|
* [Instrumentation] `acknowledged_message.racecar` send whenever a produced message was successfully received by Kafka. Payload includes `offset` and `partition`, but no message details.
|
25
|
-
* [Instrumentation] `rdkafka-ruby` does not yet provide instrumentation [rdkafka-ruby#54](https://github.com/appsignal/rdkafka-ruby/issues/54)
|
26
|
-
* [Instrumentation] if processors define a `statistics_callback`, it will be called once every second for every subscription or producer connection. The first argument will be a Hash, for contents see [librdkafka STATISTICS.md](https://github.com/edenhill/librdkafka/blob/master/STATISTICS.md)
|
25
|
+
* [Instrumentation] `rdkafka-ruby` does not yet provide instrumentation [rdkafka-ruby#54](https://github.com/appsignal/rdkafka-ruby/issues/54).
|
26
|
+
* [Instrumentation] if processors define a `statistics_callback`, it will be called once every second for every subscription or producer connection. The first argument will be a Hash, for contents see [librdkafka STATISTICS.md](https://github.com/edenhill/librdkafka/blob/master/STATISTICS.md).
|
27
27
|
* Add current directory to `$LOAD_PATH` only when `--require` option is used (#117).
|
28
|
-
* Remove manual heartbeat support, see [Long-running message processing section in README](README.md#long-running-message-processing)
|
28
|
+
* Remove manual heartbeat support, see [Long-running message processing section in README](README.md#long-running-message-processing).
|
29
29
|
|
30
30
|
## racecar v1.0.0
|
31
31
|
|
data/README.md
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
**IMPORTANT:** The `master` branch is unstable, working towards a v2 release that breaks a lot of stuff. Use the `v1-stable` branch if you want to suggest changes.
|
2
|
-
|
3
1
|
# Racecar
|
4
2
|
|
5
3
|
Racecar is a friendly and easy-to-approach Kafka consumer framework. It allows you to write small applications that process messages stored in Kafka topics while optionally integrating with your Rails models.
|
data/lib/racecar/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: racecar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Schierbeck
|
8
8
|
- Benjamin Quorning
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-08-
|
12
|
+
date: 2020-08-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: king_konf
|
@@ -141,7 +141,7 @@ dependencies:
|
|
141
141
|
- - "<"
|
142
142
|
- !ruby/object:Gem::Version
|
143
143
|
version: '6.1'
|
144
|
-
description:
|
144
|
+
description:
|
145
145
|
email:
|
146
146
|
- dschierbeck@zendesk.com
|
147
147
|
- bquorning@zendesk.com
|
@@ -192,7 +192,7 @@ homepage: https://github.com/zendesk/racecar
|
|
192
192
|
licenses:
|
193
193
|
- Apache License Version 2.0
|
194
194
|
metadata: {}
|
195
|
-
post_install_message:
|
195
|
+
post_install_message:
|
196
196
|
rdoc_options: []
|
197
197
|
require_paths:
|
198
198
|
- lib
|
@@ -203,13 +203,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
203
203
|
version: '0'
|
204
204
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
205
205
|
requirements:
|
206
|
-
- - "
|
206
|
+
- - ">="
|
207
207
|
- !ruby/object:Gem::Version
|
208
|
-
version:
|
208
|
+
version: '0'
|
209
209
|
requirements: []
|
210
|
-
|
211
|
-
|
212
|
-
signing_key:
|
210
|
+
rubygems_version: 3.1.2
|
211
|
+
signing_key:
|
213
212
|
specification_version: 4
|
214
213
|
summary: A framework for running Kafka consumers
|
215
214
|
test_files: []
|