SlideShare ist ein Scribd-Unternehmen logo
1 von 50
Downloaden Sie, um offline zu lesen
AGIM EMRULI, ALAIN SAHLI
MICROSERVICES MIT SPRING CLOUD
AGIM
EMRULI
AGIM.EMRULI@
MIMACOM.COM
ALAIN
SAHLI
ALAIN.SAHLI@
MIMACOM.COM
CLOUD
SERVICE REGISTRY,

CIRCUIT BREAKER, METRICS
CORE
FRAMEWORK SECURITY GROOVY REACTOR
IOEXECUTIONIOFOUNDATION GRAILS
FULL STACK, WEB
XD
STREAMS, TAPS, JOBS
BOOT
BOOTABLE, MINIMAL, OPS-READY
BATCH
JOBS, STEPS,

READERS, WRITERS
DATA
RELATIONAL DATA NON-RELATIONAL DATA
BIG DATA
INGESTION, EXPORT,

ORCHESTRATION, HADOOP
WEB
CONTROLLERS, REST,

WEBSOCKET
INTEGRATION
CHANNELS, FILTERS,

ADAPTERS, TRANSFORMERS
IOCOORDINATION
TOOLBOX
FOR DISTRIBUTED SYSTEMS
DISTRIBUTED SYSTEM DEPLOYMENTS
@GITHUB
175 DEPLOYMENTS / DAY
NETFLIX
SERVICE ORIENTED ARCHITECTURE
SPRING CLOUD
INTRODUCTION
Spring
Cloud
BusConfig Netflix
AWS
Cloud
FoundryCLIConnectors
Starters
Application
CONFIGURATION MANAGEMENT
MONOLITHIC VS. DISTRIBUTED
Application
JNDI
Service
Service
Service
Service
Service
Spring Cloud Config
Spring Cloud
Config Server
GIT
SVN
File
Config Server
@Configuration

@EnableAutoConfiguration

@EnableConfigServer

public class ConfigServerApplication {



public static void main(String[] args) {

SpringApplication.run(ConfigServerApplication.class, args);

}

}
Spring Cloud
Config Server
Application
Spring Cloud
Config Client
Application
Spring Cloud
Config Client
Application
Spring Cloud
Config Client
Application
Spring Cloud
Config Client
@SpringBootApplication

public class CustomerApp {



public static void main(String[] args) {

SpringApplication.run(CustomerApp.class, args);

}

}

Bootstrap
Spring Cloud Bus
Spring Cloud
Config Server
Application
Application
/bus/refresh
AMQP
PATTERNS
STABILITY
CAPACITY
TRANSPARENCY
SPRING CLOUD
NETFLIX
Hystrix
Feign
Zuul
Eureka
Turbine
Ribbon
Service Registry
Circuit Breaker
Stream Aggregator
Load Balancer
Edge Service
HTTP Communication
HYSTRIX
CIRCUIT BREAKER
Execute
Command
Queue
Pool
available
Run
Fallback
HYSTRIX
BULKHEADS
Tomcat Thread Pool
Thread-1
Service
Service
Service Service
Thread-2
Thread-3
XThread-4
Thread-5
Thread-6
Thread-7
Thread-8
HYSTRIX
BULKHEADS
Execute
Command
Queue
Pool
available
Execute
Command
Queue
Pool
available
Execute
Command
Queue
Pool
available
HYSTRIX EXAMPLE
SERVICE CONSUMER
public class SearchGateway {

@HystrixCommand(fallbackMethod = "fallback")

public List<SearchHit> search(String query) {

return …;

}

public List<SearchHit> fallback() {

return Collections.emptyList();

}

}
HYSTRIX
TRANSPARENCY
HYSTRIX DASHBOARD
EXAMPLE
@EnableCircuitBreaker

@EnableHystrixDashboard

public class HystrixApp {



public static void main(String[] args) {

SpringApplication.run(HystrixApp.class, args);

}

}
TURBINE
AGGREGATOR
Dashboard
Service
Service
Dashboard
Turbine
Service Service
EUREKA
SERVICE DISCOVERY
Service
Service
Service
Service
X
Service
Service
Service
Service
Eureka
EUREKA REGISTRATION
EXAMPLE
@SpringBootApplication

@EnableDiscoveryClient

