I want to Replay Kinesis Records by a given Timespan, (or a start time)
use case:
on application failure, some stream records might be considered processed, but not actually being finalized. i.e. not being saved in local data store. so on system recovery, we would like to start processing records 30 minutes earlier (or any given number) of current checkpoint.
I came across this https://github.com/scopely/kinesis-vcr it persists Kinesis records into S3, then replay the events from S3
I am wondering if it is possible to replay the records without s3, since Kinesis Keeps records for 24 hours. and 24 hours is long enough.