Run the Distributed Index Handler in Mirror mode.
In Mirror mode the Distributed Index Handler distributes all the index data it receives to all the IDOL servers that it is connected to. The IDOL servers are exact copies of each other and must all be configured in the same way.
Run the Distributed Index Handler in Mirror mode to ensure uninterrupted service if one of the IDOL servers fails. While one IDOL server is inoperable, data continues to be indexed into its identical copies which at the same time are still available to return data for queries.
The Distributed Index Handler periodically checks if all the IDOL servers that it connects to are operating. If an IDOL server breaks down, the Distributed Index Handler queues the data that this IDOL server normally receives, and after the IDOL server starts operating again, it indexes the queued data into it.
Set MirrorMode
to false
to run the Distributed Index Handler in Non-Mirror mode.
In simple Non-Mirror mode the Distributed Index Handler distributes the index data it receives evenly across the IDOL servers that it is connected to. For example, if the Distributed Index Handler is connected to four IDOL servers, it indexes approximately one quarter of the data into each one of the IDOL servers (individual documents are not split up).
Run the Distributed Index Handler in Non-mirror mode if the amount of data that you want to index is too large for a single IDOL server. If the IDOL servers that the Distributed Index Handler indexes into are situated on different machines, the index process requires less time.
You can also apply different distribution modes, such as DistributeByDate, DistributeByFields, DistributeByReference, DistributeOnBatch, and DistributeSendMinimal. These modes allow you to control how Distributed Index Handler distributes the content between its child servers. For more information about these distribution modes, refer to the Distributed Index Handler Administration Guide and IDOL Expert.
The Distributed Index Handler periodically checks if all the IDOL servers that it connects to are operating. How it behaves when a server goes offline depends on your distribution mode:
In a simple distribution mode (simple non-mirror mode, DistributeOnBatch, and DistributeSendMinimal, including RespectChildFullness), Distributed Index Handler treats any offline child server as UpdateOnly. While the child server is down, DIH queues any updates to existing documents, but distributes new content between the remaining child servers. This behavior ensures that all content is indexed in the available servers, but that document updates and deduplication occurs in the offline child server when it comes back online.
Note: If you use child server groups to set up mirrors in a non-mirror mode structure, Distributed Index Handler queues the data to any mirrored offline child server, unless all child servers in a mirror group are offline.
In advanced distribution modes (DistributeByDate, DistributeByFields, and DistributeByReference), Distributed Index Handler queues the data that the offline IDOL server normally receives, and after the IDOL server starts operating again, it indexes the queued data into it.
Note: When you change the MirrorMode
configuration option to enable or disable Mirror mode, you must also delete the Main/
subdirectory inside the Distributed Index Handler installation directory. This additional action prevents accidentally switching between Mirror and Non-mirror mode, which can cause a loss of data. If you do not delete the Main/
directory when changing this option, Distributed Index Handler does not start.
Type: | Boolean |
---|---|
Default: | True |
Required: | No |
Configuration Section: | Server |
Example: | MirrorMode=false
|
See Also: |
|