Created
August 18, 2016 02:46
-
-
Save blacktambourine/44e052c336ccbf3b3a4b507066bb6a10 to your computer and use it in GitHub Desktop.
Sitecore Azure Setup Patch Config
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
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:set="http://www.sitecore.net/xmlconfig/set/"> | |
<sitecore> | |
<sc.variable name="dataFolder" set:value="/App_Data" /> | |
<!--<pipelines> | |
<initialize> | |
<processor type="Sitecore.Azure.Startup.Pipelines.Loader.RebuildSearchIndex, Sitecore.Azure.Startup" patch:after="processor[@type='Sitecore.Pipelines.Loader.EnsureAnonymousUsers, Sitecore.Kernel']" /> | |
</initialize> | |
</pipelines>--> | |
<settings> | |
<setting name="RequestErrors.UseServerSideRedirect" set:value="true" /> | |
<setting name="Social.Scalability.ContentManagement.InstanceExecutionManager" set:value="Sitecore.Social.Client.Tasks.Managers.AzureInstanceExecutionManager, Sitecore.Social.Client" /> | |
<setting name="Analytics.DefaultDefinitionDatabase" value="web" patch:before="setting[@name='Analytics.EventQueryStringKey']"/> | |
</settings> | |
<!-- Resolve time out issues with Aggregation services on CM Server --> | |
<aggregation> | |
<automationAggregationSubsystem type="Sitecore.Analytics.Core.Subsystem" singleInstance="true"> | |
<patch:delete/> | |
</automationAggregationSubsystem> | |
<automationAggregationSubsystem type="Sitecore.Analytics.Core.Subsystem" singleInstance="true" patch:before="automationAggregator [@type='Sitecore.Analytics.Automation.Aggregation.Data.Processing.AggregatorAgent, Sitecore.Analytics.Automation.Aggregation']"> | |
<BackgroundServices hint="list:Add"> | |
<aggregator type="Sitecore.Analytics.Core.BackgroundService"> | |
<param desc="agentName">aggregation/automationAggregator</param> | |
<Interval>0.00:00:30</Interval> | |
<MaxThreads>3</MaxThreads> | |
</aggregator> | |
<rangeManager type="Sitecore.Analytics.Core.BackgroundService"> | |
<param desc="agentName">aggregation/automationRangeManager</param> | |
<Interval>0.00:00:30</Interval> | |
<MaxThreads>3</MaxThreads> | |
</rangeManager> | |
<cleanup type="Sitecore.Analytics.Core.BackgroundService"> | |
<param desc="agentName">aggregation/automationCleanupService</param> | |
<Interval>0.00:00:30</Interval> | |
<MaxThreads>3</MaxThreads> | |
</cleanup> | |
</BackgroundServices> | |
</automationAggregationSubsystem> | |
</aggregation> | |
</sitecore> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment