Hi @vincent manzari ,
Per my knowledge, the index will wait for the master to promote one of the replicas to be a new primary.
You could add the replica index with PowerShell:
1.Start a search service instance on the server that you want to create the index replica on and create a reference to the search service instance Id:
$hostA = Get-SPEnterpriseSearchServiceInstance -Identity "myserver1"
Start-SPEnterpriseSearchServiceInstance -Identity $hostA
2.Wait until the search service instance is running. At the Microsoft PowerShell command prompt, type the following command until the command returns the status Online:
Get-SPEnterpriseSearchServiceInstance -Identity $<host n >
3.Clone the active search topology. At the Microsoft PowerShell command prompt, type the following command(s):
$ssa = Get-SPEnterpriseSearchServiceApplication
$active = Get-SPEnterpriseSearchTopology -SearchApplication $ssa -Active
$clone = New-SPEnterpriseSearchTopology -SearchApplication $ssa -Clone -SearchTopology $active
4.Add a new index component and associate it with a partition. At the Windows PowerShell command prompt, type the following command(s):
New-SPEnterpriseSearchIndexComponent -SearchTopology $clone -SearchServiceInstance <host n > -IndexPartition <Index partition number>
5.Activate the clone topology. At the Microsoft PowerShell command prompt, type the following command(s):
Set-SPEnterpriseSearchTopology -Identity $clone
6.Verify that your new topology is active and that the index component representing the new index replica is added. At the Microsoft PowerShell command prompt, type the following command(s):
Get-SPEnterpriseSearchTopology -Active -SearchApplication $ssa
7.Monitor the distribution of the existing index to the new replica. The added index replica will have the state Degraded until the distribution is finished. At the Microsoft PowerShell command prompt, type the following command(s):
Get-SPEnterpriseSearchStatus -SearchApplication $ssa -Text
For Reference: Add an index replica to an existing index partition
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.