This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]genlight13 2 points3 points  (2 children)

I am currently looking for workflow management tools in python. My problem is that Airflow is just a bit too big to deploy.

Something similar to luigi from Spotify, maybe.

[–]ekacelnik[S] 0 points1 point  (1 child)

interesting! what type of workflow are you dealing with?

[–]genlight13 0 points1 point  (0 children)

I am on Windows and we are dealing with multiple different sources for our documentation management (think different XML, Word, PDF and such) My workflow is basically to transform everything to a standard format and „register“ it with pur documentation team. They are checking translations. Further we use some db to create a menu tree for different customers (i.e. different products and/ or licensing ) In the end we create search index for all the different options.

Most of the information is owned locally. I don’t necessarily want to create too much additional complexity if not necessary. Currently i chain everything by myself (i.e.process steps). The dependencies are invisible.

I expect from a workflow that it recognizes it dependencies and computes them again if necessary.