Skip to content

Commit b412fe3

Browse files
committed
Update README.md
1 parent 17c6db1 commit b412fe3

File tree

1 file changed

+8
-53
lines changed

1 file changed

+8
-53
lines changed

README.md

+8-53
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,28 @@
1111

1212

1313
Conductor is a platform originally created at Netflix to orchestrate microservices and events.
14-
This Conductor repository is maintained by the team at orkes.io and a group of volunteers from the community.
14+
This Conductor repository is maintained by the team at [Orkes](https://orkes.io/content) and a group of volunteers from the community.
1515

1616
For more information, see [Main Documentation Site](https://orkes.io/content)
1717

1818

1919
## Releases
2020
The latest version is [![Github release](https://img.shields.io/github/v/release/Netflix/conductor.svg)](https://GitHub.com/Netflix/conductor/releases)
21-
22-
[2.31.8](https://github.com/Netflix/conductor/releases/tag/v2.31.8) is the **final** release of `2.31` branch. As of Feb 2022, `1.x` & `2.x` versions are no longer supported.
21+
The next scheduled release is in Dec 2023.
2322

2423
## Resources
2524
#### [Slack Community](https://join.slack.com/t/orkes-conductor/shared_invite/zt-xyxqyseb-YZ3hwwAgHJH97bsrYRnSZg)
2625
We have an active [community](https://join.slack.com/t/orkes-conductor/shared_invite/zt-xyxqyseb-YZ3hwwAgHJH97bsrYRnSZg) of Conductor users and contributors on the channel.
27-
#### [Documentation Site](https://conductor.netflix.com/)
28-
[Documentation](https://conductor.netflix.com/) and tutorial on how to use Conductor
26+
#### [Documentation Site](https://orkes.io/content)
27+
[Documentation](https://orkes.io/content) and tutorial on how to use Conductor
2928

30-
## Workflow Creation in Code
29+
## Workflow SDKs
3130
Conductor supports creating workflows using JSON and Code.
3231
SDK support for creating workflows using code is available in multiple languages and can be found at https://github.com/conductor-sdk
3332

34-
## Community Contributions
35-
The modules contributed by the community are housed at [conductor-community](https://github.com/Netflix/conductor-community). Compatible versions of the community modules are released simultaneously with releases of the main modules.
3633

37-
[Discussion Forum](https://github.com/Netflix/conductor/discussions): Please use the forum for questions and discussing ideas and join the community.
34+
[Discussion Forum](https://github.com/conductor-oss/conductor/discussions): Please use the forum for questions and discussing ideas and join the community.
3835

39-
[List of Conductor community projects](/docs/docs/resources/related.md): Backup tool, Cron like workflow starter, Docker containers and more.
4036

4137
## Getting Started - Building & Running Conductor
4238
### Using Docker:
@@ -45,36 +41,11 @@ The easiest way to get started is with Docker containers. Please follow the inst
4541
### From Source:
4642
Conductor Server is a [Spring Boot](https://spring.io/projects/spring-boot) project and follows all applicable conventions. See instructions [here](https://conductor.netflix.com/devguide/running/source.html).
4743

48-
## Published Artifacts
49-
Binaries are available from the [Maven Central Repository](https://search.maven.org/search?q=g:com.netflix.conductor).
50-
51-
| Artifact | Description |
52-
|---------------------------------|-------------------------------------------------------------------------------------------------|
53-
| conductor-common | Common models used by various conductor modules |
54-
| conductor-core | Core Conductor module |
55-
| conductor-redis-persistence | Persistence and queue using Redis/Dynomite |
56-
| conductor-cassandra-persistence | Persistence using Cassandra |
57-
| conductor-es6-persistence | Indexing using Elasticsearch 6.X |
58-
| conductor-rest | Spring MVC resources for the core services |
59-
| conductor-ui | node.js based UI for Conductor |
60-
| conductor-client | Java client for Conductor that includes helpers for running worker tasks |
61-
| conductor-client-spring | Client starter kit for Spring |
62-
| conductor-java-sdk | SDK for writing workflows in code |
63-
| conductor-server | Spring Boot Web Application |
64-
| conductor-redis-lock | Workflow execution lock implementation using Redis |
65-
| conductor-awss3-storage | External payload storage implementation using AWS S3 |
66-
| conductor-awssqs-event-queue | Event queue implementation using AWS SQS |
67-
| conductor-http-task | Workflow system task implementation to send make requests |
68-
| conductor-json-jq-task | Workflow system task implementation to evaluate JSON using [jq](https://stedolan.github.io/jq/) |
69-
| conductor-grpc | Protobuf models used by the server and client |
70-
| conductor-grpc-client | gRPC client to interact with the gRPC server |
71-
| conductor-grpc-server | gRPC server Application |
72-
| conductor-test-harness | Integration and regression tests |
73-
7444
## Database Requirements
7545

7646
* The default persistence used is Redis
7747
* The indexing backend is [Elasticsearch](https://www.elastic.co/) (6.x)
48+
* The default queues are [orkes-queues](https://github.com/orkes-io/orkes-queues)
7849

7950
## Other Requirements
8051
* JDK 17+
@@ -83,24 +54,8 @@ Binaries are available from the [Maven Central Repository](https://search.maven.
8354
## Get Support
8455
There are several ways to get in touch with us:
8556
* [Slack Community](https://join.slack.com/t/orkes-conductor/shared_invite/zt-xyxqyseb-YZ3hwwAgHJH97bsrYRnSZg)
86-
* [GitHub Discussion Forum](https://github.com/Netflix/conductor/discussions)
8757

8858
## Contributions
8959
Whether it is a small documentation correction, bug fix or a new feature, contributions are highly appreciated. We just ask you to follow standard OSS guidelines. The [Discussion Forum](https://github.com/Netflix/conductor/discussions) is a good place to ask questions, discuss new features and explore ideas. Please check with us before spending too much time, only to find out later that someone else is already working on a similar feature.
9060

91-
`main` branch is the current working branch. Please send your PR's to `main` branch, making sure that it builds on your local system successfully. Also, please make sure all the conflicts are resolved.
92-
93-
## License
94-
Copyright 2022 Netflix, Inc.
95-
96-
Licensed under the Apache License, Version 2.0 (the "License");
97-
you may not use this file except in compliance with the License.
98-
You may obtain a copy of the License at
99-
100-
http://www.apache.org/licenses/LICENSE-2.0
101-
102-
Unless required by applicable law or agreed to in writing, software
103-
distributed under the License is distributed on an "AS IS" BASIS,
104-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
105-
See the License for the specific language governing permissions and
106-
limitations under the License.
61+
`main` branch is the current working branch. Please send your PR's to `main` branch, making sure that it builds on your local system successfully. Also, please make sure all the conflicts are resolved.

0 commit comments

Comments
 (0)