FailedandSuspended

create share 646 Reputation points
2021-09-23T10:25:02.187+00:00

Hi,

I have two node DAG for Exchange 2013 Standard Edition. The database size is more than 2TB now. The content index state is showing:

Passive Healthy
Copy queue length: 0
Content index state: FailedAndSuspended

What can cause this issue and how to resolve it?

Thanks.

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,373 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Yuki Sun-MSFT 40,871 Reputation points
    2021-09-24T05:24:56.04+00:00

    Hi @create share ,

    The database size is more than 2TB now.

    According to this official document, the supported database size is approximately 16 terabytes, so normally 2TB is not a real problem assuming that the disk space is sufficient.

    Content index state: FailedAndSuspended

    “Failed" or "FailedAndSuspended” database content index could be caused by vairous factors so it's hard to tell the reason directly. But in most occasions, we can run the command below to reseed the content index catalog and then check if state can return to healthy :

    Get-MailboxDatabaseCopyStatus * | Where {$_.ContentIndexState -eq “FailedAndSuspended”} | Update-MailboxDatabaseCopy -CatalogOnly  
    

    If an Answer is helpful, please click "Accept Answer" and upvote it.
    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.

    1 person found this answer helpful.