-
Notifications
You must be signed in to change notification settings - Fork 321
Get instance id for desired control-queue(s) #1069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 3 commits
409edba
2280605
e98bc4d
e9ee9c0
12719fa
a07015d
f39724d
cb9adbc
7c6811d
be2f775
0284c46
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| // ---------------------------------------------------------------------------------- | ||
| // Copyright Microsoft Corporation | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
| // ---------------------------------------------------------------------------------- | ||
|
|
||
| namespace DurableTask.AzureStorage.Tests | ||
| { | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Data; | ||
| using System.Threading; | ||
| using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
|
|
||
| [TestClass] | ||
| public class TestPartitionIndex | ||
| { | ||
| private AzureStorageOrchestrationService azureStorageOrchestrationService; | ||
| private AzureStorageOrchestrationServiceSettings settings; | ||
| private int partitionCount = 4; | ||
| private Dictionary<string, int> controlQueueNumberToNameMap; | ||
| private CancellationTokenSource cancellationTokenSource; | ||
| private const string TaskHub = "taskHubName"; | ||
|
|
||
| [TestInitialize] | ||
| public void Initialize() | ||
| { | ||
| cancellationTokenSource = new CancellationTokenSource(); | ||
|
|
||
| settings = new AzureStorageOrchestrationServiceSettings() | ||
| { | ||
| StorageConnectionString = TestHelpers.GetTestStorageAccountConnectionString(), | ||
| TaskHubName = TaskHub, | ||
| PartitionCount = partitionCount | ||
| }; | ||
|
|
||
| azureStorageOrchestrationService = new AzureStorageOrchestrationService(settings); | ||
|
|
||
| controlQueueNumberToNameMap = new Dictionary<string, int>(); | ||
|
|
||
| for (int i = 0; i < partitionCount; i++) | ||
| { | ||
| var controlQueueName = AzureStorageOrchestrationService.GetControlQueueName(settings.TaskHubName, i); | ||
| controlQueueNumberToNameMap[controlQueueName] = i; | ||
| } | ||
| } | ||
|
|
||
| [TestMethod] | ||
| [DataRow(20, false)] | ||
| [DataRow(20, true)] | ||
| public void GetPartitionIndexTest(int maxInstanceIdCount, bool enableExplicitPartitionPlacement) | ||
| { | ||
| settings.EnableExplicitPartitionPlacement = enableExplicitPartitionPlacement; | ||
|
|
||
| for (uint instanceIdSuffix = 0; instanceIdSuffix < settings.PartitionCount * 4; instanceIdSuffix++) | ||
| { | ||
| Dictionary<uint, int> indexNumberToCount = new Dictionary<uint, int>(); | ||
|
|
||
| for (uint indexCount = 0; indexCount < settings.PartitionCount; indexCount++) | ||
| { | ||
| indexNumberToCount[indexCount] = 0; | ||
| } | ||
|
|
||
| for (int instanceCount = 0; instanceCount < maxInstanceIdCount; instanceCount++) | ||
| { | ||
| var instanceIdPrefix = Guid.NewGuid().ToString(); | ||
|
|
||
| var instanceId = $"{instanceIdPrefix}!{instanceIdSuffix}"; | ||
|
|
||
| var partitionIndex = azureStorageOrchestrationService.GetPartitionIndex(instanceId); | ||
|
|
||
| indexNumberToCount[partitionIndex]++; | ||
| } | ||
|
|
||
| if (enableExplicitPartitionPlacement) | ||
| { | ||
| Assert.AreEqual(indexNumberToCount[(uint)(instanceIdSuffix % settings.PartitionCount)], maxInstanceIdCount); | ||
| } | ||
| else | ||
| { | ||
| Assert.AreNotEqual(indexNumberToCount[(uint)(instanceIdSuffix % settings.PartitionCount)], maxInstanceIdCount); | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2048,9 +2048,9 @@ public Task<string> DownloadBlobAsync(string blobUri) | |
|
|
||
| // TODO: Change this to a sticky assignment so that partition count changes can | ||
| // be supported: https://github.com/Azure/azure-functions-durable-extension/issues/1 | ||
| async Task<ControlQueue?> GetControlQueueAsync(string instanceId) | ||
| internal async Task<ControlQueue?> GetControlQueueAsync(string instanceId) | ||
| { | ||
| uint partitionIndex = Fnv1aHashHelper.ComputeHash(instanceId) % (uint)this.settings.PartitionCount; | ||
| uint partitionIndex = GetPartitionIndex(instanceId); | ||
| string queueName = GetControlQueueName(this.settings.TaskHubName, (int)partitionIndex); | ||
|
|
||
| ControlQueue cachedQueue; | ||
|
|
@@ -2075,6 +2075,28 @@ public Task<string> DownloadBlobAsync(string blobUri) | |
| return cachedQueue; | ||
| } | ||
|
|
||
| internal uint GetPartitionIndex(string instanceId) | ||
| { | ||
| uint totalPartitions = (uint)this.settings.PartitionCount; | ||
|
|
||
| int placementSeparatorPosition = instanceId.LastIndexOf('!'); | ||
|
|
||
| // if the instance id ends with !nnn, where nnn is an unsigned number, it indicates explicit partition placement | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we add a test that documents the behavior if the customer uses an instanceID with multiple
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's also add a test that checks that instanceID
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you for adding the first test, I think we're just missing the very last one:
|
||
| if ( | ||
| this.settings.EnableExplicitPartitionPlacement | ||
| && placementSeparatorPosition != -1 | ||
| && uint.TryParse(instanceId.Substring(placementSeparatorPosition + 1), out uint index)) | ||
| { | ||
| var partitionId = index % totalPartitions; | ||
| return (uint)partitionId; | ||
davidmrdavid marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| else | ||
| { | ||
| return Fnv1aHashHelper.ComputeHash(instanceId) % totalPartitions; | ||
|
|
||
| } | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Disposes of the current object. | ||
| /// </summary> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are we still using this in the new tests? No, right?