SlideShare a Scribd company logo
RELIABILITY ENGINEERING
FOR ENTERPRISE SERVERLESS
MASASHI TERUI @ JAWS DAYS 2018
SERVERWORKS CO.,LTD.
+ FREELANCER
• Serverless Oji-san
• Serverless Framework Plugin Developer
• Serverlessconf Tokyo 2016/2017 speaker
• Remote worker (in Sapporo)
• The best Cloud Engineer in Hokkaido!! (でありたい)
MASASHI TERUI
ARCHITECT / DEVELOPER
AGENDA
SERVERLESS
ってなんだっけ?
1 6
2 7
3 8
4 9
5 10
SERVERLESS
の信頼性とは?
SERVERLESS
のよくある課題
SERVERLESS
を実体を捉える
RELIABILITY
考え方
RELIABILITY
設計編
RELIABILITY
実装編
RELIABILITY
監視編
SUMMARY
世界を広げる
SERVERLESS
は特別じゃない
SERVERLESSってなんだっけ?
WHAT IS
CNCF SERVERLESS WHITEPAPER V1.0
• Serverless computing refers to the concept of building and
running applications that do not require server management
• A platform may provide one or both of the following:
• Functions-as-a-Service (FaaS)
• Backend-as-a-Service (BaaS)
• Products or platforms deliver the following benefits to developers:
• Zero Server Ops
• No Compute Cost When Idle


https://github.com/cncf/wg-serverless/tree/master/whitepaper
SERVERLESS IS NOT GLUE
IN ENTERPRISE APPLICATION
”THE ORCHESTRATOR MANAGES THE TRADES USING A GRAPH OF STATES”
SERVERLESS CLOUD NATIVE LANDSCAPE
BUT I PREFER THIS ONE
https://www.slideshare.net/acloudguru/ant-stanley-being-serverless
SERVERLESS USE CASES (FROM CNCF WP)
• Asynchronous, concurrent, easy to parallelize into independent
units of work
• Infrequent or has sporadic demand, with large, unpredictable
variance in scaling requirements
• Stateless, ephemeral, without a major need for instantaneous
cold start time
• Highly dynamic in terms of changing business requirements that
drive a need for accelerated developer velocity
• Non-HTTP-centric and non-elastic scale workloads that weren’t
good fits for an IaaS, PaaS, or CaaS solution (Event Driven
workloads)
“There are many workloads
that are stateful and/or not easy to parallelize”
と思ってませんか?
“Asynchronous and Event Driven processing is
too difficult for humans”
SERVERLESSの信頼性とは?
Reliability
RELIABILITY(RASIS)
細分化すると色々ある
• Reliability
• Availability
• Serviceability
• Integrity
• Security
ここでは以下のように定義

