hlteoh37 commented on code in PR #151: URL: https://github.com/apache/flink-connector-aws/pull/151#discussion_r1741891977
########## flink-connector-aws/flink-connector-dynamodb/src/main/java/org/apache/flink/connector/dynamodb/source/proxy/DynamoDbStreamsProxy.java: ########## @@ -86,13 +88,32 @@ public GetRecordsResponse getRecords( } return getRecordsResponse; } catch (ExpiredIteratorException e) { + LOG.warn( + "Received ExpiredIteratorException from GetRecords. " + + "Calling GetShardIterator for shard: {} with position: {}", + startingPosition, + shardId); Review Comment: nit: This should be something like `info`, since we automatically recover here. This might happen alot of the job is backpressured. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org