Topic 1 Question 466
In a move toward using microservices, a company’s management team has asked all development teams to build their services so that API requests depend only on that service’s data store. One team is building a Payments service which has its own database; the service needs data that originates in the Accounts database. Both are using Amazon DynamoDB.
What approach will result in the simplest, decoupled, and reliable method to get near-real time updates from the Accounts database?
Use AWS Glue to perform frequent ETL updates from the Accounts database to the Payments database.
Use Amazon ElastiCache in Payments, with the cache updated by triggers in the Accounts database.
Use Amazon Data Firehose to deliver all changes from the Accounts database to the Payments database.
Use Amazon DynamoDB Streams to deliver all changes from the Accounts database to the Payments database.
ユーザの投票
コメント(1)
- 正解だと思う選択肢: D
DynamoDB Streams te permite capturar cambios en la tabla de Accounts en tiempo real. C una función Lambda puedes actualizar la base de datos de Payments de manera simple, desacoplada y confiable.
👍 1italiancloud20252025/02/17
シャッフルモード