Topic 1 Question 83
You use Python scripts to generate weekly SQL reports to assess the state of your databases and determine whether you need to reorganize tables or run statistics. You want to automate this report but need to minimize operational costs and overhead. What should you do?
Create a VM in Compute Engine, and run a cron job.
Create a Cloud Composer instance, and create a directed acyclic graph (DAG).
Create a Cloud Function, and call the Cloud Function using Cloud Scheduler.
Create a Cloud Function, and call the Cloud Function from a Cloud Tasks queue.
ユーザの投票
コメント(4)
- 正解だと思う選択肢: C
I'll go for C
👍 2chelbsik2022/12/25 C: Create a Cloud Function, and call the Cloud Function using Cloud *** Scheduler. Compare Cloud Tasks vs. Cloud Scheduler Both Cloud Tasks and Cloud Scheduler can be used to initiate actions outside of the immediate context. But they have significant differences in functionality and usage. This page helps you understand the differences between them.
👍 1pk3492022/12/24- 正解だと思う選択肢: C
C Cloud Scheduler triggers actions at regular fixed intervals, whereas Cloud Tasks triggers actions based on how the individual task object is configured. Reference: https://cloud.google.com/tasks/docs/comp-tasks-sched
👍 1zanhsieh2023/02/16
シャッフルモード