account1 という名前の Azure Cosmos DB for NoSQL アカウントがあり、このアカウントには 1 つの読み取り/書き込みリージョンと 1 つの追加の読み取りリージョンがあります。 Account1 は、強力なデフォルト整合性レベルを使用します。 account1 にリクエストを送信するときに最終整合性レベルを使用するアプリケーションがあります。 アプリケーションからの書き込みはどのように処理されるのでしょうか?
正解:A
This is because the write concern is mapped to the default consistency level configured on your Azure Cosmos DB account, which is strong in this case. Strong consistency ensures that every write operation is synchronously committed to every region associated with your Azure Cosmos DB account. The eventual consistency level that the application uses only applies to the read operations. Eventual consistency offers higher availability and better performance, but it does not guarantee the order or latency of the reads.