Help us improve the AWS re:Post Knowledge Center by sharing your feedback in a brief survey. Your input can influence how we create and update our content to better support your AWS journey.
我们有多个VPC分布在多个AWS Account中,现在多个VPC中的业务需要依赖MSK进行数据通信,之前的做法是用 VPC Peering,但是这种方式的弊端是开放太多了,所以想考虑使用 Endpoint, 参考了了官方这个blog 中的pattern 1的方案 https://aws.amazon.com/blogs/big-data/how-goldman-sachs-builds-cross-account-connectivity-to-their-amazon-msk-clusters-with-aws-privatelink/
在该方案中,需要使用 MSK Broker 的IP地址创建 target group(默认所有服务 AWS 会提供一个域名) 1. Create a target group with target type as IP, protocol TCP, port 9094, and in the same VPC as the MSK cluster. Register the MSK broker as a target by its IP address。
我的问题是: 1. AWS MSK 创建以后broker 提供的域名,解析后的IP是永久固定的么? 2. 如果遇到故障切换,这里不需要做处理么?