あなたは在庫追跡ソリューションを開発しています。このソリューションには、Azure Cosmos DB によってトリガーされる複数の関数を含む Azure Functions アプリが含まれています。あなたは、このソリューションを複数の Azure リージョンにデプロイする予定です。 解決策は以下の要件を満たす必要があります。 - Azure Cosmos DS からのアイテムの結果は最新のものを返す必要があります アイテムのコミット済みバージョン。 - Azure Cosmos DB に書き込まれる項目は、順序保証を提供する必要があります。 Azure Cosmos DB のデプロイメントでは、整合性レベルを設定する必要があります。 どの濃度レベルを使用すべきですか?
正解:D
Strong consistency offers a linearizability guarantee. Linearizability refers to serving requests concurrently. The reads are guaranteed to return the most recent committed version of an item. A client never sees an uncommitted or partial write. Users are always guaranteed to read the latest committed write. Source: https://learn.microsoft.com/en-us/azure/cosmos-db/consistency-levels