「Reliability = 広義の信頼性(RASIS)」
Reliability
Availability Serviceability
Integrity Security
Reliability
IS SERVERLESS DIFFICULT TO
GUARANTEE THE RELIABILITY?
• Strongly depends on FaaS platform and BaaS products
• Lose the business continuity (Reliability, Availability)
• Distributed Instances
• Lose the traceability (Serviceability)
• Hard to develop
• All become functions (Serviceability)
• NoSQL matches better than RDB (Integrity)
SERVERLESSのよくある課題
i s s u e s
FaaSのよくある課題
• How to test the functions?
• Granularity of the functions
• Messaging between the functions and backends
• Handling request and response (Error Handling)
• Log Aggregation, Traceability
• Monitoring
BaaSのよくある課題
• How to choose the services?
• Fault Tolerance
• Monitoring
SERVERLESSの実体を捉える
MechanismHINT
MECANISM OF FAAS
SERVERLESS PROCESSING MODELhttps://github.com/cncf/wg-serverless/tree/master/whitepaper#detail-view-serverless-processing-model
処理の全体像を掴む
イベントソースからのイベント処理要求を
多数のインスタンス上のFunctionが分散処理
THE INTERNAL FLOW OF PROCESSINGhttps://github.com/apache/incubator-openwhisk/blob/master/docs/about.md#the-internal-flow-of-processing
イベント(HTTP)が処理される流れを掴む
ストリームやキューを挟んで分散処理するのが基本
外から見て同期でも中は非同期かつ分散
THE FUNCTIONS THAT
INVOKED ASYNCHRONOUS
IN THE CONTAINERS
FaaS is… コンテナ内で非同期に呼び出される関数
WHAT IS BAAS?
FROM OWNERSHIP
TO USE SERVICES
クラウドによってサーバが所有から利用へ
さらにミドルウェアやライブラリも利用へ
BaaSを使うのはそういう自然な流れ
FULLY MANAGED AND ABSTRACTED
MIDDLEWARES AND LIBRARIES
BaaS is… フルマネージドかつ抽象化されたMWやライブラリ
SERVERLESSは特別じゃない
is not special
CONSTITUTED OF THE ABSTRACTED
FUNCTIONS AND MIDDLEWARES
Serverless is… 抽象化されてるだけで関数とMWでできてる
WE CAN MAKE RELIABLE
SERVERLESS APPLICATION
SO… 信頼性は作れる!
RELIABILITYの考え方
Method of thinking
RELIABILITYの考え方
• Make the reliability by myself
• Serverless will help you, but will not protect your business
• Think simple
• Apply generally development/operation practices
• If you can't apply the practices, take care of the serverless mechanism
• Keep simple
• Don't be afraid that increase the number of the functions
• We should be afraid complicated architecture
• Change your mind as a software
• Everything is part of your application
RELIABILITY 設計
Architecting
ALL EVENTS FLOWS IN
THE SAME DIRECTION
イベント(データ)は同じ方向に流す
結果が必要なら同期で返さず
取りに行かせる
🙅 🙆
ALL EVENTS FLOWS IN THE SAME DIRECTION
• They will be naturally Asynchronous and Functional
• Asynchronous processing is Retriable
• Functional processing is Reproducible
• The clients get the results by myself
• However, polling is not good choise...
• Pushing is better choice
• Can we be happy with AppSync? (Pushing via Websocket)
UNIFY THE ENDPOINTS
BETWEEN THE SERVICES
サービス間のエンドポイントは集約する
ラップして集約しコントロールを得る
UNIFY THE ENDPOINTS BETWEEN
THE SERVICES
• Microservices
• Separate the services by the domains (One BaaS is one of your service)
• The endpoint of the service is not unique, it has the endpoints for each operations
• Wrap the endpoints to abstract them
• Like a “MySQL Server” and “libmysql”
• Do you call “libmysql” directly?
• You can make Failover/Failsafe mechanism
• Like a Reverse Proxy
• Do you connect to multiple “Read replicas” from “each app servers”?
• Trafic controlling, Caching
ALL SERIES OF EVENTS
HAVE THE SAME ID
一連の処理には同じIDを付与
それを引き回すことでIDでトレースできる
このIDは様々な制御にも使える
ALL SERIES OF EVENTS HAVE
THE SAME ID
• Log Aggregation
• A series of events can be traced by the ID
• Monitor the progress
• Log all event messages
• Execution control
• At least once -> Exactly once
• e.g. DynamoDB Conditional Writes
• Make it easy to implement with something
like a decorator
DATA MODELING
• Become the friend with DynamoDB
• Distributed by Partition Key and
Indexed(B-tree) by Sort Key, LSI
• GSI is a projection of sorted(indexed) data
• The consistency can be guaranteed without
ACID transaction
• Denormalization
• Strong consistency reading, 

Conditional Writing
• There are some difficult situation
• Write asynchronous to RDB
RELIABILITY 実装
Implementation
GRANULARITY OF THE
FUNCTIONS
•Testable!!
• Unit testing is justice in the
serverless world
• Make the dependencies of other
services are replaceable
• Would be replaceable to the mocks
• Easy to Failover/Failsafe
HOW TO TEST THE FUNCTIONS
• Unit testing is justice in the serverless world (2回目)
• Deploy a new environment if the mocks are not enough at integration testing
• It is easy with some frameworks (e.g. Serverless, SAM)
• The services outside of AWS are needed to be easily to deploy (via API)
• Continuous E2E testing with traceable ID
• It become a monitoring
RELIABILITY 監視
Monitoring
RELIABILITY MONITORING
• The greatest monitoring is the notifications from the application
• Be sure to catch the errors and notify them
• Collect the metrics of the services
• CloudWatch
• This is a condition to choice the services outside of AWS
• Continuous E2E testing with traceable ID
SUMMARY
“SERVERLESS IS NOT SPECIAL”
THANKS!!
“MAKE THE RELIABILITY BY MYSELF”
“THINK SIMPLE, KEEP SIMPLE”
“EVERYTHING IS PART OF YOUR APPLICATION”
“LET'S EXPAND SERVERLESS WORLD”
bit.ly/jd2018-sls
#jawsdays #jd2018_a
PLEASE TAKE A SURVEY

