Hi, I am creating a new collection using the following get request:
http://ec2_host:8983/solr/admin/collections?action=CREATE&name=collection_name_1&collection.configName=oem/conf&numShards=1 What I’m finding is that now and then base_url for the replica in state.json is set to the internal IP of the AWS node. i.e.: "base_url":"http://10.29.XXX.XX:8983/solr”, On other attempts it’s set to the public DNS name of the node: "base_url":"http://ec2_host:8983/solr”, In my /etc/defaults/solr.in.sh I have: SOLR_HOST=“ec2_host” which I thought is what I needed to get the public DNS name set in base_url. Am I doing this incorrectly or is there something I’m missing here? The issue this causes is zookeeper gives back an internal IP to my indexing processes when the internal IP is set on base_url and they then can’t find the server. Thanks!