public class CustomerApp {



public static void main(String[] args) {

SpringApplication.run(CustomerApp.class, args);

}



}
spring.application.name=customers
EUREKA REGISTRATION
EXAMPLE
Discovery
Client
Application
Host
Port
URI
RIBBON
LOAD-BALANCER
Service
Service
Eureka
Service
Service
Eureka
ServiceService
Load
Balancer
RIBBON
RESTTEMPLATE INTEGRATION
@Service

public class Service {



@Autowired

@LoadBalanced

RestTemplate restTemplate;



public String callService() {

return restTemplate.getForObject("http://CUSTOMERS/{id}", String.class,"23");

}

}
ZUUL
EDGE-SERVICE
Service
Eureka
Edge Proxy
Service
Eureka
ServiceService
Load
Balancer
Web
Browser
Web
Browser
ZUUL
REVERSE PROXY SETUP
@EnableAutoConfiguration

@EnableZuulProxy

public class SimpleZuulServerApplication {



public static void main(String[] args) {

SpringApplication.run(SampleZuulProxyApplication.class, args);

}



}
http://localhost:9090/customers
http://localhost:9090/stores
Web Server

Load Balancer
Service
Discovery

Eureka
Customers Stores
Config
Server
Circuit Breaker
Dashboard
Browser
SPRING CLOUD
AMAZON WEBSERVICES
Instance Meta-data
@Component

public class ApplicationInfoBean {



@Value("${ami-id}")

private String amiId;



@Value("${hostname}")

private String hostname;



@Value("${instance-type}")

private String instanceType;



@Value("${services/domain}")

private String serviceDomain;

}

Amazon RDS
Schema Design
Query construction /
tuning
Availability
Backup & Recovery
Patch Management
Storage Upgrades
Amazon RDS
@EnableRdsInstance(
dbInstanceIdentifier = “test",
password = “secret",
readReplicaSupport = true)
public static class AppConfig {}
RDS Instance Support
@Service

