Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
EAI War Stories
Search
Alexander Heusingfeld
February 04, 2014
Technology
0
370
EAI War Stories
Slides for our talk at #OOP2014
Alexander Heusingfeld
February 04, 2014
Tweet
Share
More Decks by Alexander Heusingfeld
See All by Alexander Heusingfeld
SEACon: Genervt von VUCA - Systems Architecture kann helfen
aheusingfeld
0
56
A Software Architects view on Digital Product Design
aheusingfeld
1
230
Lessons Learned from Software Modernization projects
aheusingfeld
0
380
Microservices Meet Real-World Projects: Lessons Learned @ Microservices-Meetup-Rhein-Main
aheusingfeld
0
440
Architekturmodernisierung mit SCS und Microservices
aheusingfeld
0
270
Microservices zur Architekturmodernisierung - JAX2016
aheusingfeld
0
210
Microservices meet Real-World Projects @ JavaLand
aheusingfeld
1
400
MicroXchg: Logging and Metrics in Microservice Architectures
aheusingfeld
0
220
When Microservices Meet Real-World Projects @ GOTOber
aheusingfeld
1
390
Other Decks in Technology
See All in Technology
The Rise of LLMOps
asei
5
1.3k
Amplify Gen2 Deep Dive / バックエンドの型をいかにしてフロントエンドへ伝えるか #TSKaigi #TSKaigiKansai #AWSAmplifyJP
tacck
PRO
0
370
OCI 運用監視サービス 概要
oracle4engineer
PRO
0
4.8k
エンジニア人生の拡張性を高める 「探索型キャリア設計」の提案
tenshoku_draft
1
120
OCI Network Firewall 概要
oracle4engineer
PRO
0
4.1k
ドメインの本質を掴む / Get the essence of the domain
sinsoku
2
150
Evangelismo técnico: ¿qué, cómo y por qué?
trishagee
0
360
テストコード品質を高めるためにMutation Testingライブラリ・Strykerを実戦導入してみた話
ysknsid25
7
2.6k
サイバーセキュリティと認知バイアス:対策の隙を埋める心理学的アプローチ
shumei_ito
0
380
個人でもIAM Identity Centerを使おう!(アクセス管理編)
ryder472
3
190
TypeScript、上達の瞬間
sadnessojisan
46
13k
Terraform未経験の御様に対してどの ように導⼊を進めていったか
tkikuchi
2
430
Featured
See All Featured
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
26
2.1k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
44
2.2k
jQuery: Nuts, Bolts and Bling
dougneiner
61
7.5k
Ruby is Unlike a Banana
tanoku
97
11k
Six Lessons from altMBA
skipperchong
27
3.5k
Done Done
chrislema
181
16k
Intergalactic Javascript Robots from Outer Space
tanoku
269
27k
A designer walks into a library…
pauljervisheath
203
24k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
169
50k
Bash Introduction
62gerente
608
210k
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
Making the Leap to Tech Lead
cromwellryan
133
8.9k
Transcript
We take care of it - personally! © 2014 innoQ
Deutschland GmbH EAI War Stories Praxisbeispiele zu EAI-Pattern und Lessons Learned ! Alexander Heusingfeld, @goldstift Martin Huber, @waterback
© 2014 innoQ Deutschland GmbH EAI Pattern in 2013? Nobody
uses them anymore!
© 2014 innoQ Deutschland GmbH That’s THE problem!
© 2014 innoQ Deutschland GmbH Multitude of potential service consumers
Integration is ubiquitous CRM Application
© 2014 innoQ Deutschland GmbH Multitude of potential service consumers
Integration is ubiquitous CRM Application ERP Application
© 2014 innoQ Deutschland GmbH Multitude of potential service consumers
Integration is ubiquitous CRM Application ?
© 2014 innoQ Deutschland GmbH Multitude of potential service consumers
Integration is ubiquitous CRM Application
We take care of it - personally! © 2014 innoQ
Deutschland GmbH Integration Styles
© 2014 innoQ Deutschland GmbH File Transfer http://www.eaipatterns.com/FileTransferIntegration.
© 2014 innoQ Deutschland GmbH Shared Database http://www.eaipatterns.com/SharedDataBaseIntegration.
© 2014 innoQ Deutschland GmbH Remote Procedure Invocation http://www.eaipatterns.com/EncapsulatedSynchronousIntegration.
© 2014 innoQ Deutschland GmbH Messaging http://www.eaipatterns.com/Messaging.h
© 2013 innoQ Deutschland GmbH Messaging? http://bit.ly/PtrhWy
© 2014 innoQ Deutschland GmbH Searching for a book? Enterprise
Integration Patterns (Hohpe & Woolf), 2003 www.eaipatterns.com Swiss-army knife for asynchronous messaging
We take care of it - personally! © 2014 innoQ
Deutschland GmbH Theories in practice
© 2014 innoQ Deutschland GmbH Simple order management system (CRUD)
Real Life Scenario order management system
© 2014 innoQ Deutschland GmbH Simple ChangeRequest order management system
© 2014 innoQ Deutschland GmbH Simple ChangeRequest We need an
importer! order management system
© 2013 innoQ Deutschland GmbH A Java EE servlet to
the rescue @WebServlet(urlPatterns = {"/order/import"})! public class ImporterServlet extends HttpServlet {! ! @Inject OrderBean bean;! @Inject CsvDataParser parser;! ! @Override! protected void doPost(HttpServletRequest request,! HttpServletResponse response)! throws ServletException, IOException {! String data = request.getParameter("csvdata");! List<Order> orders = parser.transform(data);! for (Order order : orders) {! bean.persist(order);! }! }! }
© 2014 innoQ Deutschland GmbH System Simple Change done order
management system HTTP csv Transfor Business Partner
© 2014 innoQ Deutschland GmbH Integrate the system of a
forwarder System Change happens order management system HTTP csv Transfor Business Partner forwarder system FTP SMTP SOAP WSSE REST
© 2014 innoQ Deutschland GmbH What are the lessons learned?
© 2014 innoQ Deutschland GmbH Recognize an integration task when
it‘s staring in your face?
© 2013 innoQ Deutschland GmbH EASY! http://www.flickr.com/photos/wespionage/184793114
© 2014 innoQ Deutschland GmbH Build an easy and maintainable
solution for multiple integration challenges?
© 2013 innoQ Deutschland GmbH NO PROBLEM! http://www.flickr.com/p
© 2014 innoQ Deutschland GmbH Any help in the toolbox?
© 2013 innoQ Deutschland GmbH ADAPTERS? http://www.flickr.com/photo Property of ChinBuye
Limited. http://bit.ly/xBKwGw
© 2013 innoQ Deutschland GmbH EAI Frameworks Apache Camel Spring
Integration
© 2013 innoQ Deutschland GmbH Pipes and Filters divide your
task into small steps
© 2011 innoQ Deutschland GmbH Camel-XML with Spring <beans> ...
<CamelContext id=“mycoolCamelContext“> <route> <from uri="file://Users/martinh/temp/sample1"/> <bean ref="orderTransform" method="transformOrder"/> <bean ref="orderCheckBean" method="validateOrder"/> <to uri="jms:queue:order.process"/> </route> </CamelContext> ! <bean id="orderTransform" class="con.innoq.sample.OrderTransform"> <property name="company" value="acme" /> </bean> ! <bean id="orderCheckBean" class="con.innoq.sample.OrderCheck"> </bean> </beans>
© 2011 innoQ Deutschland GmbH Camel fluent API in Java
public class PipelineExample extends RouteBuilder { ! @Override public void configure() throws Exception { from("file://Users/martinh/temp/sample1") .to("bean:orderTransform?method=transformOrder") .to("bean:orderCheckBean?method=validateOrder") .to("jms:queue:order.process"); } }
© 2011 innoQ Deutschland GmbH Pipes & Filters public class
PipesFiltersExample extends RouteBuilder { ! @Override public void configure() throws Exception { from("jms:queue:order.in?maxConcurrentConsumers=5") .to("bean:decryptBean") .to("seda:authenticate"); ! from("seda:authenticate") .process(new AuthenticationProcessor()) .to("seda:dedup"); ! from("seda:dedup") .process(new DeDupProcessor() .to("jms:queue:order.processfurther"); ! } }
© 2011 innoQ Deutschland GmbH from("seda:authenticate")! .process(new AuthenticationProcessor())! .to("seda:dedup");! public
class AuthenticationProcessor implements Processor {! ! @Override! ! public void process(Exchange exchange) throws Exception {! MyOrder order = (MyOrder)exchange.getIn().getBody();! String type = exchange.getIn().getHeader("orderType");! ! }! } Pipes & Filters
© 2014 innoQ Deutschland GmbH All you need are the
right tools for the job?
© 2013 innoQ Deutschland GmbH ALMOST http://www.flickr.com/p
© 2014 innoQ Deutschland GmbH OracleDB + AQ Admin UI
Real-life scenario: Control Bus xml-route- EAI-Node EAI-Node EAI-Node ctrl-queue Tomcat Embedded Jetty
© 2014 innoQ Deutschland GmbH OracleDB + AQ Real-life scenario:
Control Bus xml-route- EAI-Node database connection EAI-Node EAI-Node ctrl-queue Initial Node configuration node type (command line arg) Admin UI
© 2014 innoQ Deutschland GmbH OracleDB + AQ Real-life scenario:
Control Bus xml-route- EAI-Node subscribe to control queue EAI-Node EAI-Node ctrl-queue 1. Server startup Admin UI
© 2014 innoQ Deutschland GmbH OracleDB + AQ Real-life scenario:
Control Bus xml-route- EAI-Node load node-type specific config EAI-Node EAI-Node ctrl-queue subscribe to control queue 1. Server startup Admin UI
© 2014 innoQ Deutschland GmbH OracleDB + AQ Config change
@Runtime xml-route- EAI-Node EAI-Node EAI-Node ctrl-queue 2. during runtime route config is changed Admin UI
© 2014 innoQ Deutschland GmbH OracleDB + AQ Config change
@Runtime xml-route- EAI-Node EAI-Node EAI-Node ctrl-queue route config is changed publish config update message Admin UI 2. during runtime
© 2014 innoQ Deutschland GmbH OracleDB + AQ Config change
@Runtime xml-route- EAI-Node interpret relevance of control message EAI-Node EAI-Node ctrl-queue 3. upon control message arrival Admin UI
© 2014 innoQ Deutschland GmbH OracleDB + AQ Config change
@Runtime xml-route- EAI-Node affected nodes reload configuration EAI-Node EAI-Node ctrl-queue interpret relevance of control message Admin UI 3. upon control message arrival
© 2014 innoQ Deutschland GmbH OracleDB + AQ Admin UI
Lessons Learned? xml-route- EAI-Node EAI-Node EAI-Node ctrl-queue
© 2014 innoQ Deutschland GmbH Testbarkeit vs. Konfigurierbarkeit?
© 2014 innoQ Deutschland GmbH Testbarkeit und Konfigurierbarkeit
© 2013 innoQ Deutschland GmbH Message Ordering
© 2013 innoQ Deutschland GmbH Message Ordering
© 2013 innoQ Deutschland GmbH from(“ibmmq:QUEUE.IN“).noAutoStartup() .transacted() .policy(required) .routeId(BasicRouteBuilder .stdfromRouteId(this.componentBaseName))
.process(vslHeadersProcessor) .setHeader(HDR_DUMMYCOMPLCHK_IBR, constant(PASSEDMSG)) .bean(inboundTargetDispatcherBean) .wireTap("seda:inboundRouter.log"); Message Ordering
© 2013 innoQ Deutschland GmbH Message Ordering
© 2013 innoQ Deutschland GmbH Message Ordering
© 2013 innoQ Deutschland GmbH SpringTransactionPolicy required = lookup("PROPAGATION_REQUIRED", SpringTransactionPolicy.class);
for (int i = 0; i < NROFROUTES; i++) { String iasS = String.valueOf(i); from(fromEndpoint.replaceAll("§", iasS)).noAutoStartup() .transacted() .policy(required) .routeId(KONTO_ZP_PREROUTEID + iasS) .process(new CheckRedeliveryProcessor()) .process(new ZahlplanFacetConverter()) .bean(zpBean, "process") .to("bean:kontostatctr?method=stopCounter") .wireTap(logEndpoint); } Message Ordering
© 2014 innoQ Deutschland GmbH Does it save money?
© 2014 innoQ Deutschland GmbH Does it save money?
© 2014 innoQ Deutschland GmbH Backward compatibility via EAI
© 2013 innoQ Deutschland GmbH Transformation mit BPMN-System (1)
© 2013 innoQ Deutschland GmbH Transformation für BPMN-System (2)
© 2013 innoQ Deutschland GmbH Transformation für BPMN-System (2)
© 2013 innoQ Deutschland GmbH Transformation für BPMN-System (2)
© 2013 innoQ Deutschland GmbH Transformation für BPMN-System (3)
© 2014 innoQ Deutschland GmbH
© 2014 innoQ Deutschland GmbH Should I always use an
EAI-Framework?
© 2014 innoQ Deutschland GmbH Should I always use an
EAI-Framework? It depends!
© 2014 innoQ Deutschland GmbH Scenario: Kilogramm vs. Stück
© 2014 innoQ Deutschland GmbH Lagerverwalt- ungssystem Touren- planung Ein
Integrationsproblem? Produktions system
© 2014 innoQ Deutschland GmbH Lagerverwalt- ungssystem Touren- planung Ein
Integrationsproblem? Produktions system Kg Kg Kg Kg Stck
© 2014 innoQ Deutschland GmbH Lagerverwalt- ungssystem Touren- planung Kein
Integrationsproblem Produktions system Kg Kg Stck Stck Stck
© 2014 innoQ Deutschland GmbH Further tips considering EAI
© 2014 innoQ Deutschland GmbH Further tips considering EAI small
building blocks
© 2014 innoQ Deutschland GmbH Further tips considering EAI small
building blocks no shared mutable state
© 2014 innoQ Deutschland GmbH Further tips considering EAI small
building blocks no shared mutable state use immutable DTOs
© 2014 innoQ Deutschland GmbH Further tips considering EAI small
building blocks no shared mutable state use immutable DTOs => increased scalability
© 2014 innoQ Deutschland GmbH Further tips considering EAI small
building blocks no shared mutable state use immutable DTOs => increased scalability advanced: see “SEDA” & “actor model”
We take care of it - personally! © 2014 innoQ
Deutschland GmbH Alexander Heusingfeld, @goldstift
[email protected]
Martin Huber, @waterback
[email protected]
http://www.innoq.com/de/talks Vielen Dank!