Questions tagged [orchestration]
The orchestration tag has no summary.
9 questions
1 vote
0 answers
106 views
Best way to orchestrate/choreogaph steps in a pipeline where each step is executed by a separate microservice and may need to scale independently?
Update: Forget the 'best' way, any way to start with is good enough. I am new to this and figuring it out all by myself is taking too long. I don't even know where to start. I am new to this and ...
-1 votes
1 answer
91 views
Service-specific releases vs Releasing all services on every change
The following applies to a platform/company at an early stage in its life, moving quickly and cheaply with a small engineering team. Imagine a platform with the following components: Cloud ...
4 votes
2 answers
494 views
Robust way to aggregate results from 2 AWS lambdas for a SPA
I'm new to AWS serverless applications and am looking for something like ocelot request aggregation on the AWS serverless stack. Assume I have two AWS lambdas that return data needed by a SPA: A and ...
5 votes
1 answer
2k views
Good way to program an orchestration / processflow
I'm programming a process in which clients will be separated in 3 different groups, and for every group a different action will be performed. My question concerns the process of deciding which client ...
2 votes
3 answers
1k views
How do I evaluate if an Orchestration is the appropriate design pattern for a given problem?
Say that you're doing a code review, and you find yourself faced with an orchestration pattern: class OrchestrationClass { private Configuration _configuration; private DataStore1 _dataStore1; ...