by David Pallmann via Fire and Ice: David Pallmann's Web and Cloud Blog on 4/25/2009 3:11:00 PM
<ServiceConfiguration serviceName="AzureGrid" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration"> <Role name="WorkerRole"> <Instances count="10"/> <ConfigurationSettings> <Setting name="ProjectName" value="FraudCheck"/> <Setting name="TaskQueueName" value="grid-tasks"/> <Setting name="ResultsQueueName" value="grid-results"/> <Setting name="QueueTimeout" value="60"/> <Setting name="SleepInterval" value="10"/> <Setting name="QueueStorageEndpoint" value="http://queue.core.windows.net"/> <Setting name="AccountName" value="mystorage"/> <Setting name="AccountSharedKey" value="Z86+YKIJwKqIwnnS2uVw3mvlkVKMjfQcXawiN1g83JTRycaRwwSSKwhnaNsAw3W9zNW7LxGHy2MCJ1qQMX+J4g=="/> </ConfigurationSettings> </Role></ServiceConfiguration>
<?xml version="1.0" encoding="utf-8" ?><configuration> <appSettings> <add key="ProjectName" value="FraudCheck"/> <add key="TaskQueueName" value="grid-tasks"/> <add key="ResultsQueueName" value="grid-results"/> <add key="QueueTimeout" value="60"/> <add key="SleepInterval" value="10"/> <add key="QueueStorageEndpoint" value="http://queue.core.windows.net"/> <add key="AccountName" value="mystorage"/> <add key="AccountSharedKey" value="Z86+YKIJwKqIwnnS2uVw3mvlkVKMjfQcXawiN1g83JTRycaRwwSSKwhnaNsAw3W9zNW7LxGHy2MCJ1qQMX+J4g=="/> <add key="GridDatabaseConnectionString" value="Data Source=.\SQLEXPRESS;Initial Catalog=AzureGrid;Integrated Security=SSPI"/> </appSettings></configuration>
Original Post: Grid Computing on the Azure Cloud Computing Platform, Part 3: Running a Grid Application
The content of the postings is owned by the respective author. AzureFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on AzureFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.