Last active
August 29, 2015 14:08
-
-
Save nickheppleston/4a25882c31daf815c1a3 to your computer and use it in GitHub Desktop.
Azure Worker Role ServiceDefinition.csdef with Local Storage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<ServiceDefinition name="MessageWorker" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2014-06.2.4"> | |
<WorkerRole name="MessageWorker.WorkerRole" vmsize="Small"> | |
<Imports> | |
<Import moduleName="Diagnostics" /> | |
<Import moduleName="RemoteAccess" /> | |
<Import moduleName="RemoteForwarder" /> | |
</Imports> | |
<ConfigurationSettings> | |
<Setting name="ServiceBusConnectionString" /> | |
<Setting name="StorageConnectionString" /> | |
<Setting name="MinimumLogLevel" /> | |
</ConfigurationSettings> | |
<LocalResources> | |
<LocalStorage name="DiagnosticStore" cleanOnRoleRecycle="false" sizeInMB="8192" /> | |
<LocalStorage name="CustomLogs" cleanOnRoleRecycle="false" sizeInMB="1024" /> | |
</LocalResources> | |
</WorkerRole> | |
</ServiceDefinition> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment