[2025年03月05日] 合格させるDP-420日本語レビューガイド、信頼され続けるDP-420日本語テストエンジン [Q72-Q96]

Share

[2025年03月05日] 合格させるDP-420日本語レビューガイド、信頼され続けるDP-420日本語テストエンジン

DP-420日本語テストエンジン練習テスト問題、試験問題集

質問 # 72
次のクエリがあります。
*から選択
ここで、c.sensor = "TEMP1"
かつ c.value < 22
かつ c.timestamp >= 1619146031231
クエリによって消費される要求単位 (RU) を最小限に抑える複合インデックス戦略を推奨する必要があります。
何をお勧めしますか?

  • A. (センサー ASC、値 ASC、タイムスタンプ ASC) の複合インデックスと (センサー DESC、値 DESC、タイムスタンプ DESC) の複合インデックス
  • B. (センサー ASC、値 ASC) の複合インデックスと (センサー ASC、タイムスタンプ ASC) の複合インデックス
  • C. (値 ASC、センサー ASC) の複合インデックスと (タイムスタンプ ASC、センサー ASC) の複合インデックス
  • D. (センサー ASC、値 ASC、タイムスタンプ ASC) の複合インデックス

正解:B

解説:
If a query has a filter with two or more properties, adding a composite index will improve performance.
Consider the following query:
SELECT * FROM c WHERE c.name = "Tim" and c.age > 18
In the absence of a composite index on (name ASC, and age ASC), we will utilize a range index for this query. We can improve the efficiency of this query by creating a composite index for name and age.
Queries with multiple equality filters and a maximum of one range filter (such as >,<, <=, >=, !=) will utilize the composite index.


質問 # 73
Azure Cosmos DB for NoSQL アカウントにコンテナーがあります。
カスタム Log Analytics クエリに基づいてアラートを作成する必要があります。
どの信号タイプを使用する必要がありますか?

  • A. リソースの健全性
  • B. メトリクス
  • C. アクティビティ ログ
  • D. ログ

正解:D


質問 # 74
Azure Cosmos DB for NoSQL アカウントにコンテナーがあります。
データ更新量は予測できません。
複数のインスタンスを持つ Web アプリを使用して、コンテナーの変更ティードを処理する必要があります。変更フィードは、Azure Cosmos DB SDK の変更フィード プロセッサを使用して処理されます。複数のインスタンスはワークロードを共有する必要があります。
どの 3 つのアクションを実行する必要がありますか?それぞれの正解は、解決策の一部を示しています。
注: 正しく選択するたびに 1 ポイントの価値があります。

  • A. インスタンスごとに異なるリース コンテナ構成を構成します。
  • B. すべてのインスタンスに同じプロセッサ名を設定します。
  • C. インスタンスごとに異なるインスタンス名を設定します。
  • D. すべてのインスタンスに同じインスタンス名を設定します。 13
  • E. すべてのインスタンスに同じリース コンテナー構成を構成します。
  • F. インスタンスごとに異なるプロセッサ名を構成します。

正解:B、C、E


質問 # 75
次の図に示すように構成された Contacts という名前の Azure Cosmos DB for NoSQL コンテナーがあります。

連絡先には、次の表に示す項目が含まれます。

連絡先には、次の表に示す項目を挿入する予定です。

次の各ステートメントについて、ステートメントが true の場合は [はい] を選択します。それ以外の場合は、「いいえ」を選択します。
注: 正しく選択するたびに 1 ポイントの価値があります。

正解:

解説:

Explanation:


質問 # 76
Azure Cosmos DB Core (SQL) API アカウントにデータベースがあります。データベースは 2 時間ごとにバックアップされます。
ポイントインタイム復元をサポートするソリューションを実装する必要があります。
まず何をすべきでしょうか?

  • A. アカウントの継続的バックアップを有効にします。
  • B. アカウントのポイント イン タイム リストア設定を構成します。
  • C. アカウントのバックアップと復元の設定を構成します。
  • D. 定期的なバックアップ ポリシーを持つ新しいアカウントを作成します。

正解:A


質問 # 77
account1 という名前の Azure Cosmos DB Core (SQL) API アカウントがあります。
次の表に示す Azure 仮想ネットワークとサブネットがあります。

vnet1 ネットワークと vnet2 ネットワークは、仮想ネットワーク ピアを使用して接続されます。
account1 のファイアウォールと仮想ネットワークの設定は、図に示すように構成されています。