More Related Content

PDF
Sam Kroonenburg and Pete Sbarski - The Story of a Serverless Startup
PDF
AWS로 돌아온 Cloud9, 클라우드 IDE 활용법 - 트랙2, Community Day 2018 re:Invent 특집
PPTX
IaaS with ARM templates for Azure
PPTX
Lucía Brizuela
PDF
Serverless Computing, AWS Way: SourceFuse Technologies
PDF
Native addon을 포함하여 Node.js + Typescript + Serverless 빌드 및 배포하기
PDF
Orchestrate your Services on OpenShift using Spring Cloud Kubernetes
PPTX
Azure App Service at Let's Dev This
Sam Kroonenburg and Pete Sbarski - The Story of a Serverless Startup
AWS로 돌아온 Cloud9, 클라우드 IDE 활용법 - 트랙2, Community Day 2018 re:Invent 특집
IaaS with ARM templates for Azure
Lucía Brizuela
Serverless Computing, AWS Way: SourceFuse Technologies
Native addon을 포함하여 Node.js + Typescript + Serverless 빌드 및 배포하기
Orchestrate your Services on OpenShift using Spring Cloud Kubernetes
Azure App Service at Let's Dev This

What's hot (17)

PDF
Azure functions
PPTX
GLobal Azure Bootcamp 2016 Lyon Benjamin Talmard Azure Micro-services Contain...
PDF
ELB를 활용한 Socket.IO 멀티노드 구축사례
PDF
Serverless API with Azure Functions
PPTX
[AWSKRUG 아키텍처 모임] 세일즈부스트 인프라스트럭처 사례 공유
PPTX
Azure Bot Service
PDF
[DO16] Mesosphere : Microservices meet Fast Data on Azure
PDF
Cassandra Summit 2014: Apache Cassandra on Pivotal CloudFoundry
PPT
Windows Azure Overview
PDF
Design and Configure Azure App Service Web Apps
PPTX
What's better than Microservices? Serverless Microservices
PDF
クラウド&Azure入門 セッション at Microsoft Ignite the Tour Tokyo 2019
PPTX
APPLYING DEVOPS STRATEGIES ON SCALE USING AZURE DEVOPS SERVICES
PPTX
Gameaways
PDF
Training Offerings - CodeOps Technologies
PPTX
Azure Web Application Fundamentals
PPTX
BUILD, TEST & DEPLOY .NET CORE APPS IN AZURE DEVOPS
Azure functions
GLobal Azure Bootcamp 2016 Lyon Benjamin Talmard Azure Micro-services Contain...
ELB를 활용한 Socket.IO 멀티노드 구축사례
Serverless API with Azure Functions
[AWSKRUG 아키텍처 모임] 세일즈부스트 인프라스트럭처 사례 공유
Azure Bot Service
[DO16] Mesosphere : Microservices meet Fast Data on Azure
Cassandra Summit 2014: Apache Cassandra on Pivotal CloudFoundry
Windows Azure Overview
Design and Configure Azure App Service Web Apps
What's better than Microservices? Serverless Microservices
クラウド&Azure入門 セッション at Microsoft Ignite the Tour Tokyo 2019
APPLYING DEVOPS STRATEGIES ON SCALE USING AZURE DEVOPS SERVICES
Gameaways
Training Offerings - CodeOps Technologies
Azure Web Application Fundamentals
BUILD, TEST & DEPLOY .NET CORE APPS IN AZURE DEVOPS
Ad

Similar to Reliability Engineering for Enterprise Serverless (20)

