Replies: 1 comment
-
Why aren't you using CreateMultipleRequest instead of ExecuteMultipleRequest? See the guidance here Optimize performance for bulk operations. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Here's my business case:
I want to inject 500,000 leads into Dynamics 365 in the most optimized way possible.
This injection will be performed by a .NET 9 application with the latest version of the NuGet packages.
I have 5 App Regs available to perform this task (and only this task), and I thought I'd do the following:
ServiceClients
(via theirIOrganizationServiceAsync2
interface) as "scoped" (the connection strings are different) and disable the affinity cookie for all 5 services.All 50 tasks for the same App Reg would use the same ServiceClient (eg:
sp.GetRequiredKeyedService<IOrganizationServiceAsync2>("app-reg-01");
)My questions are:
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions