[ https://issues.apache.org/jira/browse/FLINK-9188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16453174#comment-16453174 ]
ASF GitHub Bot commented on FLINK-9188: --------------------------------------- Github user tweise commented on a diff in the pull request: https://github.com/apache/flink/pull/5889#discussion_r184220854 --- Diff: flink-connectors/flink-connector-kinesis/src/main/java/org/apache/flink/streaming/connectors/kinesis/proxy/KinesisProxy.java --- @@ -186,7 +186,10 @@ protected KinesisProxy(Properties configProps) { * @return */ protected AmazonKinesis createKinesisClient(Properties configProps) { - return AWSUtil.createKinesisClient(configProps, new ClientConfigurationFactory().getConfig()); + + ClientConfiguration awsClientConfig = new ClientConfigurationFactory().getConfig(); + AWSUtil.setAwsClientConfigProperties(awsClientConfig, configProps); + return AWSUtil.createKinesisClient(configProps, awsClientConfig); --- End diff -- Actually there does not seem to be any overlap. `AWSConfigConstants.AWS_REGION` and `AWSConfigConstants.AWS_ENDPOINT` are used to construct the client, not the client config. > Provide a mechanism to configure AmazonKinesisClient in FlinkKinesisConsumer > ---------------------------------------------------------------------------- > > Key: FLINK-9188 > URL: https://issues.apache.org/jira/browse/FLINK-9188 > Project: Flink > Issue Type: Task > Components: Kinesis Connector > Reporter: Thomas Weise > Priority: Major > > It should be possible to control the ClientConfiguration to set socket > timeout and other properties. -- This message was sent by Atlassian JIRA (v7.6.3#76005)