次の各ステートメントについて、そのステートメントが true の場合は [はい] を選択します。それ以外の場合は、「いいえ」を選択します。
注: 正しく選択するたびに 1 ポイントの価値があります。

正解:

解説:

Explanation:

Box 1: Yes
VM1 is on vnet1.subnet1 which has the Endpoint Status enabled.
Box 2: No
Only virtual network and their subnets added to Azure Cosmos account have access. Their peered VNets cannot access the account until the subnets within peered virtual networks are added to the account.
Box 3: No
Only virtual network and their subnets added to Azure Cosmos account have access.
Reference: https://docs.microsoft.com/en-us/azure/cosmos-db/how-to-configure-vnet-service-endpoint


質問 # 78
次のクエリがあります。
SELECT * FROM с
WHERE c.sensor = "TEMP1"
AND c.value < 22
AND c.timestamp >= 1619146031231
クエリによって消費されるリクエスト ユニット (RU) を最小限に抑える複合インデックス戦略を推奨する必要があります。
何をお勧めしますか?

  • A. (センサー ASC、値 ASC、タイムスタンプ ASC) の複合インデックスと (センサー DESC、値 DESC、タイムスタンプ DESC) の複合インデックス
  • B. (センサー ASC、値 ASC) の複合インデックスと (センサー ASC、タイムスタンプ ASC) の複合インデックス
  • C. (値 ASC、センサー ASC) の複合インデックスと (タイムスタンプ ASC、センサー ASC) の複合インデックス
  • D. (センサー ASC、値 ASC、タイムスタンプ ASC) の複合インデックス

正解:B

解説:
If a query has a filter with two or more properties, adding a composite index will improve performance.
Consider the following query:
SELECT * FROM c WHERE c.name = "Tim" and c.age > 18
In the absence of a composite index on (name ASC, and age ASC), we will utilize a range index for this query. We can improve the efficiency of this query by creating a composite index for name and age.
Queries with multiple equality filters and a maximum of one range filter (such as >,<, <=, >=, !=) will utilize the composite index.


質問 # 79
自動フェールオーバー用に構成された Azure Cosmos DB for NoSQL account1 があります。 account1 アカウントには、米国西部に 1 つの読み取り/書き込みリージョンがあり、米国東部に 1 つの読み取りリージョンがあります。
次の PowerShell コマンドを実行します。

コマンドを実行するとどのような効果がありますか?

  • A. account1 のプロビジョニングされたスループットが増加します。
  • B. 手動フェイルオーバーが発生します。
  • C. 変更中、アカウントは書き込みできなくなります。
  • D. アカウントはマルチリージョン書き込み用に構成されます。

正解:C

解説:
You can use the Set-AzCosmosDBAccountRegion cmdlet to update the regions that an Azure Cosmos DB account uses. You can use this cmdlet to add a region or change the region failover order. The cmdlet requires a resource group name, an Azure Cosmos DB account name, and a list of regions in desired failover order1.
For your scenario, based on the PowerShell command, you are using the Set-AzCosmosDBAccountRegion cmdlet to update the regions for an Azure Cosmos DB account named account1 that is configured for automatic failover. The command specifies two regions: West US and East US. The effect of running the command is that the account will be configured for multi-region writes.
Multi-region writes is a feature of Azure Cosmos DB that allows you to write data to any region in your account and have it automatically replicated to all other regions. This feature provides high availability and low latency for write operations across multiple regions. To enable multi-region writes, you need to specify at least two regions in your account and set them as write regions2. In your command, you are setting both West US and East US as write regions by using the -IsZoneRedundant parameter with a value of $true for both regions.


質問 # 80
con-iot1 と con-iot2 を実装する予定です。
各コンテナーのデフォルトの存続期間設定を構成する必要があります。ソリューションは、LoT テレメトリ要件を満たしている必要があります。
何を設定すればよいでしょうか?回答するには、回答内の適切な選択肢を選択してください。 注: 正しい選択肢はそれぞれ 1 ポイントの価値があります。

正解:

解説:


質問 # 81
container1 という名前のコンテナーをホストする Azure Cosmos DB データベースがあります。
TTL 値が明示的に設定されていない限り、contained に保存されているアイテムが期限切れにならないようにする必要があります。どうすればよいでしょうか?

  • A. DefaultTiiwroLive プロパティを削除します。
  • B. DefaultTineToLive プロパティを -l に設定します。
  • C. DefaultiiwioLive プロパティを null に設定します。
  • D. DefaulttimtoLive プロパティを e に設定します。

