Azure Cosmos DB for NoSQL アカウントに、マルチリージョン書き込み用に構成されたデータベースがあります。 コンテナーの競合解決ポリシーを実装するには、Azure Cosmos DB SDK を使用する必要があります。ソリューションでは、競合がすべて競合フィードに送信されるようにする必要があります。 解決策: ConfilictResolutionMode を Custom に設定し、ポリシーのデフォルト設定を使用します。 これは目標を達成していますか?
正解:B
Setting ConflictResolutionMode to Custom and using the default settings for the policy will not ensure that conflicts are sent to the conflict feed. You need to define a custom stored procedure using the "conflictingItems" parameter to handle conflicts properly.