Version: 10.2.1c and 10.2.1c SP3 |
Responder Overview > Implement Responder > Configure Responder > Responder Server > Prediction Services > Prediction Services Configuration |
The prediction services configuration file (Miner.Responder.PredictionServices.exe.config) is an XML file that must be configured to use Responder's prediction services. You may edit the file by opening it in an XML application (such as XML Spy) or by opening it in a simple text editor (such as Notepad). Miner.Responder.PredictionServices.exe.config is installed in: Program Files(x86)\Miner and Miner\Responder\Server\.
Do not edit XML files using a word processing program such as WordPad or Microsoft Word as it may corrupt your configuration file. |
The information below includes optional configuration steps very similar to the Data Services configuration. The configuration in these five steps is not required, but it may improve the performance of your Data Services, especially if you have a large number of users. In later required steps, you'll determine how your Prediction Engine will formulate predictions.
Optional XML Configuration
Copy Code
|
|
---|---|
<miner.responder.server.configuration default="ConfigurationName"> <multicast group="239.254.000.006" port="6679" ttl="2"/> <database> <connectionString>Data Source=instance name;Min Pool Size=2;User ID=Responder user ID;Password=Responder password</connectionString> <providerFactoryClass type="Miner.Data.Access.ProviderFactories.OracleProviderFactory, Miner.Data.Access"/> <syntaxClass type="Miner.Data.Access.OracleDataSyntax, Miner.Data.Access"/> <schemaConfigurationFile>DatabaseSchemaConfig.xml</schemaConfigurationFile> </database> <geodatabase> <server>geodatabase server name</server> <instance>geodatabase server instance</instance> <database>SQL server database name</database> <user>GIS user ID for the database owner</user> <password>GIS user password</password> <version>version name</version> <dataset>dataset name</dataset> <network>geometric network name</network> </geodatabase> </configuration> |
Min Pool Size: This optional attribute in the connection string sets the minimum number of pooled database connections. When the number of pooled connections exceeds the Min Pool Size setting any idle connections will be disconnected without falling below that Min Pool Size threshold. Recommended Min Pool Size setting for Prediction Services: 2 |
Copy Code
|
|
---|---|
<miner.responder.server.configuration default="ConfigurationName"> |
Required Prediction Settings
You can configure prediction settings once server information has been configured. Look for the following XML:
Copy Code
|
|
---|---|
<PredictionThresholdInfo probableStatePollingFrequency="00:20:00" callStewPollingFrequency="00:00:20"> <ThresholdInfo mode="default" bothThresholdsMustPass="false" predictOnConfirmedIncidents="false" probableStateCandidateElevationTime="01:00:00"> <CallThreshold> <ThresholdRange> <lo>0</lo> <hi>3</hi> <threshold>0.65</threshold> </ThresholdRange> <ThresholdRange> <lo>4</lo> <hi>5</hi> <threshold>0.39</threshold> </ThresholdRange> <ThresholdRange> <lo>6</lo> <hi>7</hi> <threshold>0.28</threshold> </ThresholdRange> <ThresholdRange> <lo>8</lo> <hi>max</hi> <threshold>0.15</threshold> </ThresholdRange> </CallThreshold> <ImmediateChildThreshold> <ThresholdRange> <lo>0</lo> <hi>3</hi> <threshold>0.65</threshold> </ThresholdRange> <ThresholdRange> <lo>4</lo> <hi>5</hi> <threshold>0.39</threshold> </ThresholdRange> <ThresholdRange> <lo>6</lo> <hi>7</hi> <threshold>0.28</threshold> </ThresholdRange> <ThresholdRange> <lo>8</lo> <hi>10</hi> <threshold>0.19</threshold> </ThresholdRange> <ThresholdRange> <lo>11</lo> <hi>max</hi> <threshold>0.1</threshold> </ThresholdRange> </ImmediateChildThreshold> </ThresholdInfo> </PredictionThresholdInfo> |
Take careful consideration when setting the probableStateCandidateElevationTime value. This value determines the amount of time after which an unconfirmed incident is set to Probable. Probable incidents are NOT rolled up as part of the prediction process. Setting the probableStateCandidateElevationTime too low may set incidents to Probable too soon and prevent calls from rolling up to a suspected device. |
It is important to note that prediction will not occur on a device if it has only one child. This is because prediction assumes the lowest possible device is responsible, and there is no additional information to help determine if the lower or upper device is likely to be out.
You may run diagnostics to test the database and geometric network connections. This service also allows you to enable a particular prediction mode.
If you choose to start the Responder Services (e.g., Prediction Services) using the Responder Windows Service, you may log off of the machine. The Responder Services will continue to run until stopped. If you run Responder Services using the individual executable files (e.g., Miner.Responder.PredictionServices.exe), you must remain logged on to the server. Logging off will stop the Responder Services.