正解:B


質問 # 82
disablekeyBasedletadatwriteAccess プロパティが有効になっている account という名前の Azure Cosmos DB for NoSQL アカウントがあります。
App1 という名前のアプリを開発しています。このアプリは、DevUser1 という名前の use1 が account1 にコンテナーを作成するために使用します。 DevUser1 は、Azure AD テナントに特権のないユーザー アカウントを持っています。
DevUser1 が App1 を使用して account1 にコンテナーを作成できることを確認する必要があります。
あなたは何をするべきか?回答するには、回答領域で適切なオプションを選択してください。
注意 正しい選択はそれぞれ 1 ポイントの価値があります。

正解:

解説:

Explanation:


質問 # 83
注: この質問は、同じシナリオを示す一連の質問の一部です。このシリーズの各質問には、指定された目標を達成できる可能性のある独自の解決策が含まれています。一部の質問セットには複数の正しい解決策が含まれる場合がありますが、他の質問セットには正しい解決策がない場合があります。
このセクションの質問に回答すると、その質問に戻ることはできません。その結果1、これらの質問はレビュー画面には表示されません。
Azure Cosmos DB for NoSQL アカウントに、マルチリージョン書き込み用に構成されたデータベースがあります。
コンテナーの競合解決ポリシーを実装するには、Azure Cosmos OB SDK を使用する必要があります。ソリューションでは、競合がすべて競合フィードに送信されるようにする必要があります。
解決策: ConflictResolutionMode を Laswriterwins に設定し、ポリシーのデフォルト設定を使用します。
これは目標を達成していますか?

  • A. いいえ
  • B. はい

正解:B


質問 # 84
disableKeyBasedMetadataWriteAccess プロパティが有効になっている account1 という名前の Azure Cosmos DB Core (SQL) API アカウントがあります。
DevUser1 という名前のユーザーが account1 にコンテナーを作成するために使用する App1 という名前のアプリを開発しています。 DevUser1 は、Azure Active Directory (Azure AD) テナントに特権のないユーザー アカウントを持っています。
DevUser1 が App1 を使用して account1 にコンテナーを作成できることを確認する必要があります。
あなたは何をするべきか?回答するには、回答領域で適切なオプションを選択してください。
注: 正しく選択するたびに 1 ポイントの価値があります。

正解:

解説:

Explanation:

Box 1: Resource tokens
Resource tokens provide access to the application resources within a database. Resource tokens:
Provide access to specific containers, partition keys, documents, attachments, stored procedures, triggers, and UDFs.
Box 2: Azure Resource Manager API
You can use Azure Resource Manager to help deploy and manage your Azure Cosmos DB accounts, databases, and containers.
Reference:
https://docs.microsoft.com/en-us/azure/cosmos-db/secure-access-to-data
https://docs.microsoft.com/en-us/rest/api/resources/


質問 # 85
Azure Cosmos DB に db1 という名前のデータベースがあります。 f を通じて公開されているサードパーティ アプリケーションがあります。 アプリケーションからアプリケーションにデータを移行する必要があります。何を使用すればよいですか?

  • A. Azure データ ファクトリ
  • B. データベース移行アシスタント
  • C. Azure 移行

正解:A

解説:
you can migrate data from various data sources to Azure Cosmos DB using different tools and methods. The choice of the migration tool depends on factors such as the data source, the Azure Cosmos DB API, the size of data, and the expected migration duration1. Some of the common migration tools are:
* Azure Cosmos DB Data Migration tool: This is an open source tool that can import data to Azure Cosmos DB from sources such as JSON files, MongoDB, SQL Server, CSV files, and Azure Cosmos DB collections. This tool supports the SQL API and the Table API of Azure Cosmos DB2.
* Azure Data Factory: This is a cloud-based data integration service that can copy data from various sources to Azure Cosmos DB using connectors. This tool supports the SQL API, MongoDB API, Cassandra API, Gremlin API, and Table API of Azure Cosmos DB3.
* Azure Cosmos DB live data migrator: This is a command-line tool that can migrate data from one Azure Cosmos DB container to another container within the same or different account. This tool supports live migration with minimal downtime and works with any Azure Cosmos DB API4.
For your scenario, if you want to migrate data from a third-party application that is exposed through an OData endpoint to a container in Azure Cosmos DB for NoSQL, you should use Azure Data Factory. Azure Data Factory has an OData connector that can read data from an OData source and write it to an Azure Cosmos DB sink using the SQL API5. You can create a copy activity in Azure Data Factory that specifies the OData source and the Azure Cosmos DB sink, and run it on demand or on a schedule.


