From 3e1acfde820adb6e4d4beaf26ba3af6eeb4bad12 Mon Sep 17 00:00:00 2001 From: "Christopher Kujawa (Zell)" Date: Mon, 11 Nov 2024 18:59:34 +0100 Subject: [PATCH] fix: use non-numbered sub list --- .../blog/2024-10-24-Camunda-Exporter-MVP/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/chaos-days/blog/2024-10-24-Camunda-Exporter-MVP/index.md b/chaos-days/blog/2024-10-24-Camunda-Exporter-MVP/index.md index e6a0f80c2..ec7643b16 100644 --- a/chaos-days/blog/2024-10-24-Camunda-Exporter-MVP/index.md +++ b/chaos-days/blog/2024-10-24-Camunda-Exporter-MVP/index.md @@ -45,12 +45,12 @@ The plan for this project looks something like this: We plan to: 1. Harmonize the existing indices stored in Elasticsearch/Opensearch -2. Space: Reduce the unnecessary data duplication -3. Move importer and archiver logic into a new Camunda exporter -4. Performance: This should allow us to reduce one additional hop (as we don't need to use ES/OS as a queue) -5. Maintenance: Indices and business logic is maintained in one place -6. Scalability: With this approach, we can scale with partitions, as Camunda Exporters are executed for each partition separately (soon partition scaling will be introduced) -7. Complexity: The Camunda Exporter will be built-in and shipped with Zeebe/Camunda 8. No additional pod/application is needed. + - Space: Reduce the unnecessary data duplication +2. Move importer and archiver logic into a new Camunda exporter + - Performance: This should allow us to reduce one additional hop (as we don't need to use ES/OS as a queue) + - Maintenance: Indices and business logic is maintained in one place + - Scalability: With this approach, we can scale with partitions, as Camunda Exporters are executed for each partition separately (soon partition scaling will be introduced) + - Complexity: The Camunda Exporter will be built-in and shipped with Zeebe/Camunda 8. No additional pod/application is needed. Note: Optimize is right now out of scope (due to time), but will later be part of this as well.