Skip to content

collection of common camel flows representing different levels of complexity

Notifications You must be signed in to change notification settings

rakhmad/camel-sizing-patterns

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Camel based sizing patterns

This repository collects a number of Camel based flow patterns very common in large integration platforms. They are useful to represent different levels of complexity and perform sizing measurements.

Goal

To collect a number of representative Camel based patterns, and standardise their implementation across different Camel flavoured runtimes:

  • Fuse (SpringBoot)
  • Camel K
  • Camel Quarkus
  • Camel SpringBoot

Requirements

Each pattern should:

  • expose an OpenApi interface
  • perform AtlasMap or XSLT based data transformations
  • perform JSON to XML conversions
  • include HTTP backends to interact with
  • be based on Camel's XML DSL

Patterns

Simple complexity

This level of complexity is described with the following flow:

client ---JSON--> Camel[json2xml] ---XML--> stub 
client <--JSON--- Camel[xml2json] <--XML---  

Medium complexity

This level of complexity is described with the following flow:

client ---JSON--> Camel[json2xml] ---XML--> stub1
                  Camel[        ] <--XML---  
                  Camel[json2xml] ---XML--> stub2
client <--JSON--- Camel[xml2json] <--XML---  

High complexity

To be defined

About

collection of common camel flows representing different levels of complexity

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 76.8%
  • XSLT 21.0%
  • Shell 2.2%