質問 # 86
db1 という名前の NoSQL データベース用の Azure Cosmos DB があります。
次のコードを実行します。

次の各文について、正しい場合は「はい」を選択してください。そうでない場合は「いいえ」を選択してください。
注意: 正しい選択ごとに 1 ポイントが付与されます。

正解:

解説:

Explanation:


質問 # 87
Azure Cosmos DB Core (SQL) API アカウントに、container1 という名前のコンテナーがあります。コンテナ 1 内のアイテムの更新/挿入は 3 秒ごとに発生します。
function1 という名前の Azure Functions アプリがあり、container1 で項目が挿入または置換されるたびに実行されることになっています。
function1 は実行されますが、更新/挿入ごとに実行されるわけではないことがわかります。
function1 が各 Upsert を 1 秒以内に処理するようにする必要があります。
function1 の Function.json ファイルでどのプロパティを変更する必要がありますか?

  • A. maxItemsPerInvocation
  • B. リースコレクションのスループット
  • C. feedPollDelay
  • D. チェックポイント間隔

正解:C

解説:
With an upsert operation we can either insert or update an existing record at the same time.
FeedPollDelay: The time (in milliseconds) for the delay between polling a partition for new changes on the feed, after all current changes are drained. Default is 5,000 milliseconds, or 5 seconds.
Incorrect Answers:
A: checkpointInterval: When set, it defines, in milliseconds, the interval between lease checkpoints. Default is always after each Function call.
C: maxItemsPerInvocation: When set, this property sets the maximum number of items received per Function call. If operations in the monitored collection are performed through stored procedures, transaction scope is preserved when reading items from the change feed. As a result, the number of items received could be higher than the specified value so that the items changed by the same transaction are returned as part of one atomic batch.


質問 # 88
accounts という名前の Azure Cosmos DB for NoSQL アカウントを含む Azure サブスクリプションがあり、リソース ログを Log Analytics に送信するようにアカウントを構成します。
過去 24 時間以内に削除された account1 内のコンテナーを特定する必要があります。
クエリをどのように完了すればよいですか? 回答するには、回答領域で適切なオプションを選択します。
注意: 正しい選択ごとに 1 ポイントが付与されます。

正解:

解説:

Explanation:


質問 # 89
次の表に示すように、Azure Cosmos DB Core (SQL) API アカウントには 3 つのコンテナーがあります。

次の Azure 関数があります。
cn1 の変更フィードを読み取る Fn1 という名前の関数
cn2 の変更フィードを読み取る Fn2 という名前の関数
cn3 の変更フィードを読み取る Fn3 という名前の関数
次のアクションを実行します。
item1 という名前の項目を cn1 から削除します。
cn2 内の item2 という名前の項目を更新します。
cn3 の item3 という名前のアイテムの場合、アイテムの存続時間を 3,600 秒に更新します。
次の各ステートメントについて、そのステートメントが true の場合は [はい] を選択します。それ以外の場合は、「いいえ」を選択します。
注: 正しく選択するたびに 1 ポイントの価値があります。

正解:

解説:

Explanation:

Box 1: No
Azure Cosmos DB's change feed is a great choice as a central data store in event sourcing architectures where all data ingestion is modeled as writes (no updates or deletes).
Note: The change feed does not capture deletes. If you delete an item from your container, it is also removed from the change feed. The most common method of handling this is adding a soft marker on the items that are being deleted. You can add a property called "deleted" and set it to "true" at the time of deletion. This document update will show up in the change feed. You can set a TTL on this item so that it can be automatically deleted later.
Box 2: No
The _etag format is internal and you should not take dependency on it, because it can change anytime.
Box 3: Yes
Change feed support in Azure Cosmos DB works by listening to an Azure Cosmos container for any changes.
Reference:
https://docs.microsoft.com/en-us/azure/cosmos-db/sql/change-feed-design-patterns
https://docs.microsoft.com/en-us/azure/cosmos-db/change-feed


