Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New doc on what use cases can Conductor solve #227

Merged
merged 1 commit into from
Dec 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 1 addition & 24 deletions docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,4 @@ Conductor is a platform originally developed at Netflix to orchestrate workflows
* Custom code tasks can be written in any language and can connect to a workflow using the [client SDKs](how-tos/SDKs)
* Tasks can be run like a programming language, i.e., [sub workflows](reference-docs/sub-workflow-task), step-by-step, [parallel tasks](reference-docs/fork-task), [conditional tasks](reference-docs/switch-task), [dynamic tasks](reference-docs/dynamic-fork-task), etc. [are supported](reference-docs)

<p style={{textAlign: "center"}}><img src="/content/img/anatomy.png" alt="adding a secret via UI" width="600" style={{paddingBottom: 40, paddingTop: 40}} /></p>

## What use cases can Conductor solve?

Conductor is a general-purpose orchestration engine that is language agnostic and has been adopted widely across
multiple industries, ranging from media to security to finance and more. Some common use cases that have been
solved by Conductor are:

1. Supply Chain Management
2. Media Processing Pipelines (Image processing, video transcoding, etc..)
3. Security and Threat Detection Workflows
4. Order Management Workflows
5. Financial Transactions
6. Distributed Transactions
7. Human-centric Business Process Automation
8. Orchestrating Microservices (HTTP, background services, etc.)
9. Orchestrating Business Logic across various cloud functions (AWS Lambda, GCP functions, etc.)
10. Infrastructure Provisioning
11. CI CD Pipelines
12. Long-running Processes and Workflows
13. Monitoring
14. Distributed Transactions
15. Localization Pipelines
16. Content Management and Publishing Workflows
<p style={{textAlign: "center"}}><img src="/content/img/anatomy.png" alt="adding a secret via UI" width="600" style={{paddingBottom: 40, paddingTop: 40}} /></p>
27 changes: 27 additions & 0 deletions docs/what_use_cases_can_conductor_solve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
displayed_sidebar: mainSidebar
sidebar_position: 1
---
# What use cases can Conductor solve?

Conductor is a general-purpose orchestration engine that is language agnostic and has been adopted widely across
multiple industries, ranging from media to security to finance and more.

Some common use cases that has been solved by Conductor are:

1. Supply Chain Management
2. Media Processing Pipelines (Image processing, video transcoding, etc.)
3. Security and Threat Detection Workflows
4. Order Management Workflows
5. Financial Transactions
6. Distributed Transactions
7. Human-centric Business Process Automation
8. Orchestrating Microservices (HTTP, background services, etc.)
9. Orchestrating Business Logic across various cloud functions (AWS Lambda, GCP functions, etc.)
10. Infrastructure Provisioning
11. CI CD Pipelines
12. Long-running Processes and Workflows
13. Monitoring
14. Distributed Transactions
15. Localization Pipelines
16. Content Management and Publishing Workflows
5 changes: 5 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ module.exports = {
type: 'doc',
id: 'introduction',
label: "Introduction to Conductor"
},
{
type: 'doc',
id: 'what_use_cases_can_conductor_solve',
label: "What use cases can Conductor solve?​"
},
{
type: 'category',
Expand Down