You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
If `seed` is even, e.g. 2,4,6,8 etc, a message with same format is sent to *li-even-stream* stream.
51
+
If `seed` is even, e.g. 2,4,6,8 etc, a message with same format is sent to `li-stream-even` stream.
52
52
53
53
We would like to check if messages are routing to respective streams correctly. If the seed is not a number
54
54
the services returns a bad request.
55
55
56
-
In order to do that, you will need to read messages from both Kinesis Streams(`li-even-stream` and `li-odd-stream`), and verify that the routing works correctly by asserting that the correct request produced a record in the one stream, and did not produce a record in the other.
56
+
In order to do that, you will need to read messages from both Kinesis Streams(`li-stream-even` and `li-stream-odd`), and verify that the routing works correctly by asserting that the correct request produced a record in the one stream, and did not produce a record in the other.
57
57
58
58
To solve the challenge, you will need to quickly research how to read records from a Kinesis Stream, if you haven't used it already.
59
59
60
-
We recommend that you use standard AWS SDK for any programming language you choose.
60
+
We recommend that you use standard AWS SDK for any programming language you choose, e.g [how to read kinesis records with Java](https://docs.aws.amazon.com/streams/latest/dev/developing-consumers-with-sdk.html).
0 commit comments