Ensuring high availability in an HCL Domino environment requires meticulous configuration of cluster failover mechanisms. Proper tuning not only guarantees seamless user access during server outages but also optimizes overall server performance.
This guide delves into key settings and parameters essential for effective cluster failover management.
Understanding Domino Cluster Failover
In a Domino cluster, failover is the process by which the system redirects user requests from an unavailable server to a replica on another server within the cluster. This mechanism ensures continuous access to databases, even during server downtimes. The Cluster Manager on each server monitors the availability of other cluster members and manages the redirection process accordingly. Learn more about how failover works here.
Configuring Silent Failover on Notes Clients
By default, when a Notes client encounters a server failure, it prompts the user with a dialog box before switching to a replica on another server. To enhance user experience by making this process transparent, you can enable silent failover:
1. Set theFailoverSilent Parameter: - Add the following line to the client's notes.ini file: `` FailoverSilent=1 `` - This setting suppresses failover prompts, allowing the client to switch servers without user intervention. Detailed information on this parameter.
- Navigate to Policies - Settings - Desktop Settings in the Domino Directory. - Under the Mail tab, select Client Settings. - Enable the option "Enable silent failover when a server goes down". - This policy distributes the FailoverSilent=1 setting to all clients, ensuring consistency across the organization.
Enabling Mail Router Cluster Failover
To ensure that the Domino Mail Router can reroute emails to available servers during a mail server outage, configure the following:
1. Set theMailClusterFailover Parameter: - Add the following line to the server's notes.ini file: `` MailClusterFailover=1 `` - This setting allows the Router task to forward incoming messages to a cluster replica of the recipient's mail file on another available server. More details on this parameter.
- Open the Domino Administrator. - Navigate to Configuration > Servers > Configurations. - Edit the relevant Server Configuration document. - Under the Router/SMTP tab, go to Advanced > Controls. - Enable the Cluster failover option.
Managing Server Availability and Load Balancing
To prevent servers from becoming overloaded and to manage failover effectively, adjust the following settings:
1. Set theServer_Availability_Threshold Parameter: - Add the following line to the server's notes.ini file: `` Server_Availability_Threshold=75 `` - This value (ranging from 0 to 100) defines the minimum acceptable level of available system resources. When a server's availability index falls below this threshold, it declines new database open requests, prompting clients to failover to less loaded servers. Further information on this parameter.
- Open the Domino Administrator. - Navigate to Configuration > Servers > Configurations. - Edit the relevant Server Configuration document. - Under the Notes.ini Settings tab, add or modify the Server_Availability_Threshold setting.
Restricting Server Access During Maintenance
During maintenance windows, it's crucial to prevent new user connections while allowing existing sessions to conclude gracefully:
1. Set theServer_Restricted Parameter: - To restrict new database open requests: `` set config Server_Restricted=1 ` - This command can be issued directly on the server console. The value 1 restricts access until the next server restart, while 2` makes the restriction persistent across restarts. Detailed explanation of this parameter.
- Use the Domino Administrator to monitor active user sessions. - Notify users of impending maintenance to minimize disruption.
Tuning the Cluster Repair Service
For environments utilizing symmetrical clusters, the Cluster Repair service ensures database replicas remain consistent across servers. To optimize its performance:
- Access the Cluster Configuration Document:
- Open the Domino Administrator. - Navigate to Configuration > Clusters > Configuration. - Edit the Cluster Configuration document.
- Adjust Repair Service Settings:
- Under the Tuning tab, configure the following:
- Number of repair threads: Set between 1 and 20 (default is 4).
- Check donor availability: Frequency (in minutes) to check donor server availability (default is 5 minutes).
- Retry failed repairs after: Interval (in minutes) before retrying a failed repair (default is 5 minutes).
- Maximum number of retries: Number of retry attempts before marking a repair as unrepairable (default is 3).
- Repair performance: Level of CPU and disk I/O dedicated to the repair service, from 1 (slowest) to 5 (fastest) (default is 3).
- Repair logging level: Level of logging detail, from 0 (none) to 4 (diagnostic) (default is 2).
- These settings help balance repair efficiency with system resource utilization. More on tuning the repair service.
Conclusion
By carefully configuring these parameters and settings, you can enhance the resilience and performance of your HCL Domino cluster. Regular monitoring and adjustments ensure failover processes remain seamless, providing users with uninterrupted access to critical services.