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
59
views
Scalable Web Data Service Approach
I'm looking to build a service that interacts with an existing web application's database. The service would retrieve data from an api for which the web application users own an account and warehouse/...
-1
votes
1
answer
87
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 ...
-1
votes
1
answer
219
views
How to implement different workflows for a single api call in microservice architecture
I am working on building a generic api that should ideally work with any data (Bring Your Own Data) but the overall functionality remains quite similar at the top level.
For example lets say we are ...
4
votes
2
answers
492
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 ...
-2
votes
1
answer
711
views
How microservices db are updated and sync when scale? [closed]
Scenario:
In Case I have MS "MS-1"
Orchestration detect high volume
Orchestration create additional node with cloned MS "MS-2"
"MS-2" get request and update its DB
Question :
How MS "MS-1" will be ...
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 ...
5
votes
2
answers
9k
views
Is Chef an appropriate tool to use for application deployment? [closed]
We use Chef for both config management (making sure a "DB Node" has the right version of the right DB on it; that an "App Server" has the right version of Java and env vars on it, etc.). as well as ...
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;
...