質問 # 90
Azure Cosmos OB または NoSQL アカウントにデータを保存する運用システムを作成する予定です。次の要件を満たすようにアカウントを構成する必要があります。
* Spar* クエリをサポートします。
* 過去 6 か月間のデータ分析をサポートします。
* クエリを実行するときの分析コンピューティングに対してのみ料金が発生します。
どの 3 つのアクションを実行する必要がありますか?それぞれの正解は、解決策の一部を示しています。注意 正しい選択はそれぞれ 1 ポイントの価値があります。

  • A. アカウントの Azure Synapse Link を有効にします
  • B. コンテナを作成し、有効期間を 6 か月に設定します。
  • C. Azure Synapse パイプラインを作成します。
  • D. Azure Synapse のリンクされたサービスを作成します。
  • E. コンテナーを作成し、分析プロパティを 6 か月に設定します。
  • F. Azure Databanks ノートブックを作成します。

正解:A、E、F


質問 # 91
App1 という名前のアプリケーションで使用される Azure Cosmos DB Core (SQL) API アカウントがあります。
アカウントの [インサイト] ペインを開くと、次のグラフが表示されます。

ドロップダウン メニューを使用して、図に示されている情報に基づいて各質問に答える回答の選択肢を選択します。
注: 正しく選択するたびに 1 ポイントの価値があります。

正解:

解説:


質問 # 92
オンプレミス ネットワークがあります。
account1 という名前の Azure Cosmos DB アカウントと VNet1 という名前の Azure 仮想ネットワークを含む Azure サブスクリプションがあります。 VNet1 には、VM1 と VM2 という名前の 2 つの仮想マシンが含まれています。 VNet1 は、サイト間 (S2S) VPN を使用してオンプレミス ネットワークに接続されます。
次の要件を満たす必要があります。
* account1 のパブリック エンドポイントへのアクセスをブロックします。
* VM1 のみに account1 へのアクセスを許可します。
ソリューションには何を含めるべきでしょうか?回答するには、回答領域で適切なオプションを選択してください。
注: 正しく選択するたびに 1 ポイントの価値があります。

正解:

解説:

Explanation:


質問 # 93
次の図に示すように、NoSQL アカウント用の Azure Cosmos DB のバックアップを構成します。

ドロップダウン メニューを使用して、図に示されている情報に基づいて各ステートメントを完成させる回答の選択肢を選択します。
注: 正しく選択するたびに 1 ポイントの価値があります。

正解:

解説:

Explanation:
Box 1 = The current backup policy provides protection for: 2 Hours Azure Cosmos DB automatically takes backups of your data at regular intervals. The backup interval and the retention period can be configured from the Azure portal. You can also choose between two backup modes: periodic backup mode and continuous backup mode. Periodic backup mode is the default mode for all existing accounts and it takes a full backup of your database every 4 hours by default. Continuous backup mode is a new mode that allows you to restore to any point of time within either 7 or 30 days1.
For your scenario, based on the exhibit, you have configured a backup for an Azure Cosmos DB for NoSQL account using the periodic backup mode with a backup interval of 1 hour and a retention period of 2 hours.
This means that Azure Cosmos DB will take a full backup of your database every hour and keep only the latest two backups. Therefore, the current backup policy provides protection for 2 hours.
Box 2: In case of emergency, you must (answer choice) to restore the backup = create a support ticket Azure Cosmos DB automatically takes backups of your data at regular intervals. You can configure the backup interval and the retention period from the Azure portal. You can also choose between two backup modes:
periodic backup mode and continuous backup mode. Periodic backup mode is the default mode for all existing accounts and it takes a full backup of your database every 4 hours by default. Continuous backup mode is a new mode that allows you to restore to any point of time within either 7 or 30 days1.
For your scenario, based on the exhibit, you have configured a backup for an Azure Cosmos DB for NoSQL account using the periodic backup mode with a backup interval of 1 hour and a retention period of 2 hours.
This means that Azure Cosmos DB will take a full backup of your database every hour and keep only the latest two backups. In case of emergency, you must create a support ticket to restore the backup. This is the answer to your question.
To restore data from a periodic backup, you need to create a support request with Azure Cosmos DB team and provide the following information:
* The name of your Azure Cosmos DB account
* The name of the database or container that you want to restore
* The date and time (in UTC) that you want to restore from
* The name of the target Azure Cosmos DB account where you want to restore the data
* The name of the target resource group where you want to restore the data The Azure Cosmos DB team will then initiate the restore process and notify you when it is completed2.


質問 # 94
App2 を実装するときに使用する接続モードを特定する必要があります。ソリューションは計画された変更をサポートし、ビジネス要件を満たさなければなりません。
どの接続モードを特定する必要がありますか?

  • A. ゲートウェイ モード (HTTPS を使用)
  • B. HTTPS 経由のダイレクト モード
  • C. TCP 経由のダイレクト モード

