使用Amazon QuickSight CLI安排每小时摄取。

0

【以下的问题经过翻译处理】 在Amazon QuickSight中,有没有通过AWS CLI定期安排每小时的数据集刷新的方法?

profile picture
EXPERT
asked 5 months ago20 views
1 Answer
0

【以下的回答经过翻译处理】 除了SPICE预定的从UI刷新之外,您可以使用create-ingestion CLI 执行手动刷新。

使用list-data-sets API获取数据集ID。

aws quicksight list-data-sets --aws-account-id 1231 --region us-east-1

创建按需的SPICE摄入,每次运行此命令时使用唯一的摄入ID:

aws quicksight create-ingestion --data-set-id abc1213131 --ingestion-id xyzab111 --aws-account-id 1231 --region us-east-1

检索状态:

aws quicksight describe-ingestion --data-set-id abc1213131 --ingestion-id xyzab111 --aws-account-id 1231 --region us-east-1

请注意,您每天只能运行create-ingestion 24次。

profile picture
EXPERT
answered 5 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions