TRIM_HORIZON vs LATEST

后端 未结 2 1476
你的背包
你的背包 2020-12-29 21:36

I can\'t find in the formal documentation of AWS Kinesis any explicit reference between TRIM_HORIZON and the checkpoint, and also

2条回答
  •  [愿得一人]
    2020-12-29 22:05

    AT_TIMESTAMP

    -- from specific time stamp

    TRIM_HORIZON

    -- all the available messages in Kinesis stream from the beginning (same as earliest in Kafka)

    LATEST

    -- from the latest messages , i.e current message that just came into Kinesis/Kafka and all the incoming messages from that time onwords

提交回复
热议问题