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

0

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

profile picture
EXPERTE
gefragt vor 5 Monaten20 Aufrufe
1 Antwort
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
EXPERTE
beantwortet vor 5 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen