あなたは航空会社のチケット予約システムを開発しています。
アプリケーションのストレージソリューションは、次の要件を満たす必要があります。
*少なくとも99.99%の可用性を確保し、低遅延を提供します。
*ローカライズされたネットワークの停止またはその他の予期しない障害が発生した場合は、予約イベントを受け入れます。
*オーバーブッキングや複数の旅行者への同じ座席の販売を最小限に抑えるために、予約が送信されるときに正確な順序で予約を処理します。
*最大5秒の許容範囲で、同時および順不同の予約を許可します。
Azure South-CentralUSリージョンでairlineResourceGroupという名前のリソースグループをプロビジョニングします。
アプリをサポートするには、SQL SPI CosmosDBアカウントをプロビジョニングする必要があります。
Azure CLIコマンドをどのように完了する必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。

正解:

Explanation:

Box 1: BoundedStaleness
Bounded staleness: The reads are guaranteed to honor the consistent-prefix guarantee. The reads might lag behind writes by at most "K" versions (that is, "updates") of an item or by "T" time interval. In other words, when you choose bounded staleness, the "staleness" can be configured in two ways:
The number of versions (K) of the item
The time interval (T) by which the reads might lag behind the writes
Reference:
https://docs.microsoft.com/en-us/azure/cosmos-db/consistency-levels
https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/cosmos-db/manage-with-cli.md