Find answers from the community

Updated 4 months ago

Hi guys, I'm starting to study Workflows

Hi guys, I'm starting to study Workflows so I migrate a current Query Pipeline I have for this new way the framework made available.

I'm seeing I can pass data between steps through Context. But what's the difference of doing that and setting a instance property to my workflow? The only guess I have is that a single instance of Workflow is supposed to be used for many different users. Is that the case? Thanks!
C
L
5 comments
Another question:

Isn't Context shared between nested workflows? While debugging, I've seen they use different context objects.
Plain Text
I'm seeing I can pass data between steps through Context. But what's the difference of doing that and setting a instance property to my workflow?


The context does not persist through multiple runs (yet), while setting an attribute on self would

The advantage here is that in the near future, context will persist across runs, and will also be able to be persisted in a db

Isn't Context shared between nested workflows? -- it is not
ok, i'm going to pass data to nested workflows using the StartEvent then.

Just asking, is that something that makes sense this context to be shared? It would save some assignements in my code, but it probably has a reason to be designed like this.

Thanks for your reply!
I think the intention here is to promote workflows to be designed as more modular/reusable components.

Sharing the context would make two workflows extremely coupled, and not really reusable anywhere.
using the start event makes sense to me for this
Add a reply
Sign up and join the conversation on Discord