PDF
Automated Serverless Pipelines with #GitOps on Codefresh
PDF
21st Century SOA
PDF
DevOps and BigData Analytics
PDF
20180111 we bde-bs - serverless url shortener
PDF
Infrastructure as Code
PDF
56k.cloud training
PDF
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
PDF
楽天が挑むDevOps
PDF
Introduction to Microservices
PPTX
Using Camunda on Kubernetes through Operators
PPTX
Serverless Architecture
PPTX
今Serverlessが面白いわけ v19.09
PPTX
Infrastructure as Code
PPTX
Introduction to Microservices with Docker and Kubernetes
PDF
Serverless security - how to protect what you don't see?
PDF
Framework WSo2 orientato ai servizi
PPTX
Business and IT agility through DevOps and microservice architecture powered ...
PPTX
Serverless: The future of application delivery
PPT
How to Manage Your Cloud by Drupal (DrupalCon CPH 2010)
PPTX
Reduce Risk with End to End Monitoring of Middleware-based Applications
Automated Serverless Pipelines with #GitOps on Codefresh
21st Century SOA
DevOps and BigData Analytics
20180111 we bde-bs - serverless url shortener
Infrastructure as Code
56k.cloud training
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
楽天が挑むDevOps
Introduction to Microservices
Using Camunda on Kubernetes through Operators
Serverless Architecture
今Serverlessが面白いわけ v19.09
Infrastructure as Code
Introduction to Microservices with Docker and Kubernetes
Serverless security - how to protect what you don't see?
Framework WSo2 orientato ai servizi
Business and IT agility through DevOps and microservice architecture powered ...
Serverless: The future of application delivery
How to Manage Your Cloud by Drupal (DrupalCon CPH 2010)
Reduce Risk with End to End Monitoring of Middleware-based Applications
Ad

More from Terui Masashi (20)

PDF
DevOpsとか言う前にAWSエンジニアに知ってほしいアプリケーションのこと
PDF
What is Serverless?
PDF
クラウド環境におけるWebアプリケーションの正しい作り方(for Perl users)
PDF
The Internal of Serverless Plugins
PDF
Unlimited Frameworks
PDF
Cloud Vsion APIによるGUIの検証自動化
PDF
Serverless ArchitectureにおけるNoSQL Services 〜DynamoDBも良いけどSimpleDBも忘れないであげてください!!〜
PDF
Infrastructure as Codeってなんだったっけ?
PDF
私はこれでJSONをやめました〜あるいはAWSの設定をコード化するとはどういうことか〜
PDF
R○Sに学ぶイマドキのMySQL構築運用
PDF
クラウド時代だからこそ見直したい
PHPアプリケーションのパフォーマンスチューニング
PDF
マルチクラウド #とは
PDF
Lambda(Python)のデプロイについて考えたというか作った
PDF
Google App Engine for PHPとそのローカル開発環境について
PDF
PythonとYAMLでGCPをDeploy!「Google Cloud Deployment Manager」
PDF
ついに解禁!Amazon Aurora徹底検証!
PDF
Multi Cloud Design Pattern(Beta)
PDF
Infra as Code Sapppro Casual 札幌の開催趣旨とTest-Kitchenの話
PDF
IoTにおけるクラウドインフラからサーバサイドまでの概要的な話
PDF
[Deep Dive]Infra寄りのDevがお送りするRDS for Aurora徹底検証
DevOpsとか言う前にAWSエンジニアに知ってほしいアプリケーションのこと
What is Serverless?
クラウド環境におけるWebアプリケーションの正しい作り方(for Perl users)
The Internal of Serverless Plugins
Unlimited Frameworks
Cloud Vsion APIによるGUIの検証自動化
Serverless ArchitectureにおけるNoSQL Services 〜DynamoDBも良いけどSimpleDBも忘れないであげてください!!〜
Infrastructure as Codeってなんだったっけ?
私はこれでJSONをやめました〜あるいはAWSの設定をコード化するとはどういうことか〜
R○Sに学ぶイマドキのMySQL構築運用
クラウド時代だからこそ見直したい
PHPアプリケーションのパフォーマンスチューニング
マルチクラウド #とは
Lambda(Python)のデプロイについて考えたというか作った
Google App Engine for PHPとそのローカル開発環境について
PythonとYAMLでGCPをDeploy!「Google Cloud Deployment Manager」
ついに解禁!Amazon Aurora徹底検証!
Multi Cloud Design Pattern(Beta)
Infra as Code Sapppro Casual 札幌の開催趣旨とTest-Kitchenの話
IoTにおけるクラウドインフラからサーバサイドまでの概要的な話
[Deep Dive]Infra寄りのDevがお送りするRDS for Aurora徹底検証

Recently uploaded (20)

PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
cuic standard and advanced reporting.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Machine learning based COVID-19 study performance prediction
PDF
Electronic commerce courselecture one. Pdf
PPTX
Big Data Technologies - Introduction.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
A Presentation on Artificial Intelligence
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Cloud computing and distributed systems.
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
The AUB Centre for AI in Media Proposal.docx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
cuic standard and advanced reporting.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Network Security Unit 5.pdf for BCA BBA.
Machine learning based COVID-19 study performance prediction
Electronic commerce courselecture one. Pdf
Big Data Technologies - Introduction.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
Empathic Computing: Creating Shared Understanding
Understanding_Digital_Forensics_Presentation.pptx
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
A Presentation on Artificial Intelligence
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Digital-Transformation-Roadmap-for-Companies.pptx
Cloud computing and distributed systems.

Reliability Engineering for Enterprise Serverless

  • 1. RELIABILITY ENGINEERING FOR ENTERPRISE SERVERLESS MASASHI TERUI @ JAWS DAYS 2018
  • 2. SERVERWORKS CO.,LTD. + FREELANCER • Serverless Oji-san • Serverless Framework Plugin Developer • Serverlessconf Tokyo 2016/2017 speaker • Remote worker (in Sapporo) • The best Cloud Engineer in Hokkaido!! (でありたい) MASASHI TERUI ARCHITECT / DEVELOPER
  • 3. AGENDA SERVERLESS ってなんだっけ? 1 6 2 7 3 8 4 9 5 10 SERVERLESS の信頼性とは? SERVERLESS のよくある課題 SERVERLESS を実体を捉える RELIABILITY 考え方 RELIABILITY 設計編 RELIABILITY 実装編 RELIABILITY 監視編 SUMMARY 世界を広げる SERVERLESS は特別じゃない
  • 5. CNCF SERVERLESS WHITEPAPER V1.0 • Serverless computing refers to the concept of building and running applications that do not require server management • A platform may provide one or both of the following: • Functions-as-a-Service (FaaS) • Backend-as-a-Service (BaaS) • Products or platforms deliver the following benefits to developers: • Zero Server Ops • No Compute Cost When Idle 
 https://github.com/cncf/wg-serverless/tree/master/whitepaper
  • 6. SERVERLESS IS NOT GLUE IN ENTERPRISE APPLICATION ”THE ORCHESTRATOR MANAGES THE TRADES USING A GRAPH OF STATES”
  • 8. BUT I PREFER THIS ONE https://www.slideshare.net/acloudguru/ant-stanley-being-serverless
  • 9. SERVERLESS USE CASES (FROM CNCF WP) • Asynchronous, concurrent, easy to parallelize into independent units of work • Infrequent or has sporadic demand, with large, unpredictable variance in scaling requirements • Stateless, ephemeral, without a major need for instantaneous cold start time • Highly dynamic in terms of changing business requirements that drive a need for accelerated developer velocity • Non-HTTP-centric and non-elastic scale workloads that weren’t good fits for an IaaS, PaaS, or CaaS solution (Event Driven workloads)
  • 10. “There are many workloads that are stateful and/or not easy to parallelize” と思ってませんか? “Asynchronous and Event Driven processing is too difficult for humans”
  • 12. RELIABILITY(RASIS) 細分化すると色々ある • Reliability • Availability • Serviceability • Integrity • Security ここでは以下のように定義
 「Reliability = 広義の信頼性(RASIS)」 Reliability Availability Serviceability Integrity Security Reliability
  • 13. IS SERVERLESS DIFFICULT TO GUARANTEE THE RELIABILITY? • Strongly depends on FaaS platform and BaaS products • Lose the business continuity (Reliability, Availability) • Distributed Instances • Lose the traceability (Serviceability) • Hard to develop • All become functions (Serviceability) • NoSQL matches better than RDB (Integrity)
  • 15. FaaSのよくある課題 • How to test the functions? • Granularity of the functions • Messaging between the functions and backends • Handling request and response (Error Handling) • Log Aggregation, Traceability • Monitoring
  • 16. BaaSのよくある課題 • How to choose the services? • Fault Tolerance • Monitoring
  • 20. THE INTERNAL FLOW OF PROCESSINGhttps://github.com/apache/incubator-openwhisk/blob/master/docs/about.md#the-internal-flow-of-processing イベント(HTTP)が処理される流れを掴む ストリームやキューを挟んで分散処理するのが基本 外から見て同期でも中は非同期かつ分散
  • 21. THE FUNCTIONS THAT INVOKED ASYNCHRONOUS IN THE CONTAINERS FaaS is… コンテナ内で非同期に呼び出される関数
  • 23. FROM OWNERSHIP TO USE SERVICES クラウドによってサーバが所有から利用へ さらにミドルウェアやライブラリも利用へ BaaSを使うのはそういう自然な流れ
  • 24. FULLY MANAGED AND ABSTRACTED MIDDLEWARES AND LIBRARIES BaaS is… フルマネージドかつ抽象化されたMWやライブラリ
  • 26. CONSTITUTED OF THE ABSTRACTED FUNCTIONS AND MIDDLEWARES Serverless is… 抽象化されてるだけで関数とMWでできてる
  • 27. WE CAN MAKE RELIABLE SERVERLESS APPLICATION SO… 信頼性は作れる!
  • 29. RELIABILITYの考え方 • Make the reliability by myself • Serverless will help you, but will not protect your business • Think simple • Apply generally development/operation practices • If you can't apply the practices, take care of the serverless mechanism • Keep simple • Don't be afraid that increase the number of the functions • We should be afraid complicated architecture • Change your mind as a software • Everything is part of your application
  • 31. ALL EVENTS FLOWS IN THE SAME DIRECTION イベント(データ)は同じ方向に流す 結果が必要なら同期で返さず 取りに行かせる 🙅 🙆
  • 32. ALL EVENTS FLOWS IN THE SAME DIRECTION • They will be naturally Asynchronous and Functional • Asynchronous processing is Retriable • Functional processing is Reproducible • The clients get the results by myself • However, polling is not good choise... • Pushing is better choice • Can we be happy with AppSync? (Pushing via Websocket)
  • 33. UNIFY THE ENDPOINTS BETWEEN THE SERVICES サービス間のエンドポイントは集約する ラップして集約しコントロールを得る
  • 34. UNIFY THE ENDPOINTS BETWEEN THE SERVICES • Microservices • Separate the services by the domains (One BaaS is one of your service) • The endpoint of the service is not unique, it has the endpoints for each operations • Wrap the endpoints to abstract them • Like a “MySQL Server” and “libmysql” • Do you call “libmysql” directly? • You can make Failover/Failsafe mechanism • Like a Reverse Proxy • Do you connect to multiple “Read replicas” from “each app servers”? • Trafic controlling, Caching
  • 35. ALL SERIES OF EVENTS HAVE THE SAME ID 一連の処理には同じIDを付与 それを引き回すことでIDでトレースできる このIDは様々な制御にも使える
  • 36. ALL SERIES OF EVENTS HAVE THE SAME ID • Log Aggregation • A series of events can be traced by the ID • Monitor the progress • Log all event messages • Execution control • At least once -> Exactly once • e.g. DynamoDB Conditional Writes • Make it easy to implement with something like a decorator
  • 37. DATA MODELING • Become the friend with DynamoDB • Distributed by Partition Key and Indexed(B-tree) by Sort Key, LSI • GSI is a projection of sorted(indexed) data • The consistency can be guaranteed without ACID transaction • Denormalization • Strong consistency reading, 
 Conditional Writing • There are some difficult situation • Write asynchronous to RDB
  • 39. GRANULARITY OF THE FUNCTIONS •Testable!! • Unit testing is justice in the serverless world • Make the dependencies of other services are replaceable • Would be replaceable to the mocks • Easy to Failover/Failsafe
  • 40. HOW TO TEST THE FUNCTIONS • Unit testing is justice in the serverless world (2回目) • Deploy a new environment if the mocks are not enough at integration testing • It is easy with some frameworks (e.g. Serverless, SAM) • The services outside of AWS are needed to be easily to deploy (via API) • Continuous E2E testing with traceable ID • It become a monitoring
  • 42. RELIABILITY MONITORING • The greatest monitoring is the notifications from the application • Be sure to catch the errors and notify them • Collect the metrics of the services • CloudWatch • This is a condition to choice the services outside of AWS • Continuous E2E testing with traceable ID
  • 44. “SERVERLESS IS NOT SPECIAL” THANKS!! “MAKE THE RELIABILITY BY MYSELF” “THINK SIMPLE, KEEP SIMPLE” “EVERYTHING IS PART OF YOUR APPLICATION” “LET'S EXPAND SERVERLESS WORLD”