A digital advertising platform operates a latency-critical ad bidding application across two VPCs in the `us-east-1` Region: `AdBiddingVPC` and `AdAnalyticsVPC`. The bidding engine running on Amazon EC2 instances in `AdBiddingVPC` needs to write real-time transactional logs to an Amazon Aurora PostgreSQL database cluster in `AdAnalyticsVPC` with a latency of less than . Currently, the VPCs are connected using an AWS Transit Gateway. The database endpoint is hosted in a Route 53 Private Hosted Zone (PHZ) that is associated only with `AdAnalyticsVPC`. The bidding engine is currently experiencing latency spikes of over and database connection timeouts. Network analysis shows that database DNS queries from the bidding engine resolve to a public IP address, causing the traffic to route out through a NAT Gateway in `AdBiddingVPC` and back in via the public internet. Which of the following optimization strategies should the Solutions Architect implement? (Select TWO.)
- Create a VPC Peering connection between AdBiddingVPC and AdAnalyticsVPC, and update the route tables to route database traffic directly through the peering connection.Answer
- Associate the Route 53 Private Hosted Zone containing the database DNS records with AdBiddingVPC.Answer
- CEstablish an AWS Transit Gateway peering connection between AdBiddingVPC and AdAnalyticsVPC to bypass the public internet.
- DConfigure a secondary NAT Gateway in a different Availability Zone within AdBiddingVPC, and route the database traffic through it to the public database endpoint.
- EDeploy an Application Load Balancer in AdAnalyticsVPC in front of the database cluster, and request AWS Support to pre-warm the load balancer to handle peak bidding volumes.