A media streaming company hosts a high-throughput video processing pipeline in the `us-west-2` Region across two VPCs: an Ingestion VPC and a Processing VPC. The Ingestion VPC receives raw high-definition video feeds and stores them temporarily on Amazon EC2 instances. The Processing VPC hosts a cluster of GPU-accelerated EC2 instances that pull these video files for transcoding. Currently, all network traffic between the two VPCs routes through an AWS Transit Gateway. The application requires transferring files of up to GB with a minimum throughput of Gbps and the lowest possible latency. During peak events, the company observes packet fragmentation and throughput limits due to MTU constraints on the Transit Gateway path. The company also uses an Amazon Route 53 Private Hosted Zone (PHZ) named `video.internal` for service discovery, which is currently associated only with the Ingestion VPC. Which solution should a solutions architect implement to optimize network performance, maximize throughput, and maintain DNS resolution?
- Establish a VPC Peering connection directly between the Ingestion VPC and the Processing VPC. Configure VPC route tables to route traffic destined for the peer VPC CIDR through the peering connection, and enable jumbo frames ( MTU) on the EC2 instances. Associate the Route 53 Private Hosted Zone `video.internal` with the Processing VPC.Answer
- BEstablish a VPC Peering connection directly between the Ingestion VPC and the Processing VPC. Configure VPC route tables to route traffic destined for the peer VPC CIDR through the peering connection, and enable jumbo frames ( MTU) on the EC2 instances. Do not modify the Route 53 Private Hosted Zone, as DNS resolution is automatically shared across peered VPCs.
- CKeep the existing Transit Gateway configuration, but deploy a Transit Gateway Connect attachment with GRE tunnels between the Ingestion VPC and the Processing VPC to support virtual routing. Associate the Route 53 Private Hosted Zone `video.internal` with the Processing VPC.
- DDeploy a NAT Gateway in a public subnet of the Ingestion VPC, and route all outgoing transcoding traffic from the Processing VPC to this NAT Gateway using Transit Gateway. Associate the Route 53 Private Hosted Zone `video.internal` with the Processing VPC.