我试图从Kinesis流中读取。如果我使用ShardIteratorType
AT_SEQUENCE_NUMBER
或LATEST
,它可以正常工作。但是,如果我尝试使用AT_TIMESTAMP
类型并设置TIMESTAMP
,则boto3会抱怨:
File "/usr/local/lib/python2.7/site-packages/botocore/validate.py", line 269, in serialize_to_request
raise ParamValidationError(report=report.generate_report())
botocore.exceptions.ParamValidationError: Parameter validation failed:
Unknown parameter in input: "Timestamp", must be one of: StreamName, ShardId, ShardIteratorType, StartingSequenceNumber
获取shard_id
的代码如下。
import boto3
from datetime import datetime
client = boto3.client('kinesis')
shard_it = client.get_shard_iterator(
StreamName='foo',
ShardId='shardId-000000000000',
ShardIteratorType='AT_TIMESTAMP',
Timestamp=datetime(2015, 1, 1)
)
有没有人有这方面的经验?
根据API docs参数存在。
答案 0 :(得分:1)
看起来您的boto3
不是最新的,因此boto3客户端库无法识别新参数。请运行$ sudo pip install -u boto3
等。
顺便说一下,Timestamp
参数接受以下两种情况:
datetime.datetime
)time.time
)