LoginSignup
4
3

More than 5 years have passed since last update.

Kinesis Firehose メモ

Last updated at Posted at 2015-10-16

調べてちょいちょい追記する予定

SDK (boto3) からputする

import boto3

client = boto3.client('firehose')

data   = "1|1|1|2015-10-16\n"

response = client.put_record(
    DeliveryStreamName='my-stream-name-here',
    Record={
        'Data': data
    }
)

print(response)

制限など

  • Buffer interval の最小値が 60秒なので、put_record してからS3に置かれるまで最大60秒かかる

資料

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3