Questions tagged [workflows]
A workflow consists of a sequence of concatenated (connected) steps. Emphasis is on the flow paradigm, where each step follows the precedent without delay or gap and ends just before the subsequent step may begin.
270 questions
5 votes
5 answers
283 views
How to ensure that release tags are uniformly created throughout a cohort of closely-related Git repositories?
Working as part of the release team for a sprawling open source project that uses dozens of Git repositories, I regularly run into situations where one or more of the satellite repositories are ...
2 votes
2 answers
151 views
For distributed workflows - tradeoffs having stateless workers operate on central state, versus stateful workers?
I'm working on a problem right now that processes incoming data at a very high rate. Each event that flows in has an association ID, and each group of associated events will affect behaviour over time ...
0 votes
1 answer
232 views
How to effectively bootstrap SQL database with millions of records, when you are almost guaranteed to make mistakes?
I am playing with a side project which, for purposes of this question, is a multi-language dictionary, including 100+ languages, each with 100k+ entries, where each entry can have 1-5+ pronunciations, ...
2 votes
2 answers
209 views
How to work with machine learning with data driven decision making?
Not sure whether this is a fitting place to ask such a question, but here goes... I learned about simple machine learning and supervised/unsupervised training back in Uni, where I specialized in ...
0 votes
3 answers
588 views
Can 1.0.1 be launched right after 1.1.0?
I know that it is common for software to have parallel development in major versions, such as v1 (1.x.x), which can be completely different from v2. Regarding Semver (Semantic Version), can I upgrade ...
5 votes
4 answers
2k views
How to modify workflow to allow multiple features per release?
This question is inspired by comments on this recent question. In that question I asked about a version tagging workflow. A few commenters suggested it was a little strange that I'm tagging and ...
-1 votes
1 answer
115 views
How are first-time users signup requests authenticated?
I have a web service. When a user makes a request, traefik first redirects it to my users micro service, to pass through an authentication function. The token (or username+password, on first request) ...
-1 votes
2 answers
168 views
Workflow suggestions: Editing on one computer while running on another?
I own a laptop and a desktop. The desktop better for training neural networks, but I don't have physical access to it. The laptop is better for day-to-day work on the neural networks. Right now, my ...