Topic 1 Question 240
You have an on-premises data analytics set of binaries that processes data files in memory for about 45 minutes every midnight. The sizes of those data files range from 1 gigabyte to 16 gigabytes. You want to migrate this application to Google Cloud with minimal effort and cost. What should you do?
Create a container for the set of binaries. Use Cloud Scheduler to start a Cloud Run job for the container.
Create a container for the set of binaries. Deploy the container to Google Kubernetes Engine (GKE) and use the Kubernetes scheduler to start the application.
Upload the code to Cloud Functions. Use Cloud Scheduler to start the application.
Lift and shift to a VM on Compute Engine. Use an instance schedule to start and stop the instance.
ユーザの投票
コメント(13)
- 正解だと思う選択肢: D
Here's why option D is the most appropriate:
->Compute Engine: Compute Engine provides virtual machines (VMs) that closely resemble traditional on-premises servers. It allows you to migrate your existing application as-is to the Google Cloud platform.
->Instance Scheduling: You can schedule the VM instance to start and stop at specific times, such as midnight, to align with your existing processing schedule. This ensures that the application runs at the required time, similar to the on-premises setup.
->Minimal Effort and Cost: The "lift and shift" approach minimizes the need for code modifications or containerization, reducing migration complexity. It also allows you to use the same binaries and configurations as your on-premises setup, saving development effort. You only pay for the VM's compute resources when it's running, making it cost-effective.
👍 5taylz8762023/10/06 - 正解だと思う選択肢: D
I would choose D because I want to migrate this application to Google Cloud with minimal effort and cost. Cloud Run requires to create a container image and this means some kind of development and testing.
👍 3qannik2023/08/05 - 正解だと思う選択肢: D
minimal effort is to lift and shift to VM minimal cost is to use schedule to start and stop the instance
👍 3tczorro2023/08/17
シャッフルモード