-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: redis sink using depot repo * docs: update documentation for redis sink using depot * fix: delete redis sink data type, deployment type, ttl type enums and enum converters * refactor: import RedisSinkConfig from depot * fix: handle IOException for redis sink in SinkFactory * chore: depot version upgrade to 0.3.0 * test: fix tests in BlobStorageDlqWriterTest * checkstyle: fix checkstyle * fix: runtimeexception in SinkFactory * fix: remove unused import * chore: upgrade depot version * chore: versiob update Co-authored-by: lavkesh <[email protected]>
- Loading branch information
1 parent
3124615
commit 01de086
Showing
48 changed files
with
35 additions
and
2,760 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,21 @@ | ||
# Redis | ||
# Redis Sink | ||
|
||
A Redis sink Firehose \(`SINK_TYPE`=`redis`\) requires the following variables to be set along with Generic ones | ||
Redis Sink is implemented in Firehose using the Redis sink connector implementation in ODPF Depot. You can check out ODPF Depot Github repository [here](https://github.com/odpf/depot). | ||
|
||
### `SINK_REDIS_URLS` | ||
### Data Types | ||
Redis sink can be created in 3 different modes based on the value of [`SINK_REDIS_DATA_TYPE`](https://github.com/odpf/depot/blob/main/docs/reference/configuration/redis.md#sink_redis_data_type): HashSet, KeyValue or List | ||
- `Hashset`: For each message, an entry of the format `key : field : value` is generated and pushed to Redis. Field and value are generated on the basis of the config [`SINK_REDIS_HASHSET_FIELD_TO_COLUMN_MAPPING`](https://github.com/odpf/depot/blob/main/docs/reference/configuration/redis.md#sink_redis_hashset_field_to_column_mapping) | ||
- `List`: For each message entry of the format `key : value` is generated and pushed to Redis. Value is fetched for the Proto field name provided in the config [`SINK_REDIS_LIST_DATA_FIELD_NAME`](https://github.com/odpf/depot/blob/main/docs/reference/configuration/redis.md#sink_redis_list_data_field_name) | ||
- `KeyValue`: For each message entry of the format `key : value` is generated and pushed to Redis. Value is fetched for the proto field name provided in the config [`SINK_REDIS_KEY_VALUE_DATA_FIELD_NAME`](https://github.com/odpf/depot/blob/main/docs/reference/configuration/redis.md#sink_redis_key_value_data_field_name) | ||
|
||
REDIS instance hostname/IP address followed by its port. | ||
The `key` is picked up from a field in the message itself. | ||
|
||
- Example value: `localhos:6379,localhost:6380` | ||
- Type: `required` | ||
Limitation: Depot Redis sink only supports Key-Value, HashSet and List entries as of now. | ||
|
||
### `SINK_REDIS_DATA_TYPE` | ||
### Configuration | ||
|
||
To select whether you want to push your data as a HashSet or as a List. | ||
For Redis sink in Firehose we need to set first (`SINK_TYPE`=`redis`). There are some generic configs which are common across different sink types which need to be set which are mentioned in [generic.md](../advance/generic.md). Redis sink specific configs are mentioned in ODPF Depot repository. You can check out the Redis Sink configs [here](https://github.com/odpf/depot/blob/main/docs/reference/configuration/redis.md) | ||
|
||
- Example value: `Hashset` | ||
- Type: `required` | ||
- Default value: `List` | ||
|
||
### `SINK_REDIS_KEY_TEMPLATE` | ||
|
||
The string that will act as the key for each Redis entry. This key can be configured as per the requirement, a constant or can extract value from each message and use that as the Redis key. | ||
|
||
- Example value: `Service\_%%s,1` | ||
|
||
This will take the value with index 1 from proto and create the Redis keys as per the template\ | ||
|
||
- Type: `required` | ||
|
||
### `INPUT_SCHEMA_PROTO_TO_COLUMN_MAPPING` | ||
|
||
This is the field that decides what all data will be stored in the HashSet for each message. | ||
|
||
- Example value: `{"6":"customer_id", "2":"order_num"}` | ||
- Type: `required (For Hashset)` | ||
|
||
### `SINK_REDIS_LIST_DATA_PROTO_INDEX` | ||
|
||
This field decides what all data will be stored in the List for each message. | ||
|
||
- Example value: `6` | ||
|
||
This will get the value of the field with index 6 in your proto and push that to the Redis list with the corresponding keyTemplate\ | ||
|
||
- Type: `required (For List)` | ||
|
||
### `SINK_REDIS_KEY_VALUE_DATA_PROTO_INDEX` | ||
|
||
This field decides what data will be stored in the value part of key-value pair | ||
|
||
- Example value: `6` | ||
|
||
This will get the value of the field with index 6 in your proto and push that to the Redis as value with the corresponding keyTemplate\ | ||
|
||
- Type: `required (For KeyValue)` | ||
|
||
### `SINK_REDIS_TTL_TYPE` | ||
|
||
- Example value: `DURATION` | ||
- Type: `optional` | ||
- Default value: `DISABLE` | ||
- Choice of Redis TTL type.It can be:\ | ||
- `DURATION`: After which the Key will be expired and removed from Redis \(UNIT- seconds\)\ | ||
- `EXACT_TIME`: Precise UNIX timestamp after which the Key will be expired | ||
|
||
### `SINK_REDIS_TTL_VALUE` | ||
|
||
Redis TTL value in Unix Timestamp for `EXACT_TIME` TTL type, In Seconds for `DURATION` TTL type. | ||
|
||
- Example value: `100000` | ||
- Type: `optional` | ||
- Default value: `0` | ||
|
||
### `SINK_REDIS_DEPLOYMENT_TYPE` | ||
|
||
The Redis deployment you are using. At present, we support `Standalone` and `Cluster` types. | ||
|
||
- Example value: `Standalone` | ||
- Type: `required` | ||
- Default value: `Standalone` | ||
### Deployment Types | ||
Redis sink, as of now, supports two different Deployment Types `Standalone` and `Cluster`. This can be configured in the Depot environment variable `SINK_REDIS_DEPLOYMENT_TYPE`. |
43 changes: 0 additions & 43 deletions
43
src/main/java/io/odpf/firehose/config/RedisSinkConfig.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/main/java/io/odpf/firehose/config/converter/RedisSinkDataTypeConverter.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/main/java/io/odpf/firehose/config/converter/RedisSinkDeploymentTypeConverter.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/main/java/io/odpf/firehose/config/converter/RedisSinkTtlTypeConverter.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/io/odpf/firehose/config/enums/RedisSinkDataType.java
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
src/main/java/io/odpf/firehose/config/enums/RedisSinkDeploymentType.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/io/odpf/firehose/config/enums/RedisSinkTtlType.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
51 changes: 0 additions & 51 deletions
51
src/main/java/io/odpf/firehose/sink/redis/RedisSinkFactory.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.