hlteoh37 commented on code in PR #179:
URL:
https://github.com/apache/flink-connector-aws/pull/179#discussion_r1833154045
##########
docs/content/docs/connectors/table/kinesis.md:
##########
@@ -57,16 +87,21 @@ CREATE TABLE KinesisTable (
PARTITIONED BY (user_id, item_id)
WITH (
'connector' = 'kinesis',
- 'stream' = 'user_behavior',
+ 'stream.arn' =
'arn:aws:kinesis:us-east-1:012345678901:stream/my-stream-name',
'aws.region' = 'us-east-2',
- 'scan.stream.initpos' = 'LATEST',
+ 'source.init.position' = 'LATEST',
'format' = 'csv'
);
```
Available Metadata
------------------
+{{< hint warning >}}
+The `kinesis` table Source has a known bug that means `VIRTUAL` columns are
not supported.
+Please use `kinesis-legacy` until [the
fix](https://issues.apache.org/jira/browse/FLINK-36671) is completed.
+{{< /hint >}}
+
The following metadata can be exposed as read-only (`VIRTUAL`) columns in a
table definition.
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]