@@ -150,13 +150,13 @@ public DurableTaskExtension(
150
150
this . nameResolver = nameResolver ?? throw new ArgumentNullException ( nameof ( nameResolver ) ) ;
151
151
this . loggerFactory = loggerFactory ?? throw new ArgumentNullException ( nameof ( loggerFactory ) ) ;
152
152
this . PlatformInformationService = platformInformationService ?? throw new ArgumentNullException ( nameof ( platformInformationService ) ) ;
153
- this . ResolveAppSettingOptions ( ) ;
153
+ DurableTaskOptions . ResolveAppSettingOptions ( this . Options , this . nameResolver ) ;
154
154
155
155
ILogger logger = loggerFactory . CreateLogger ( LoggerCategoryName ) ;
156
156
157
157
this . TraceHelper = new EndToEndTraceHelper ( logger , this . Options . Tracing . TraceReplayEvents ) ;
158
158
this . LifeCycleNotificationHelper = lifeCycleNotificationHelper ?? this . CreateLifeCycleNotificationHelper ( ) ;
159
- this . durabilityProviderFactory = this . GetDurabilityProviderFactory ( this . Options , logger , orchestrationServiceFactories ) ;
159
+ this . durabilityProviderFactory = GetDurabilityProviderFactory ( this . Options , logger , orchestrationServiceFactories ) ;
160
160
this . defaultDurabilityProvider = this . durabilityProviderFactory . GetDurabilityProvider ( ) ;
161
161
this . isOptionsConfigured = true ;
162
162
@@ -249,6 +249,8 @@ public string HubName
249
249
250
250
internal DurableTaskOptions Options { get ; }
251
251
252
+ internal DurabilityProvider DefaultDurabilityProvider => this . defaultDurabilityProvider ;
253
+
252
254
internal HttpApiHandler HttpApiHandler { get ; private set ; }
253
255
254
256
internal ILifeCycleNotificationHelper LifeCycleNotificationHelper { get ; private set ; }
@@ -296,7 +298,7 @@ private MessagePayloadDataConverter CreateErrorDataConverter(IErrorSerializerSet
296
298
return new MessagePayloadDataConverter ( errorSerializerSettingsFactory . CreateJsonSerializerSettings ( ) , isDefault ) ;
297
299
}
298
300
299
- private IDurabilityProviderFactory GetDurabilityProviderFactory ( DurableTaskOptions options , ILogger logger , IEnumerable < IDurabilityProviderFactory > orchestrationServiceFactories )
301
+ internal static IDurabilityProviderFactory GetDurabilityProviderFactory ( DurableTaskOptions options , ILogger logger , IEnumerable < IDurabilityProviderFactory > orchestrationServiceFactories )
300
302
{
301
303
bool storageTypeIsConfigured = options . StorageProvider . TryGetValue ( "type" , out object storageType ) ;
302
304
@@ -578,32 +580,13 @@ private void StopLocalGrpcServer()
578
580
}
579
581
#endif
580
582
581
- private void ResolveAppSettingOptions ( )
582
- {
583
- if ( this . Options == null )
584
- {
585
- throw new InvalidOperationException ( $ "{ nameof ( this . Options ) } must be set before resolving app settings.") ;
586
- }
587
-
588
- if ( this . nameResolver == null )
589
- {
590
- throw new InvalidOperationException ( $ "{ nameof ( this . nameResolver ) } must be set before resolving app settings.") ;
591
- }
592
-
593
- if ( this . nameResolver . TryResolveWholeString ( this . Options . HubName , out string taskHubName ) )
594
- {
595
- // use the resolved task hub name
596
- this . Options . HubName = taskHubName ;
597
- }
598
- }
599
-
600
583
private void InitializeForFunctionsV1 ( ExtensionConfigContext context )
601
584
{
602
585
#if FUNCTIONS_V1
603
586
context . ApplyConfig ( this . Options , "DurableTask" ) ;
604
587
this . nameResolver = context . Config . NameResolver ;
605
588
this . loggerFactory = context . Config . LoggerFactory ;
606
- this . ResolveAppSettingOptions ( ) ;
589
+ DurableTaskOptions . ResolveAppSettingOptions ( this . Options , this . nameResolver ) ;
607
590
ILogger logger = this . loggerFactory . CreateLogger ( LoggerCategoryName ) ;
608
591
this . TraceHelper = new EndToEndTraceHelper ( logger , this . Options . Tracing . TraceReplayEvents ) ;
609
592
this . connectionInfoResolver = new WebJobsConnectionInfoProvider ( ) ;
@@ -1573,59 +1556,6 @@ internal static void TagActivityWithOrchestrationStatus(OrchestrationRuntimeStat
1573
1556
activity . AddTag ( "DurableFunctionsRuntimeStatus" , statusStr ) ;
1574
1557
}
1575
1558
}
1576
-
1577
- internal IScaleMonitor GetScaleMonitor ( string functionId , FunctionName functionName , string connectionName )
1578
- {
1579
- if ( this . defaultDurabilityProvider . TryGetScaleMonitor (
1580
- functionId ,
1581
- functionName . Name ,
1582
- this . Options . HubName ,
1583
- connectionName ,
1584
- out IScaleMonitor scaleMonitor ) )
1585
- {
1586
- return scaleMonitor ;
1587
- }
1588
- else
1589
- {
1590
- // the durability provider does not support runtime scaling.
1591
- // Create an empty scale monitor to avoid exceptions (unless runtime scaling is actually turned on).
1592
- return new NoOpScaleMonitor ( $ "{ functionId } -DurableTaskTrigger-{ this . Options . HubName } ". ToLower ( ) ) ;
1593
- }
1594
- }
1595
-
1596
- /// <summary>
1597
- /// A placeholder scale monitor, can be used by durability providers that do not support runtime scaling.
1598
- /// This is required to allow operation of those providers even if runtime scaling is turned off
1599
- /// see discussion https://github.com/Azure/azure-functions-durable-extension/pull/1009/files#r341767018.
1600
- /// </summary>
1601
- private sealed class NoOpScaleMonitor : IScaleMonitor
1602
- {
1603
- /// <summary>
1604
- /// Construct a placeholder scale monitor.
1605
- /// </summary>
1606
- /// <param name="name">A descriptive name.</param>
1607
- public NoOpScaleMonitor ( string name )
1608
- {
1609
- this . Descriptor = new ScaleMonitorDescriptor ( name ) ;
1610
- }
1611
-
1612
- /// <summary>
1613
- /// A descriptive name.
1614
- /// </summary>
1615
- public ScaleMonitorDescriptor Descriptor { get ; private set ; }
1616
-
1617
- /// <inheritdoc/>
1618
- Task < ScaleMetrics > IScaleMonitor . GetMetricsAsync ( )
1619
- {
1620
- throw new InvalidOperationException ( "The current DurableTask backend configuration does not support runtime scaling" ) ;
1621
- }
1622
-
1623
- /// <inheritdoc/>
1624
- ScaleStatus IScaleMonitor . GetScaleStatus ( ScaleStatusContext context )
1625
- {
1626
- throw new InvalidOperationException ( "The current DurableTask backend configuration does not support runtime scaling" ) ;
1627
- }
1628
- }
1629
1559
#endif
1630
1560
}
1631
1561
}
0 commit comments