Topic 1 Question 201
You need to migrate a Redis database from an on-premises data center to a Memorystore for Redis instance. You want to follow Google-recommended practices and perform the migration for minimal cost, time and effort. What should you do?
Make an RDB backup of the Redis database, use the gsutil utility to copy the RDB file into a Cloud Storage bucket, and then import the RDB file into the Memorystore for Redis instance.
Make a secondary instance of the Redis database on a Compute Engine instance and then perform a live cutover.
Create a Dataflow job to read the Redis database from the on-premises data center and write the data to a Memorystore for Redis instance.
Write a shell script to migrate the Redis data and create a new Memorystore for Redis instance.
ユーザの投票
コメント(6)
- 正解だと思う選択肢: A
A. Make an RDB backup of the Redis database, use the gsutil utility to copy the RDB file into a Cloud Storage bucket, and then import the RDB file into the Memorystore for Redis instance.
The import and export feature uses the native RDB snapshot feature of Redis to import data into or export data out of a Memorystore for Redis instance. The use of the native RDB format prevents lock-in and makes it very easy to move data within Google Cloud or outside of Google Cloud. Import and export uses Cloud Storage buckets to store RDB files.
Reference: https://cloud.google.com/memorystore/docs/redis/import-export-overview
👍 8AWSandeep2022/09/02 - 正解だと思う選択肢: A
A is the answer.
https://cloud.google.com/memorystore/docs/redis/about-importing-exporting The import and export feature uses the native RDB snapshot feature of Redis to import data into or export data out of a Memorystore for Redis instance. The use of the native RDB format prevents lock-in and makes it very easy to move data within Google Cloud or outside of Google Cloud. Import and export uses Cloud Storage buckets to store RDB files.
👍 3zellck2022/11/28 - 正解だと思う選択肢: A👍 2ducc2022/09/02
シャッフルモード