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
Copy file name to clipboardExpand all lines: README.md
+15-10Lines changed: 15 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,8 @@ This project is an [Apache Storm](https://storm.apache.org/) Spout for consuming
6
6
7
7
### Features
8
8
9
-
- Ability to consume from Redis Streams while maintaing state.
9
+
- Ability to consume from Redis Streams while maintaining state.
10
+
- Ability to consume from a single Redis server or a RedisCluster.
10
11
- Parallelism supported via unique Consumer Ids.
11
12
12
13
### Usage & Configuration
@@ -30,9 +31,6 @@ The spout is configured using the [RedisStreamSpoutConfig](src/main/java/org/sou
30
31
31
32
| Property | Required | Description |
32
33
|----------|----------|-------------|
33
-
|`Host`| Required | The hostname to connect to Redis at. |
34
-
|`Port`| Required | The port to connect to Redis at. |
35
-
|`Password`| optional | Password to connect to Redis using. |
36
34
|`Group Name`| Required | The Consumer group name the Spout should use. |
37
35
|`Consumer Id Prefix`| Required | A prefix to use for generating unique Consumer Ids within the Consumer Group. To support multiple parallel consumers, the Spout instance will be appended to the end of this value. |
38
36
|`Stream Key`| Required | The Redis key to consume messages from. |
@@ -44,17 +42,24 @@ The spout is configured using the [RedisStreamSpoutConfig](src/main/java/org/sou
0 commit comments