aws-kclrb 2.2.1 → 3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4dd6ede1a7aa0466ef8e1723c123e8bb7f85fdf402dc07ce3c072fa35fae0a1b
4
- data.tar.gz: 27e720ee910c747987d98a8f57947bef22f8a8c06cf77a281f855201b5cdd667
3
+ metadata.gz: 3beff85e7553d852f6c1dfadd44ee7279fdb29256f2ed40fd98358b51751ae72
4
+ data.tar.gz: 3c63d7db385a48655dfde264d574859084d71aa7eb5dd3f4642673e8076fca53
5
5
  SHA512:
6
- metadata.gz: e8e7e26dc290f51b5afaa8ade16c5b54992a43966612c3538533fe792eb2e7e0987a30c82608d3a315b72451ee6b36fef9dad30b712fd86c47bc85d20dafd6d8
7
- data.tar.gz: b004c2af8b27f7068e1cd70dc5e6afafc779566a15ff9e78db0bdf55aa214ad0cfdd28c392d1d73978749655ae22102131ac4391d61c66a7dc8fe14e1a6e14d4
6
+ metadata.gz: 8c6979336047673a21d5012c4ecd7afb23e51c51aa510b359b5520af40911ceff6a32db68f496fa6c55d2d9112ff9b754607e7a1d2badd47f8a4b943c84ad983
7
+ data.tar.gz: b180e3db5cf893c5104cd2522eb5d997015f241be081d974f0f5deb317177d2934a95dc7ef6d805c4cc64d6d98c28581d9c21e0199bc32c7c6ccd3e66171d8cf
data/README.md CHANGED
@@ -11,38 +11,38 @@ This package wraps and manages the interaction with the [MultiLangDaemon][multi-
11
11
  executable. A record processor in Ruby typically looks something like:
12
12
 
13
13
  ```ruby
14
- #! /usr/bin/env ruby
15
-
16
- require 'aws/kclrb'
17
-
18
- class SampleRecordProcessor < Aws::KCLrb::V2::RecordProcessorBase
19
- def init_processor(initialize_input)
20
- # initialize
21
- end
22
-
23
- def process_records(process_records_input)
24
- # process batch of records
25
- end
26
-
27
- def lease_lost(lease_lost_input)
28
- # lease was lost, cleanup
29
- end
30
-
31
- def shard_ended(shard_ended_input)
32
- # shard has ended, cleanup
33
- end
34
-
35
- def shutdown_requested(shutdown_requested_input)
36
- # shutdown has been requested
37
- end
38
- end
39
-
40
- if __FILE__ == $0
41
- # Start the main processing loop
42
- record_processor = SampleRecordProcessor.new
43
- driver = Aws::KCLrb::KCLProcess.new(record_processor)
44
- driver.run
45
- end
14
+ #! /usr/bin/env ruby
15
+
16
+ require 'aws/kclrb'
17
+
18
+ class SampleRecordProcessor < Aws::KCLrb::V2::RecordProcessorBase
19
+ def init_processor(initialize_input)
20
+ # initialize
21
+ end
22
+
23
+ def process_records(process_records_input)
24
+ # process batch of records
25
+ end
26
+
27
+ def lease_lost(lease_lost_input)
28
+ # lease was lost, cleanup
29
+ end
30
+
31
+ def shard_ended(shard_ended_input)
32
+ # shard has ended, cleanup
33
+ end
34
+
35
+ def shutdown_requested(shutdown_requested_input)
36
+ # shutdown has been requested
37
+ end
38
+ end
39
+
40
+ if __FILE__ == $0
41
+ # Start the main processing loop
42
+ record_processor = SampleRecordProcessor.new
43
+ driver = Aws::KCLrb::KCLProcess.new(record_processor)
44
+ driver.run
45
+ end
46
46
  ```
47
47
 
48
48
  ## Before You Get Started
@@ -60,16 +60,6 @@ access.
60
60
  For questions regarding [Amazon Kinesis Service][amazon-kinesis] and the client libraries please check the
61
61
  [official documentation][amazon-kinesis-docs] as well as the [Amazon Kinesis Forums][kinesis-forum].
62
62
 
63
- ## 🚨Important: Migration to Ruby KCL 2.2.0 or later with MultiLangDaemon - Credential Provider Changes Required
64
- Java KCL version 2.7.0 and later uses AWS SDK for Java 2.x instead of AWS SDK for Java 1.x. For the KCL Ruby 2.x versions,
65
- v2.2.0 is the first Ruby release to use Java KCL 2.7.0. All MultiLangDaemon users upgrading from earlier versions must update
66
- their credential provider configuration in the `.properties` file to use credentials provider name for AWS SDK for Java 2.x.
67
- Failure to do this will cause your multilang KCL application to fail during startup with credential provider construction errors.
68
- Please check the following link for the credentials provider mapping and MultiLangDaemon credentials provider configuration guide
69
-
70
- - [AWS SDK for Java 1.x to 2.x Credentials Provider Mapping](aws.amazon.com/sdk-for-java/latest/developer-guide/migration-client-credentials.html#credentials-changes-mapping)
71
- - [KCL Multilang Credentials Provider Configuration Guide](https://github.com/aws/amazon-kinesis-client/blob/master/docs/multilang/configuring-credential-providers.md)
72
-
73
63
  ## Running the Sample
74
64
 
75
65
  Using the Amazon KCL for Ruby package requires the [MultiLangDaemon][multi-lang-daemon] which
@@ -104,11 +94,11 @@ To run the data producer, run the following commands:
104
94
 
105
95
  #### Notes
106
96
 
107
- * The [AWS Ruby SDK gem][aws-ruby-sdk-gem] needs to be installed as a pre-requisite. To install,
97
+ * The [AWS Ruby SDK gem][aws-ruby-sdk-gem] for Kinesis needs to be installed as a pre-requisite. To install,
108
98
  run:
109
99
 
110
100
  ```sh
111
- sudo gem install aws-sdk
101
+ sudo gem install aws-sdk-kinesis
112
102
  ```
113
103
 
114
104
  * The script `samples/sample_kcl_producer.rb` takes several parameters that you can use
@@ -196,19 +186,40 @@ all languages.
196
186
  * The [Amazon Kinesis Forum][kinesis-forum]
197
187
 
198
188
  ## Release Notes
199
- ### Release 2.2.1 (March 25, 2025)
200
- * Downgrade logback from 1.5.16 to 1.3.15 to maintain JDK 8 compatability
201
-
202
- ### Release 2.2.0 (March 12, 2025) - IMPORTANT: See section ``Migration to Ruby KCL 2.2.0`` to ensure upgrading does not break compatibility
203
- #### :warning: [BREAKING CHANGES] - Release 2.2.0 contains a dependency version that is not compatible with JDK 8. Please upgrade to a later version if your KCL application requires JDK 8.
204
- * [#1444](https://github.com/awslabs/amazon-kinesis-client/pull/1444) Fully remove dependency on the AWS SDK for Java 1.x which will reach [end-of-support by December 31st, 2025](https://aws.amazon.com/blogs/developer/announcing-end-of-support-for-aws-sdk-for-java-v1-x-on-december-31-2025/).
205
- * The Glue Schema Registry integration functionality no longer depends on AWS SDK for Java 1.x. Previously, it required this as a transient dependency.
206
- * Multilangdaemon has been upgraded to use AWS SDK for Java 2.x. It no longer depends on AWS SDK for Java 1.x.
207
- * [#89](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/89) Upgrade logback.version from 1.3.14 to 1.5.16
208
- * [#89](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/89) Upgrade netty.version from 4.1.108.Final to 4.1.118.Final
209
189
 
210
- ### Release 2.1.2 (January 22, 2025)
211
- * Upgraded to use version 2.6.1 of the [Amazon Kinesis Client library](https://github.com/awslabs/amazon-kinesis-client/blob/v2.6.1/CHANGELOG.md#release-261-2024-12-13).
190
+ ### Release 3.0.0 (November 6, 2024)
191
+ * New lease assignment / load balancing algorithm
192
+ * KCL 3.x introduces a new lease assignment and load balancing algorithm. It assigns leases among workers based on worker utilization metrics and throughput on each lease, replacing the previous lease count-based lease assignment algorithm.
193
+ * When KCL detects higher variance in CPU utilization among workers, it proactively reassigns leases from over-utilized workers to under-utilized workers for even load balancing. This ensures even CPU utilization across workers and removes the need to over-provision the stream processing compute hosts.
194
+ * Optimized DynamoDB RCU usage
195
+ * KCL 3.x optimizes DynamoDB read capacity unit (RCU) usage on the lease table by implementing a global secondary index with leaseOwner as the partition key. This index mirrors the leaseKey attribute from the base lease table, allowing workers to efficiently discover their assigned leases by querying the index instead of scanning the entire table.
196
+ * This approach significantly reduces read operations compared to earlier KCL versions, where workers performed full table scans, resulting in higher RCU consumption.
197
+ * Graceful lease handoff
198
+ * KCL 3.x introduces a feature called "graceful lease handoff" to minimize data reprocessing during lease reassignments. Graceful lease handoff allows the current worker to complete checkpointing of processed records before transferring the lease to another worker. For graceful lease handoff, you should implement checkpointing logic within the existing `shutdownRequested()` method.
199
+ * This feature is enabled by default in KCL 3.x, but you can turn off this feature by adjusting the configuration property `isGracefulLeaseHandoffEnabled`.
200
+ * While this approach significantly reduces the probability of data reprocessing during lease transfers, it doesn't completely eliminate the possibility. To maintain data integrity and consistency, it's crucial to design your downstream consumer applications to be idempotent. This ensures that the application can handle potential duplicate record processing without adverse effects.
201
+ * New DynamoDB metadata management artifacts
202
+ * KCL 3.x introduces two new DynamoDB tables for improved lease management:
203
+ * Worker metrics table: Records CPU utilization metrics from each worker. KCL uses these metrics for optimal lease assignments, balancing resource utilization across workers. If CPU utilization metric is not available, KCL assigns leases to balance the total sum of shard throughput per worker instead.
204
+ * Coordinator state table: Stores internal state information for workers. Used to coordinate in-place migration from KCL 2.x to KCL 3.x and leader election among workers.
205
+ * Follow this [documentation](https://docs.aws.amazon.com/streams/latest/dev/kcl-migration-from-2-3.html#kcl-migration-from-2-3-IAM-permissions) to add required IAM permissions for your KCL application.
206
+ * Other improvements and changes
207
+ * Dependency on the AWS SDK for Java 1.x has been fully removed.
208
+ * The Glue Schema Registry integration functionality no longer depends on AWS SDK for Java 1.x. Previously, it required this as a transient dependency.
209
+ * Multilangdaemon has been upgraded to use AWS SDK for Java 2.x. It no longer depends on AWS SDK for Java 1.x.
210
+ * `idleTimeBetweenReadsInMillis` (PollingConfig) now has a minimum default value of 200.
211
+ * This polling configuration property determines the [publishers](https://github.com/awslabs/amazon-kinesis-client/blob/master/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/polling/PrefetchRecordsPublisher.java) wait time between GetRecords calls in both success and failure cases. Previously, setting this value below 200 caused unnecessary throttling. This is because Amazon Kinesis Data Streams supports up to five read transactions per second per shard for shared-throughput consumers.
212
+ * Shard lifecycle management is improved to deal with edge cases around shard splits and merges to ensure records continue being processed as expected.
213
+ * Migration
214
+ * The programming interfaces of KCL 3.x remain identical with KCL 2.x for an easier migration. For detailed migration instructions, please refer to the [Migrate consumers from KCL 2.x to KCL 3.x](https://docs.aws.amazon.com/streams/latest/dev/kcl-migration-from-2-3.html) page in the Amazon Kinesis Data Streams developer guide.
215
+ * Configuration properties
216
+ * New configuration properties introduced in KCL 3.x are listed in this [doc](https://github.com/awslabs/amazon-kinesis-client/blob/master/docs/kcl-configurations.md#new-configurations-in-kcl-3x).
217
+ * Deprecated configuration properties in KCL 3.x are listed in this [doc](https://github.com/awslabs/amazon-kinesis-client/blob/master/docs/kcl-configurations.md#discontinued-configuration-properties-in-kcl-3x). You need to keep the deprecated configuration properties during the migration from any previous KCL version to KCL 3.x.
218
+ * Metrics
219
+ * New CloudWatch metrics introduced in KCL 3.x are explained in the [Monitor the Kinesis Client Library with Amazon CloudWatch](https://docs.aws.amazon.com/streams/latest/dev/monitoring-with-kcl.html) in the Amazon Kinesis Data Streams developer guide. The following operations are newly added in KCL 3.x:
220
+ * `LeaseAssignmentManager`
221
+ * `WorkerMetricStatsReporter`
222
+ * `LeaseDiscovery`
212
223
 
213
224
  ### Release 2.1.1 (February 21, 2023)
214
225
  * [#69](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/69) Include `pom.xml` in the gemspec
@@ -255,7 +266,7 @@ all languages.
255
266
  [amazon-kcl]: http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-record-processor-app.html
256
267
  [amazon-kcl-github]: https://github.com/awslabs/amazon-kinesis-client
257
268
  [amazon-kinesis-python-github]: https://github.com/awslabs/amazon-kinesis-client-python
258
- [multi-lang-daemon]: https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/multilang/package-info.java
269
+ [multi-lang-daemon]: https://github.com/awslabs/amazon-kinesis-client/blob/master/amazon-kinesis-client-multilang/src/main/java/software/amazon/kinesis/multilang/package-info.java
259
270
  [DefaultCredentialsProvider]: https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/auth/credentials/DefaultCredentialsProvider.html
260
271
  [kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
261
272
  [aws-ruby-sdk-gem]: https://rubygems.org/gems/aws-sdk
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.2.1
1
+ 3.0.0
@@ -52,8 +52,8 @@ module Aws
52
52
  # @param action [Hash] A hash that represents an action to take with
53
53
  # appropriate attributes, as retrieved from {IOProxy#read_action}, e.g.
54
54
  #
55
- # - `{"action":"initialize","shardId":"shardId-123"}`
56
- # - `{"action":"processRecords","records":[{"data":"bWVvdw==","partitionKey":"cat","sequenceNumber":"456"}]}`
55
+ # - `{"action":"initialize","shardId":"shardId-123","sequenceNumber":123}`
56
+ # - `{"action":"processRecords","records":[{"data":"bWVvdw==","partitionKey":"cat","sequenceNumber":"456"}],"millisBehindLatest":"0"}`
57
57
  # - `{"action":"shutdown","reason":"TERMINATE"}`
58
58
  # @raise [MalformedAction] if the action is missing expected attributes.
59
59
  def process_action(action)
data/pom.xml CHANGED
@@ -3,12 +3,11 @@
3
3
  <modelVersion>4.0.0</modelVersion>
4
4
  <properties>
5
5
  <awssdk.version>2.25.64</awssdk.version>
6
- <aws-java-sdk.version>1.12.668</aws-java-sdk.version>
7
- <kcl.version>2.7.0</kcl.version>
8
- <netty.version>4.1.118.Final</netty.version>
6
+ <kcl.version>3.0.0</kcl.version>
7
+ <netty.version>4.1.108.Final</netty.version>
9
8
  <netty-reactive.version>2.0.6</netty-reactive.version>
10
9
  <fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>
11
- <logback.version>1.3.15</logback.version>
10
+ <logback.version>1.3.14</logback.version>
12
11
  </properties>
13
12
  <dependencies>
14
13
  <dependency>
@@ -31,6 +30,18 @@
31
30
  <artifactId>dynamodb</artifactId>
32
31
  <version>${awssdk.version}</version>
33
32
  </dependency>
33
+ <!-- https://mvnrepository.com/artifact/software.amazon.awssdk/dynamodb-enhanced -->
34
+ <dependency>
35
+ <groupId>software.amazon.awssdk</groupId>
36
+ <artifactId>dynamodb-enhanced</artifactId>
37
+ <version>${awssdk.version}</version>
38
+ </dependency>
39
+ <!-- https://mvnrepository.com/artifact/com.amazonaws/dynamodb-lock-client -->
40
+ <dependency>
41
+ <groupId>com.amazonaws</groupId>
42
+ <artifactId>dynamodb-lock-client</artifactId>
43
+ <version>1.3.0</version>
44
+ </dependency>
34
45
  <dependency>
35
46
  <groupId>software.amazon.awssdk</groupId>
36
47
  <artifactId>cloudwatch</artifactId>
@@ -326,16 +337,6 @@
326
337
  <artifactId>httpcore</artifactId>
327
338
  <version>4.4.15</version>
328
339
  </dependency>
329
- <dependency>
330
- <groupId>com.amazonaws</groupId>
331
- <artifactId>aws-java-sdk-core</artifactId>
332
- <version>${aws-java-sdk.version}</version>
333
- </dependency>
334
- <dependency>
335
- <groupId>com.amazonaws</groupId>
336
- <artifactId>aws-java-sdk-sts</artifactId>
337
- <version>${aws-java-sdk.version}</version>
338
- </dependency>
339
340
  <dependency>
340
341
  <groupId>com.amazon.ion</groupId>
341
342
  <artifactId>ion-java</artifactId>
@@ -345,6 +346,12 @@
345
346
  <groupId>software.amazon.glue</groupId>
346
347
  <artifactId>schema-registry-serde</artifactId>
347
348
  <version>1.1.19</version>
349
+ <exclusions>
350
+ <exclusion>
351
+ <groupId>com.amazonaws</groupId>
352
+ <artifactId>aws-java-sdk-sts</artifactId>
353
+ </exclusion>
354
+ </exclusions>
348
355
  </dependency>
349
356
  <dependency>
350
357
  <groupId>joda-time</groupId>
@@ -392,4 +399,4 @@
392
399
  <version>3.2.2</version>
393
400
  </dependency>
394
401
  </dependencies>
395
- </project>
402
+ </project>
@@ -27,66 +27,124 @@ module Aws::KCLrb
27
27
  end
28
28
  end
29
29
 
30
- def shutdown(checkpointer, reason)
31
- checkpointer.checkpoint if reason == 'TERMINATE'
30
+ def shutdown_requested(checkpointer)
31
+ checkpointer.checkpoint
32
32
  end
33
33
  end
34
34
 
35
+ class TestRecordProcessorV2 < Aws::KCLrb::V2::RecordProcessorBase
36
+
37
+ def init_processor(shard_id)
38
+ # no-op
39
+ end
40
+
41
+ def shutdown_requested(shutdown_requested_input)
42
+ shutdown_requested_input.checkpointer.checkpoint
43
+ end
44
+
45
+ def process_records(process_records_input)
46
+ last_seq = nil
47
+ records = process_records_input.records
48
+ records.each do |record|
49
+ last_seq = record['sequenceNumber']
50
+ end
51
+
52
+ if last_seq
53
+ checkpointer = process_records_input.checkpointer
54
+ begin
55
+ checkpointer.checkpoint(last_seq)
56
+ rescue CheckpointError => cpe
57
+ if cpe.value == 'ThrottlingException'
58
+ checkpointer.checkpoint(last_seq)
59
+ else
60
+ raise
61
+ end
62
+ end
63
+ end
64
+ end
65
+
66
+ end
67
+
35
68
  describe KCLProcess do
36
- describe "#run" do
37
- it "should respond to each action by invoking the corresponding processor's method and write a status message to the output IO" do
38
- input_specs = [
39
- {:method => :init_processor, :action => 'initialize', :input => '{"action":"initialize","shardId":"shard-000001"}'},
40
- {:method => :process_records, :action => 'processRecords', :input => '{"action":"processRecords","records":[]}'},
41
- {:method => :shutdown, :action => 'shutdown', :input => '{"action":"shutdown","reason":"TERMINATE"}'},
42
- ]
43
- # pick any of the actions randomly to avoid writing a test for each
44
- input_spec = input_specs.sample
45
- processor = double(RecordProcessorBase)
46
- expect(processor).to receive(input_spec[:method]).once
47
- input = StringIO.new(input_spec[:input])
69
+
70
+ input_specs = [
71
+ {:method => :init_processor, :action => 'initialize', :input => '{"action":"initialize","shardId":"shard-000001","sequenceNumber":123456789}'},
72
+ {:method => :process_records, :action => 'processRecords', :input => '{"action":"processRecords","records":[],"millisBehindLatest":0}'},
73
+ {:method => :shutdown, :action => 'shutdownRequested', :input => '{"action":"shutdownRequested","reason":"TERMINATE"}'}
74
+ ]
75
+ versions = [1, 2]
76
+
77
+ describe "#action_response" do
78
+
79
+ before(:each) do
80
+ @processor = double(RecordProcessorBase)
81
+ end
82
+
83
+ input_specs.each do |input_spec|
84
+ versions.each do |version|
85
+ it "V#{version} should respond to #{input_spec[:method]} action by invoking the corresponding processor's method and write a status message to the output IO" do
86
+ allow(@processor).to receive(:version).and_return(version)
87
+ action_response_common_test(input_spec[:method], input_spec[:action], input_spec[:input], version)
88
+ end
89
+ end
90
+ end
91
+
92
+ def action_response_common_test(method, action, input, version)
93
+ if method == :shutdown
94
+ expected_shutdown_input = version == 1 ? Aws::KCLrb::CheckpointerImpl : Aws::KCLrb::V2::ShutdownRequestedInput
95
+ allow(@processor).to receive(:shutdown_requested).with(expected_shutdown_input).and_return(nil)
96
+ else
97
+ expect(@processor).to receive(method).once
98
+ end
99
+ input = StringIO.new(input)
48
100
  output = StringIO.new
49
101
  error = StringIO.new
50
- driver = KCLProcess.new(processor, input, output, error)
102
+ driver = KCLProcess.new(@processor, input, output, error)
51
103
  driver.run
52
104
 
53
- expected_output = %Q[{"action":"status","responseFor":"#{input_spec[:action]}"}]
54
- expect( output.string.gsub(/\s+/, "") ).to eq(expected_output.gsub(/\s+/, ""))
55
- expect( error.string ).to eq("")
56
- expect( input.eof? ).to eq(true)
105
+ expected_output = %Q[{"action":"status","responseFor":"#{action}"}]
106
+ expect(output.string.gsub(/\s+/, "")).to eq(expected_output.gsub(/\s+/, ""))
107
+ expect(error.string).to eq("")
108
+ expect(input.eof?).to eq(true)
57
109
  end
58
- it "should process a normal stream of actions and produce expected output" do
59
- input_string = <<-INPUT
60
- {"action":"initialize","shardId":"shardId-123"}
61
- {"action":"processRecords","records":[{"data":"bWVvdw==","partitionKey":"cat","sequenceNumber":"456"}]}
110
+
111
+ end
112
+
113
+ describe "#run" do
114
+ versions.each do |version|
115
+ it "V#{version} should process a normal stream of actions and produce expected output" do
116
+ input_string = <<-INPUT
117
+ {"action":"initialize","shardId":"shardId-123","sequenceNumber":123}
118
+ {"action":"processRecords","records":[{"data":"bWVvdw==","partitionKey":"cat","sequenceNumber":"456"}],"millisBehindLatest":"0"}
62
119
  {"action":"checkpoint","sequenceNumber":"456","error":"ThrottlingException"}
63
120
  {"action":"checkpoint","sequenceNumber":"456"}
64
- {"action":"shutdown","reason":"TERMINATE"}
121
+ {"action":"shutdownRequested","reason":"TERMINATE"}
65
122
  {"action":"checkpoint","sequenceNumber":"456"}
66
- INPUT
123
+ INPUT
67
124
 
68
- # NOTE: The first checkpoint is expected to fail
69
- # with a ThrottlingException and hence the
70
- # retry.
71
- expected_output_string = <<-OUTPUT
125
+ # NOTE: The first checkpoint is expected to fail
126
+ # with a ThrottlingException and hence the
127
+ # retry.
128
+ expected_output_string = <<-OUTPUT
72
129
  {"action":"status","responseFor":"initialize"}
73
130
  {"action":"checkpoint","sequenceNumber":"456"}
74
131
  {"action":"checkpoint","sequenceNumber":"456"}
75
132
  {"action":"status","responseFor":"processRecords"}
76
133
  {"action":"checkpoint","sequenceNumber":null}
77
- {"action":"status","responseFor":"shutdown"}
78
- OUTPUT
79
- processor = TestRecordProcessor.new
80
- input = StringIO.new(input_string)
81
- output = StringIO.new
82
- error = StringIO.new
83
- driver = KCLProcess.new(processor, input, output, error)
84
- driver.run
134
+ {"action":"status","responseFor":"shutdownRequested"}
135
+ OUTPUT
136
+ processor = version == 1 ? TestRecordProcessor.new : TestRecordProcessorV2.new
137
+ input = StringIO.new(input_string)
138
+ output = StringIO.new
139
+ error = StringIO.new
140
+ driver = KCLProcess.new(processor, input, output, error)
141
+ driver.run
85
142
 
86
- # outputs should be same modulo some whitespaces
87
- expect( output.string.gsub(/\s+/, "") ).to eq(expected_output_string.gsub(/\s+/, ""))
88
- expect( error.string ).to eq("")
89
- expect( input.eof? ).to eq(true)
143
+ # outputs should be same modulo some whitespaces
144
+ expect( output.string.gsub(/\s+/, "") ).to eq(expected_output_string.gsub(/\s+/, ""))
145
+ expect( error.string ).to eq("")
146
+ expect( input.eof? ).to eq(true)
147
+ end
90
148
  end
91
149
  end
92
150
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-kclrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-25 00:00:00.000000000 Z
11
+ date: 2024-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -24,6 +24,34 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: simplecov
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
27
55
  description: A ruby interface for the Amazon Kinesis Client Library MultiLangDaemon
28
56
  email:
29
57
  executables: []