Creating and loading workflows at runtime (C#Class) #1309
Unanswered
RekikMohamed
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am prototyping with workflow-core. I tried loading and running with YAML and it works fine.
However, when I test the performance it needs more 40 minutes to run 100 000 workflows.
My workflow is as follow:
`Id: wf
Version: 1
Steps:
Id: Initialize
StepType: EmptyStep, WorkflowEngine # No operation step
NextStepId: HelloWorld
Id: HelloWorld
StepType: HelloWorld, WorkflowEngine
NextStepId: Finalize
Id: Finalize
StepType: EmptyStep, WorkflowEngine`
The HelloWorl step just write in the console and set a value in another class.
I thought the performance overhead is coming for deserialization. So i am trying to create and load C# workflows at runtime. Is there a way to do that?
Beta Was this translation helpful? Give feedback.
All reactions