正解:C

解説:
Scenario: Develop an app named App2 that will run from the retail stores and query the data in account2.
App2 must be limited to a single DNS endpoint when accessing account2.
By using Azure Private Link, you can connect to an Azure Cosmos account via a private endpoint. The private endpoint is a set of private IP addresses in a subnet within your virtual network.
When you're using Private Link with an Azure Cosmos account through a direct mode connection, you can use only the TCP protocol. The HTTP protocol is not currently supported.
Reference:
https://docs.microsoft.com/en-us/azure/cosmos-db/how-to-configure-private-endpoints
Topic 1, Litware, inc
Case Study
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.
To start the case study
To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question.
Overview
Litware, Inc. is a United States-based grocery retailer. Litware has a main office and a primary datacenter in Seattle. The company has 50 retail stores across the United States and an emerging online presence. Each store connects directly to the internet.
Existing environment. Cloud and Data Service Environments.
Litware has an Azure subscription that contains the resources shown in the following table.

Each container in productdb is configured for manual throughput.
The con-product container stores the company's product catalog data. Each document in con-product includes a con-productvendor value. Most queries targeting the data in con-product are in the following format.
SELECT * FROM con-product p WHERE p.con-productVendor - 'name'
Most queries targeting the data in the con-productVendor container are in the following format SELECT * FROM con-productVendor pv ORDER BY pv.creditRating, pv.yearFounded Existing environment. Current Problems.
Litware identifies the following issues:
Updates to product categories in the con-productVendor container do not propagate automatically to documents in the con-product container.
Application updates in con-product frequently cause HTTP status code 429 "Too many requests". You discover that the 429 status code relates to excessive request unit (RU) consumption during the updates.
Requirements. Planned Changes
Litware plans to implement a new Azure Cosmos DB Core (SQL) API account named account2 that will contain a database named iotdb. The iotdb database will contain two containers named con-iot1 and con-iot2.
Litware plans to make the following changes:
Store the telemetry data in account2.
Configure account1 to support multiple read-write regions.
Implement referential integrity for the con-product container.
Use Azure Functions to send notifications about product updates to different recipients.
Develop an app named App1 that will run from all locations and query the data in account1.
Develop an app named App2 that will run from the retail stores and query the data in account2. App2 must be limited to a single DNS endpoint when accessing account2.
Requirements. Business Requirements
Litware identifies the following business requirements:
Whenever there are multiple solutions for a requirement, select the solution that provides the best performance, as long as there are no additional costs associated.
Ensure that Azure Cosmos DB costs for IoT-related processing are predictable.
Minimize the number of firewall changes in the retail stores.
Requirements. Product Catalog Requirements
Litware identifies the following requirements for the product catalog:
Implement a custom conflict resolution policy for the product catalog data.
Minimize the frequency of errors during updates of the con-product container.
Once multi-region writes are configured, maximize the performance of App1 queries against the data in account1.
Trigger the execution of two Azure functions following every update to any document in the con-product container.


質問 # 95
Azure Cosmos DB Core (SQL) API アカウントのデータを読み取る App1 という名前のアプリケーションがあります。
App1 は同じ読み取りクエリを毎分実行します。アカウントのデフォルトの整合性レベルは最終に設定されています。
すべてのクエリがキャッシュを使用するのではなく、要求ユニット (RU) を消費していることがわかります。
IntegratedCacheiteItemHitRate メトリックと IntegratedCacheQueryHitRate メトリックを確認します。どちらのメトリックの値も 0 です。
専用ゲートウェイ クラスターがプロビジョニングされ、接続文字列で使用されていることを確認します。
App1 が Azure Cosmos DB 統合キャッシュを使用していることを確認する必要があります。
何を設定すればよいでしょうか?

  • A. Azure Cosmos DB アカウントのデフォルトの整合性レベル
  • B. App1 CosmosClient の接続モード
  • C. Azure Cosmos DB コンテナーのインデックス作成ポリシー
  • D. App1 からのリクエストの整合性レベル

正解:B

解説:
Because the integrated cache is specific to your Azure Cosmos DB account and requires significant CPU and memory, it requires a dedicated gateway node. Connect to Azure Cosmos DB using gateway mode.
Reference: https://docs.microsoft.com/en-us/azure/cosmos-db/integrated-cache-faq


質問 # 96
......

100%無料DP-420日本語日常練習試験には138問があります:https://www.jpntest.com/shiken/DP-420J-mondaishu

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