-
Notifications
You must be signed in to change notification settings - Fork 218
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
Performance issue with large XAML files #208
Comments
@dmetzgar We are trying to port our .NET 4.7 application to .NET 6, and also met 10x slower performance when executing a simple xaml (but with out own dll reference), from 500ms to 5s. Although it's becoming very fast on the second run, we could have many xaml files loaded in a single operation, so it will become a big overhead. In .NET framework, compiling VB script is using
cc @lbargaoanu |
We also observed a high memory usage issue when running a large xaml file. After debugging we noticed there are dead Native Memory objects that are not collected which can get up to more than 1GB, this sometimes lead to Insufficient Memory issue if the xaml file is too large. |
I have a few workflow XAML files which has near 90 000 lines in it.
Actually it is executing successfully, but it takes near 40 minutes to execute.
The same workflow executing near 30 second on .Net framework WF on the same machine.
Do you have any suggestions how to speed up this process ?
One more think I found while migrating that ref
xmlns:sad="clr-namespace:System.Activities.Debugger;assembly=System.Activities"
did not work in CoreWF:
System.Activities.Debugger
is insideUiPath.Workflow
assembly. You have same ref inNonGenericForEach.xaml
, but it is not used.The text was updated successfully, but these errors were encountered: