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

adjust and implement C7 links #800

Merged
merged 3 commits into from
Apr 11, 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
2 changes: 1 addition & 1 deletion docs/guides/improve-processes-with-optimize.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Optimize offers business intelligence tooling for Camunda customers. By leveragi

With Optimize, review heatmap displays for instances which took longer than average to discover long-running flow nodes. As a result, reap actionable insights and rapidly identify the constraints of your system.

See an in-depth overview of Optimize’s capabilities [here](https://docs.camunda.org/optimize/latest/).
For an in-depth overview of Optimize’s capabilities, visit our [Optimize documentation](../components/optimize/what-is-optimize.md).

## Set up

Expand Down
8 changes: 3 additions & 5 deletions docs/guides/migrating-from-camunda-platform-7.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,10 @@ Most expressions can be converted (see [this community extension](https://github

#### Different connector infrastructure

Camunda Platform 7 provides several [connectors](https://docs.camunda.org/manual/latest/reference/connect/). These connectors are not supported in Camunda Platform 8, as Camunda Platform 8 will create a much more powerful connector infrastructure.
Camunda Platform 7 provides several [connectors](https://docs.camunda.org/manual/latest/reference/connect/). Camunda Platform 8 now also offers multiple [connectors](../components/modeler/web-modeler/connectors/available-connectors/index.md) as well.

To migrate existing connectors, create a small bridging layer to invoke these connectors via a custom [job workers](/components/concepts/job-workers.md).



### Process solutions using Spring Boot

With Camunda Platform 7, a frequently used architecture to build a process solution (also known as process applications) is composed out of:
Expand Down Expand Up @@ -247,9 +245,9 @@ In essence, this tooling implements details described in the next sections.
Camunda Platform 8 has a different API than Camunda Platform 7. As a result, you have to migrate some of your code, especially code that does the following:

* Uses the Client API (e.g. to start process instances)
* Implements [service tasks](https://docs.camunda.org/manual/latest/reference/bpmn20/tasks/service-task/), which can be:
* Implements [service tasks](../components/modeler/bpmn/service-tasks/service-tasks.md), which can be:
* [Java code attached to a service task](https://docs.camunda.org/manual/latest/user-guide/process-engine/delegation-code/) and called by the engine directly (in-VM).
* [External tasks](https://docs.camunda.org/manual/latest/user-guide/process-engine/external-tasks/), where workers subscribe to the engine.
* [External tasks](../components/best-practices/development/invoking-services-from-the-process-c7.md#external-tasks), where workers subscribe to the engine.


<!--
Expand Down