Topic 1 Question 286
You are developing an application component to capture user behavior data and stream the data to BigQuery. You plan to use the BigQuery Storage Write API. You need to ensure that the data that arrives in BigQuery does not have any duplicates. You want to use the simplest operational method to achieve this. What should you do?
Create a write stream in the default type.
Create a write stream in the committed type.
Configure a Kafka cluster. Use a primary universally unique identifier (UUID) for duplicate messages.
Configure a Pub/Sub topic. Use Cloud Functions to subscribe to the topic and remove any duplicates.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: B
BigQuery Storage Write API supports different stream types, and the committed stream type is designed for ensuring data consistency. Data written using committed streams is deduplicated by BigQuery, which guarantees that no duplicates will be present.
👍 3anshad6662024/10/11 - 正解だと思う選択肢: B
B
👍 2kitechen2024/10/31 - 正解だと思う選択肢: B
B. looks suitable, check the doc link - https://cloud.google.com/bigquery/docs/write-api
👍 2GCP0012024/12/22
シャッフルモード