public class JdbcPersonService implements PersonService {



private final JdbcTemplate jdbcTemplate;



@Autowired

public JdbcPersonService(DataSource dataSource) {

this.jdbcTemplate = new JdbcTemplate(dataSource);

}



@Override

@Transactional(readOnly = true)

public List<Person> all() {

return this.jdbcTemplate.query("SELECT * FROM Person”, … );

}



@Override

@Transactional

public void store(Person person) {

this.jdbcTemplate.update("INSERT INTO Person …”);

}

}
Amazon SQS
HTTP Messaging
Only String payload
No Transactions
Visibility Rules
Message Listeners
@Component

public class SqsController {



@MessageMapping("myQueue")

@SendTo("replyQueue")

private String receiveMessage(MessageToProcess message, 

@Header(“ApproximateFirstReceiveTimestamp”)
String timeStamp) {

return "someReply";

}

}
Application
Instance
Application
Instance
Application
Instance
SNS Controllers
@RestController

@RequestMapping("/sns/receive")

public class SnsEndpointController {



@NotificationSubscriptionMapping

public void confirmSubscription(
NotificationStatus notificationStatus) {

notificationStatus.confirmSubscription();

}



@NotificationMessageMapping

public void receiveNotification(
@NotificationMessage String message,
@NotificationSubject String subject) {

}

}
Elasticache
Application
Instance
Application
Instance
Application
Instance
Application
Instance
Caching Service
@Service

public class ExpensiveService {



@Cacheable("CacheCluster")

public String calculateExpensiveValue(String key){

return …;

}

}
{
"Resources": {
"ec2instance": {
"Type": "AWS::EC2::Instance",
"Properties": {
"ImageId": "ami-6a56b81d",
"InstanceType": "m1.small",
}
},
"database": {
"Type": "AWS::RDS::DBInstance",
"Properties": {
"AllocatedStorage": "5",
"DBInstanceClass": "db.m1.small",
"DBName": "test",
}
}
}
FRAGEN?

Weitere ähnliche Inhalte

Ähnlich wie Spring Cloud JUG Switzerland

Behavior Driven Development and Automation Testing Using Cucumber
Behavior Driven Development and Automation Testing Using CucumberBehavior Driven Development and Automation Testing Using Cucumber
Behavior Driven Development and Automation Testing Using Cucumber
KMS Technology
 

Ähnlich wie Spring Cloud JUG Switzerland (20)

F5 Automation and service discovery
F5 Automation and service discoveryF5 Automation and service discovery
F5 Automation and service discovery
 
Microservice Come in Systems
Microservice Come in SystemsMicroservice Come in Systems
Microservice Come in Systems
 
How lagom helps to build real world microservice systems
How lagom helps to build real world microservice systemsHow lagom helps to build real world microservice systems
How lagom helps to build real world microservice systems
 
Microservices Manchester: How Lagom Helps to Build Real World Microservice Sy...
Microservices Manchester: How Lagom Helps to Build Real World Microservice Sy...Microservices Manchester: How Lagom Helps to Build Real World Microservice Sy...
Microservices Manchester: How Lagom Helps to Build Real World Microservice Sy...
 
Ato2019 weave-services-istio
Ato2019 weave-services-istioAto2019 weave-services-istio
Ato2019 weave-services-istio
 
All Things Open 2019 weave-services-istio
All Things Open 2019 weave-services-istioAll Things Open 2019 weave-services-istio
All Things Open 2019 weave-services-istio
 
Weave Your Microservices with Istio
Weave Your Microservices with IstioWeave Your Microservices with Istio
Weave Your Microservices with Istio
 
Mythical Mysfits: Monolith to Microservices with Docker and Fargate - MAD305 ...
Mythical Mysfits: Monolith to Microservices with Docker and Fargate - MAD305 ...Mythical Mysfits: Monolith to Microservices with Docker and Fargate - MAD305 ...
Mythical Mysfits: Monolith to Microservices with Docker and Fargate - MAD305 ...
 
Getting started with AWS IoT Core - SVC306 - New York AWS Summit
Getting started with AWS IoT Core - SVC306 - New York AWS SummitGetting started with AWS IoT Core - SVC306 - New York AWS Summit
Getting started with AWS IoT Core - SVC306 - New York AWS Summit
 
Running Serverless at The Edge (CTD302) - AWS re:Invent 2018
Running Serverless at The Edge (CTD302) - AWS re:Invent 2018Running Serverless at The Edge (CTD302) - AWS re:Invent 2018
Running Serverless at The Edge (CTD302) - AWS re:Invent 2018
 
Dev309 from asgard to zuul - netflix oss-final
Dev309  from asgard to zuul - netflix oss-finalDev309  from asgard to zuul - netflix oss-final
Dev309 from asgard to zuul - netflix oss-final
 
Aws summit devops 云端多环境自动化运维和部署
Aws summit devops   云端多环境自动化运维和部署Aws summit devops   云端多环境自动化运维和部署
Aws summit devops 云端多环境自动化运维和部署
 
Behavior Driven Development and Automation Testing Using Cucumber
Behavior Driven Development and Automation Testing Using CucumberBehavior Driven Development and Automation Testing Using Cucumber
Behavior Driven Development and Automation Testing Using Cucumber
 
Serverless Beyond Functions - CTO Club Made in JLM
Serverless Beyond Functions - CTO Club Made in JLMServerless Beyond Functions - CTO Club Made in JLM
Serverless Beyond Functions - CTO Club Made in JLM
 
126 Golconde
126 Golconde126 Golconde
126 Golconde
 
What Is Happening At The Edge
What Is Happening At The EdgeWhat Is Happening At The Edge
What Is Happening At The Edge
 
Security in NodeJS applications
Security in NodeJS applicationsSecurity in NodeJS applications
Security in NodeJS applications
 
Oracle API Gateway
Oracle API GatewayOracle API Gateway
Oracle API Gateway
 
Red Hat Agile integration Workshop Labs
Red Hat Agile integration Workshop LabsRed Hat Agile integration Workshop Labs
Red Hat Agile integration Workshop Labs
 
Amysta european cloudstack user group -july 4 - 2013
Amysta   european cloudstack user group -july 4 - 2013Amysta   european cloudstack user group -july 4 - 2013
Amysta european cloudstack user group -july 4 - 2013
 

Kürzlich hochgeladen

%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 

Kürzlich hochgeladen (20)

%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Generic or specific? Making sensible software design decisions
Generic or specific? Making sensible software design decisionsGeneric or specific? Making sensible software design decisions
Generic or specific? Making sensible software design decisions
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 

Spring Cloud JUG Switzerland