1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
<?xml version="1.0" encoding="utf-8" ?> <deployment comment="FAST Search Server two node deployment example" xmlns="http://www.microsoft.com/enterprisesearch"> <instanceid>TheManCaveFastSearchServer</instanceid> <!-- NOTE: Host names "fastserver1.contoso.com" and "fastserver2.contoso.com" must be changed to the actual server names in use --> <connector-databaseconnectionstring /> <host name="fastserver1.contoso.com"> <admin /> <indexing-dispatcher /> <content-distributor /> <webanalyzer server="true" link-processing="true" lookup-db="true" /> <document-processor processes="4" /> <searchengine row="0" column="0" /> </host> <host name="fastserver2.contoso.com"> <searchengine row="1" column="0" /> <query /> </host> <searchcluster> <row id="0" index="primary" search="true" /> <row id="1" index="none" search="true" /> </searchcluster> </deployment> |