ドラッグアンドドロップ問題
あなたはserviceA、serviceB、serviceCという名前の複数のマイクロサービスを開発しています。これらのマイクロサービスを新しいAzure Container Apps環境にデプロイします。
あなたには以下の要件があります。
マイクロサービスはデータをストレージに永続化する必要がある。
- serviceA は、現在のコンテナにのみ見えるデータを永続化する必要があります。
ストレージ容量は、コンテナ内で使用可能なディスク容量に制限されなければならない。
- serviceB はレプリカの存続期間中データを永続化し、
レプリカ内の複数のコンテナを同じ保管場所に設置する。
- serviceC はレプリカの存続期間を超えてデータを永続化する必要がある
複数のコンテナがストレージにアクセスできるようにし、
オブジェクトの権限。
各マイクロサービスごとにストレージを設定する必要があります。
どのストレージタイプを使用すべきでしょうか?回答するには、適切なストレージタイプを正しいマイクロサービスにドラッグしてください。各ストレージタイプは、1回、複数回、またはまったく使用しない場合があります。コンテンツを表示するには、ペイン間の分割バーをドラッグするか、スクロールする必要がある場合があります。
注:正解ごとに1ポイントが加算されます。

正解:

Explanation:
serviceA: Container file system
The container file system is local to the container and is only visible to the current container. It is restricted to the amount of disk space available in the container.
serviceB: Ephemeral Storage
Ephemeral Storage is temporary storage that persists for the lifetime of the replica. It allows multiple containers in the replica to mount the same storage location.
serviceC: Azure Blob Storage
Azure Blob Storage is a highly scalable and durable object storage service that persists data beyond the lifetime of the replica. It allows multiple containers to access the storage and supports per-object permissions.