SlideShare a Scribd company logo
BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA
HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH
Servlerless Computing with Fn Project
Matthias Furrer
An introduction to the open source Fn Project
Agenda
TechEvent Sept 2018 - Servlerless Computing with Fn Project2 09/2018
1. Introduction
BaaS and FaaS
What is Serverless Computing ?
Expectations
Use cases
Tradeoffs
Comparison
2. Fn Project Overview
Key characteristics
Components
Architecture
3. Fn in the cloud
Concepts
4. Demo
Go function
Java function
TechEvent Sept 2018 - Servlerless Computing with Fn Project3 09/2018
Introduction
BaaS and FaaS
TechEvent Sept 2018 - Servlerless Computing with Fn Project4 09/2018
Backend-as-a-Service (BaaS): third-party, API-based services that replace core
subsets of functionality in an application. The APIs are provided as a service that
auto-scales and operates transparently. BaaS will often be the supporting
infrastructure (e.g. provides state) to the stateless functions
Functions-as-a-Service (FaaS): provides event-driven computing. Application code
with functions is triggered by events or HTTP requests. Developers deploy small
units of code to the FaaS, which are executed as needed as discrete actions, scaling
without the need to manage servers or any other underlying infrastructure
A serverless computing platform may provide one or both of FaaS and BaaS.
What is Serverless Computing ?
Cloud Native Computing Foundation Definition
TechEvent Sept 2018 - Servlerless Computing with Fn Project5 09/2018
Serverless computing does not mean that servers to host and run code are no longer
used
A concept of building and running applications that do not require server
management.
A deployment model where applications, bundled as functions, are uploaded to a
platform and then executed, scaled, and billed in response to the exact demand
needed at the moment
Platform management tasks and capabilities are handled by a serverless platform
and are completely abstracted away from the developers and IT/operations teams
A serverless product can instantly and precisely scale to handle each individual
incoming request
https://github.com/cncf/wg-serverless/blob/master/whitepapers/serverless-
overview/cncf_serverless_whitepaper_v1.0.pdf
Expectations
The next evolution of cloud systems ?
TechEvent Sept 2018 - Servlerless Computing with Fn Project6 09/2018
Consumers of serverless computing no longer need to spend time and resources on
server provisioning, maintenance, updates, scaling, and capacity planning
No Compute Cost When Idle
Individual Services (e.g. endpoints in a microservice) can scale independently and
be billed separately, even if they share a common data backend.
Reduced packaging and deployment complexity
Reduction in lead time and faster time to market
Harder to infiltrate - «Try to attack something that only lives for few milliseconds»
«Greener» Computing ?
Use Cases
TechEvent Sept 2018 - Servlerless Computing with Fn Project7 09/2018
Asynchronous, concurrent, easy to parallelize into independent units of work
Infrequent or sporadic demand, with large, unpredictable variance in scaling
requirements
Stateless, ephemeral, without a major need for instantaneous cold start time
Examples:
– Performing analytics on IoT sensor input messages (e.g. MQTT messages)
– Handling stream processing (analyzing or modifying data in motion)
– Executing logic in response to database changes (triggers)
– Scheduling tasks (cron or batch style invocations)
Tradeoffs
TechEvent Sept 2018 - Servlerless Computing with Fn Project8 09/2018
Function startup after a period of inactivity may result in performance declines
Serverless is “No sysadmin” but it doesn’t mean "No Ops”. Monitoring, deployment,
security, networking is still a concern
Potential vendor lock-in
Execution duration may be limited in FaaS
Testing (e.g. load testing), debugging and monitoring can be tricky. However tools
are improving
Comparison to other deployment models
TechEvent Sept 2018 - Servlerless Computing with Fn Project9 09/2018
Source: Cloud Native Computing Foundation WG-Serverless Whitepaper v1.0
• Containers-as-a-Service (CaaS)
Maintain full control over infrastructure and get
maximum portability. Maximum control, flexibility,
reusability and ease of bringing existing
containerized apps into the cloud
• Platform-as-a-Service (PaaS)
Focus on the application and let the platform
handle the rest. Easier management and
deployment of applications, auto-scaling and pre-
configured services for the most common
application needs
• Functions-as-a-Service (FaaS)
Write logic as small pieces of code that respond to
a variety of events. Includes the lowest requirement
for infrastructure management of any of the cloud
native paradigms
TechEvent Sept 2018 - Servlerless Computing with Fn Project10 09/2018
Fn Project Overview
Key Characteristics
www.fnproject.io
TechEvent Sept 2018 - Servlerless Computing with Fn Project11 09/2018
Open Source - Available under Apache 2.0
– Active 2700+ commits across 60+ contributors
– evolution of the IronFunctions project from iron.io, now mainly maintained by
Oracle
Platform Independent – Laptop, server, cloud
– Can be deployed locally, to any cloud or on-premise
Scheduler Independent
– Deploy to Kubernetes, Swarm, Mesos, etc.
Docker Based – Leverages Docker ecosystem
– Containers are primitives
Components
TechEvent Sept 2018 - Servlerless Computing with Fn Project12 09/2018
Fn Server
– Functions-as-a-Service system allowing to build, deploy, and scale their functions
into a multi-cloud environment
Fn Load Balancer (Fn LB)
– Deploy clusters of Fn servers and route traffic to them
– Route traffic to nodes where hot functions are running
– Distribute load if traffic to a specific function increases
Fn FDK’s
– Function Development Kits in several languages
Flow
– build and orchestrate higher level workflows
Fn Function
Developers View
TechEvent Sept 2018 - Servlerless Computing with Fn Project13 09/2018
Small chunk of code wrapped into a container image
Functions == Containers : Functions are packaged as containers—so any container
can be deployed as a function
Fn Function is a container with a set of known characteristics
– Short running / Ephemeral
– Stateless
– Single-purposed
– Self-contained
Language Support: Java, Go, Python, and Ruby (more coming..)
BYOD: “Bring your own Dockerfile” and launch as a function
Architecture
Function deployment
TechEvent Sept 2018 - Servlerless Computing with Fn Project14 09/2018
Fn Service
myFunction 
r/myApp/myFunction:0.0.2
myFunction:0.0.2
mySourcCode
myFunction:0.0.2
Fn Server
1. Builds Container (multistage) – and increments version
2. Pushes Container to registry – if not deployed locally
3. Creates/updates server routes – servers lazy load images
Architecture
Overview
TechEvent Sept 2018 - Servlerless Computing with Fn Project15 09/2018
Source: http://deck.fnproject.io/
Architecture
Traffic routing
TechEvent Sept 2018 - Servlerless Computing with Fn Project16 09/2018
Source: http://deck.fnproject.io/
• If functions are deployed
as hot functions, a
container is kept alive for
30 seconds (and not
restarted for every
invocation)
Architecture
Sync Request Flow
TechEvent Sept 2018 - Servlerless Computing with Fn Project17 09/2018
Source: http://deck.fnproject.io/
Architecture
Async Request Flow
TechEvent Sept 2018 - Servlerless Computing with Fn Project18 09/2018
Source: http://deck.fnproject.io/
Fn Server
Supporting Services
TechEvent Sept 2018 - Servlerless Computing with Fn Project19 09/2018
DB, MQ, blob store are all pluggable modules that are thin wrappers around their
respective drivers.
– DB: MySQL, sqlite3, Postgres
– Queue: Redis, Kafka
– Registry: Any Docker v2-compliant, even private
Metrics/Monitoring
– OpenTracing API for metrics
– Prometheus support, pluggable backends
– Logging via syslog
TechEvent Sept 2018 - Servlerless Computing with Fn Project20 09/2018
Fn Flow
Fn Flow
Sequencing/chaining functions
TechEvent Sept 2018 - Servlerless Computing with Fn Project21 09/2018
Build long-running, reliable, scalable functions with rich sets of language-specific
primitives – fork-join, chaining, delays and error handling
Supports complex parallel processes that are readable and testable (including unit
tests) with
Standard programming tools
Java support – Java 8 CompletableFuture API
JS, Python, Go language support on the way!
TechEvent Sept 2018 - Servlerless Computing with Fn Project22 09/2018
Fn in the cloud
Fn in the cloud
TechEvent Sept 2018 - Servlerless Computing with Fn Project23 09/2018
Can be installed on any public cloud IaaS
However, when running on IaaS, there is no true ‘pay-per-invocation” benefit
Fn can be installed on Kubernetes from the command line using Helm
– Preconfigured Helm charts available for Fn service, Fn UI, Fn Flow
– Fn LB can be deployed and updated if Fn Server Kubernetes pods are added or
removed
Runs on Oracle managed Kubernetes service - Oracle Container Engine (OCE)
TechEvent Sept 2018 - Servlerless Computing with Fn Project24 09/2018
Demo
Links
TechEvent Sept 2018 - Servlerless Computing with Fn Project25 09/2018
Main: https://github.com/fnproject/fn
Introduction: https://developer.oracle.com/opensource/serverless-with-fn-project
Tutorials: https://github.com/fnproject/fn/tree/master/examples/tutorial
Documentation: https://github.com/fnproject/fn/blob/master/docs/README.md
Matthias Furrer
Principal Consultant, Application Integration & SOA
matthias.furrer@trivadis.com
09/2018
TechEvent Sept 2018 - Servlerless Computing with Fn
Project
26
Session Feedback – now
TechEvent September 201827 14.09.2018
Please use the Trivadis Events mobile app to give feedback on each session
Use "My schedule" if you have registered for a session
Otherwise use "Agenda" and the search function
If the mobile app does not work (or if you have a Windows smartphone), use your
smartphone browser
– URL: http://trivadis.quickmobileplatform.eu/
– User name: <your_loginname> (such as "svv")
– Password: sent by e-mail...

More Related Content

What's hot

Mastering Application Integration Challenges in Hybrid Cloud Environments
Mastering Application Integration Challenges in Hybrid Cloud EnvironmentsMastering Application Integration Challenges in Hybrid Cloud Environments
Mastering Application Integration Challenges in Hybrid Cloud Environments
Sam Garforth
 
Agile Integration eBook from 2018
Agile Integration eBook from 2018Agile Integration eBook from 2018
Agile Integration eBook from 2018
Kim Clark
 
API First or Events First: Is it a Binary Choice?
API First or Events First: Is it a Binary Choice?  API First or Events First: Is it a Binary Choice?
API First or Events First: Is it a Binary Choice?
Rohit Kelapure
 
Craig McLuckie at VMware Tanzu Public Sector Connect 2021
Craig McLuckie at VMware Tanzu Public Sector Connect 2021Craig McLuckie at VMware Tanzu Public Sector Connect 2021
Craig McLuckie at VMware Tanzu Public Sector Connect 2021
VMware Tanzu
 
Interface characteristics - Kim Clark and Brian Petrini
Interface characteristics - Kim Clark and Brian PetriniInterface characteristics - Kim Clark and Brian Petrini
Interface characteristics - Kim Clark and Brian Petrini
Kim Clark
 
Agile Integration Architecture: A Containerized and Decentralized Approach to...
Agile Integration Architecture: A Containerized and Decentralized Approach to...Agile Integration Architecture: A Containerized and Decentralized Approach to...
Agile Integration Architecture: A Containerized and Decentralized Approach to...
Kim Clark
 
Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail! Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail!
Cloudify Community
 
Toward Hybrid Cloud Serverless Transparency with Lithops Framework
Toward Hybrid Cloud Serverless Transparency with Lithops FrameworkToward Hybrid Cloud Serverless Transparency with Lithops Framework
Toward Hybrid Cloud Serverless Transparency with Lithops Framework
LibbySchulze
 
Api more than payload (2021 Update)
Api more than payload (2021 Update)Api more than payload (2021 Update)
Api more than payload (2021 Update)
Phil Wilkins
 
Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...
Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...
Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...
VMware Tanzu
 
James Watters Kafka Summit NYC 2019 Keynote
James Watters Kafka Summit NYC 2019 KeynoteJames Watters Kafka Summit NYC 2019 Keynote
James Watters Kafka Summit NYC 2019 Keynote
James Watters
 
I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...
I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...
I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...
VMware Tanzu
 
CNCF Meetup - OpenShift Overview
CNCF Meetup - OpenShift OverviewCNCF Meetup - OpenShift Overview
CNCF Meetup - OpenShift Overview
Sumit Shatwara
 
Create cross-platform apps that interact with Microsoft Graph and Office 365 ...
Create cross-platform apps that interact with Microsoft Graph and Office 365 ...Create cross-platform apps that interact with Microsoft Graph and Office 365 ...
Create cross-platform apps that interact with Microsoft Graph and Office 365 ...
Codemotion
 
Where can you use serverless?  How does it relate to APIs, integration and mi...
Where can you use serverless?  How does it relate to APIs, integration and mi...Where can you use serverless?  How does it relate to APIs, integration and mi...
Where can you use serverless?  How does it relate to APIs, integration and mi...
Kim Clark
 
Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...
Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...
Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...
VMware Tanzu
 
Tools and Recipes to Replatform Monolithic Apps to Modern Cloud Environments
Tools and Recipes to Replatform Monolithic Apps to Modern Cloud EnvironmentsTools and Recipes to Replatform Monolithic Apps to Modern Cloud Environments
Tools and Recipes to Replatform Monolithic Apps to Modern Cloud Environments
VMware Tanzu
 
Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...
Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...
Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...
VMware Tanzu
 
Implementing zero trust in IBM Cloud Pak for Integration
Implementing zero trust in IBM Cloud Pak for IntegrationImplementing zero trust in IBM Cloud Pak for Integration
Implementing zero trust in IBM Cloud Pak for Integration
Kim Clark
 
IBM Multicloud Management on the OpenShift Container Platform
IBM Multicloud Management on theOpenShift Container PlatformIBM Multicloud Management on theOpenShift Container Platform
IBM Multicloud Management on the OpenShift Container Platform
Michael Elder
 

What's hot (20)

Mastering Application Integration Challenges in Hybrid Cloud Environments
Mastering Application Integration Challenges in Hybrid Cloud EnvironmentsMastering Application Integration Challenges in Hybrid Cloud Environments
Mastering Application Integration Challenges in Hybrid Cloud Environments
 
Agile Integration eBook from 2018
Agile Integration eBook from 2018Agile Integration eBook from 2018
Agile Integration eBook from 2018
 
API First or Events First: Is it a Binary Choice?
API First or Events First: Is it a Binary Choice?  API First or Events First: Is it a Binary Choice?
API First or Events First: Is it a Binary Choice?
 
Craig McLuckie at VMware Tanzu Public Sector Connect 2021
Craig McLuckie at VMware Tanzu Public Sector Connect 2021Craig McLuckie at VMware Tanzu Public Sector Connect 2021
Craig McLuckie at VMware Tanzu Public Sector Connect 2021
 
Interface characteristics - Kim Clark and Brian Petrini
Interface characteristics - Kim Clark and Brian PetriniInterface characteristics - Kim Clark and Brian Petrini
Interface characteristics - Kim Clark and Brian Petrini
 
Agile Integration Architecture: A Containerized and Decentralized Approach to...
Agile Integration Architecture: A Containerized and Decentralized Approach to...Agile Integration Architecture: A Containerized and Decentralized Approach to...
Agile Integration Architecture: A Containerized and Decentralized Approach to...
 
Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail! Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail!
 
Toward Hybrid Cloud Serverless Transparency with Lithops Framework
Toward Hybrid Cloud Serverless Transparency with Lithops FrameworkToward Hybrid Cloud Serverless Transparency with Lithops Framework
Toward Hybrid Cloud Serverless Transparency with Lithops Framework
 
Api more than payload (2021 Update)
Api more than payload (2021 Update)Api more than payload (2021 Update)
Api more than payload (2021 Update)
 
Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...
Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...
Sicurezza integrate nella tua piattaforma Cloud-Native con VMware NSX (Pivota...
 
James Watters Kafka Summit NYC 2019 Keynote
James Watters Kafka Summit NYC 2019 KeynoteJames Watters Kafka Summit NYC 2019 Keynote
James Watters Kafka Summit NYC 2019 Keynote
 
I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...
I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...
I Segreti per Modernizzare con Successo le Applicazioni (Pivotal Cloud-Native...
 
CNCF Meetup - OpenShift Overview
CNCF Meetup - OpenShift OverviewCNCF Meetup - OpenShift Overview
CNCF Meetup - OpenShift Overview
 
Create cross-platform apps that interact with Microsoft Graph and Office 365 ...
Create cross-platform apps that interact with Microsoft Graph and Office 365 ...Create cross-platform apps that interact with Microsoft Graph and Office 365 ...
Create cross-platform apps that interact with Microsoft Graph and Office 365 ...
 
Where can you use serverless?  How does it relate to APIs, integration and mi...
Where can you use serverless?  How does it relate to APIs, integration and mi...Where can you use serverless?  How does it relate to APIs, integration and mi...
Where can you use serverless?  How does it relate to APIs, integration and mi...
 
Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...
Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...
Pivotal Container Service il modo più semplice per gestire Kubernetes in azie...
 
Tools and Recipes to Replatform Monolithic Apps to Modern Cloud Environments
Tools and Recipes to Replatform Monolithic Apps to Modern Cloud EnvironmentsTools and Recipes to Replatform Monolithic Apps to Modern Cloud Environments
Tools and Recipes to Replatform Monolithic Apps to Modern Cloud Environments
 
Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...
Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...
Using Google Cloud Services with Spring Boot and Pivotal Cloud Foundry (Pivot...
 
Implementing zero trust in IBM Cloud Pak for Integration
Implementing zero trust in IBM Cloud Pak for IntegrationImplementing zero trust in IBM Cloud Pak for Integration
Implementing zero trust in IBM Cloud Pak for Integration
 
IBM Multicloud Management on the OpenShift Container Platform
IBM Multicloud Management on theOpenShift Container PlatformIBM Multicloud Management on theOpenShift Container Platform
IBM Multicloud Management on the OpenShift Container Platform
 

Similar to Serverless Computing with Fn Project

Serverless, oui mais pour quels usages ?
Serverless, oui mais pour quels usages ?Serverless, oui mais pour quels usages ?
Serverless, oui mais pour quels usages ?
VMware Tanzu
 
Crossing the river by feeling the stones from legacy to cloud native applica...
Crossing the river by feeling the stones  from legacy to cloud native applica...Crossing the river by feeling the stones  from legacy to cloud native applica...
Crossing the river by feeling the stones from legacy to cloud native applica...
OPNFV
 
STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...
STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...
STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...
Dakiry
 
Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...
Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...
Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...
VMware Tanzu
 
Spring One Tour Amsterdam 2019
Spring One Tour Amsterdam 2019Spring One Tour Amsterdam 2019
Spring One Tour Amsterdam 2019
Lars Rosenquist
 
Automate your NGINX Environment with the Ansible Collection for NGINX Controller
Automate your NGINX Environment with the Ansible Collection for NGINX ControllerAutomate your NGINX Environment with the Ansible Collection for NGINX Controller
Automate your NGINX Environment with the Ansible Collection for NGINX Controller
NGINX, Inc.
 
CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018
Krishna-Kumar
 
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan GoksuSpring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
VMware Tanzu
 
"Wie passen Serverless & Autonomous zusammen?"
"Wie passen Serverless & Autonomous zusammen?""Wie passen Serverless & Autonomous zusammen?"
"Wie passen Serverless & Autonomous zusammen?"
Volker Linz
 
Pivotal Cloud Foundry 2.3: A First Look
Pivotal Cloud Foundry 2.3: A First LookPivotal Cloud Foundry 2.3: A First Look
Pivotal Cloud Foundry 2.3: A First Look
VMware Tanzu
 
Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...
Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...
Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...
Daniel Krook
 
PCF: Platform for a New Era - Kubernetes for the Enterprise - London
PCF: Platform for a New Era - Kubernetes for the Enterprise - LondonPCF: Platform for a New Era - Kubernetes for the Enterprise - London
PCF: Platform for a New Era - Kubernetes for the Enterprise - London
VMware Tanzu
 
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
Ludovic Piot
 
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
VMware Tanzu
 
An architect’s guide to leveraging your incumbency
An architect’s guide to leveraging your incumbencyAn architect’s guide to leveraging your incumbency
An architect’s guide to leveraging your incumbency
Michael Elder
 
IPv6 on Container Plattforms
IPv6 on Container PlattformsIPv6 on Container Plattforms
IPv6 on Container Plattforms
Aarno Aukia
 
Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...
Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...
Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...
Digicomp Academy AG
 
Mastinder singh visualcv_resume
Mastinder singh visualcv_resumeMastinder singh visualcv_resume
Mastinder singh visualcv_resume
Mastinder Singh
 
All the amazing features of asp.net core
All the amazing features of asp.net coreAll the amazing features of asp.net core
All the amazing features of asp.net core
GrayCell Technologies
 
Docker Seattle Meetup, May 2017
Docker Seattle Meetup, May 2017Docker Seattle Meetup, May 2017
Docker Seattle Meetup, May 2017
Stephen Walli
 

Similar to Serverless Computing with Fn Project (20)

Serverless, oui mais pour quels usages ?
Serverless, oui mais pour quels usages ?Serverless, oui mais pour quels usages ?
Serverless, oui mais pour quels usages ?
 
Crossing the river by feeling the stones from legacy to cloud native applica...
Crossing the river by feeling the stones  from legacy to cloud native applica...Crossing the river by feeling the stones  from legacy to cloud native applica...
Crossing the river by feeling the stones from legacy to cloud native applica...
 
STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...
STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...
STANISLAV KOLENKIN, BAQ "K8S: network plugins - issues and performance compar...
 
Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...
Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...
Deploying Applications Using Pivotal Cloud Foundry - Lars Rosenquist & David ...
 
Spring One Tour Amsterdam 2019
Spring One Tour Amsterdam 2019Spring One Tour Amsterdam 2019
Spring One Tour Amsterdam 2019
 
Automate your NGINX Environment with the Ansible Collection for NGINX Controller
Automate your NGINX Environment with the Ansible Collection for NGINX ControllerAutomate your NGINX Environment with the Ansible Collection for NGINX Controller
Automate your NGINX Environment with the Ansible Collection for NGINX Controller
 
CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018
 
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan GoksuSpring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
 
"Wie passen Serverless & Autonomous zusammen?"
"Wie passen Serverless & Autonomous zusammen?""Wie passen Serverless & Autonomous zusammen?"
"Wie passen Serverless & Autonomous zusammen?"
 
Pivotal Cloud Foundry 2.3: A First Look
Pivotal Cloud Foundry 2.3: A First LookPivotal Cloud Foundry 2.3: A First Look
Pivotal Cloud Foundry 2.3: A First Look
 
Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...
Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...
Cloud Native Architectures with an Open Source, Event Driven, Serverless Plat...
 
PCF: Platform for a New Era - Kubernetes for the Enterprise - London
PCF: Platform for a New Era - Kubernetes for the Enterprise - LondonPCF: Platform for a New Era - Kubernetes for the Enterprise - London
PCF: Platform for a New Era - Kubernetes for the Enterprise - London
 
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
[Capitole du Libre] #serverless -  mettez-le en oeuvre dans votre entreprise...
 
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
 
An architect’s guide to leveraging your incumbency
An architect’s guide to leveraging your incumbencyAn architect’s guide to leveraging your incumbency
An architect’s guide to leveraging your incumbency
 
IPv6 on Container Plattforms
IPv6 on Container PlattformsIPv6 on Container Plattforms
IPv6 on Container Plattforms
 
Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...
Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...
Swiss IPv6 Council – Case Study - Deployment von IPv6 in einer Container Plat...
 
Mastinder singh visualcv_resume
Mastinder singh visualcv_resumeMastinder singh visualcv_resume
Mastinder singh visualcv_resume
 
All the amazing features of asp.net core
All the amazing features of asp.net coreAll the amazing features of asp.net core
All the amazing features of asp.net core
 
Docker Seattle Meetup, May 2017
Docker Seattle Meetup, May 2017Docker Seattle Meetup, May 2017
Docker Seattle Meetup, May 2017
 

Recently uploaded

Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
SAP S/4 HANA sourcing and procurement to Public cloud
SAP S/4 HANA sourcing and procurement to Public cloudSAP S/4 HANA sourcing and procurement to Public cloud
SAP S/4 HANA sourcing and procurement to Public cloud
maazsz111
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
Miro Wengner
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Tatiana Kojar
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
ScyllaDB
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
saastr
 
Public CyberSecurity Awareness Presentation 2024.pptx
Public CyberSecurity Awareness Presentation 2024.pptxPublic CyberSecurity Awareness Presentation 2024.pptx
Public CyberSecurity Awareness Presentation 2024.pptx
marufrahmanstratejm
 
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
Data Hops
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
Edge AI and Vision Alliance
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 

Recently uploaded (20)

Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
SAP S/4 HANA sourcing and procurement to Public cloud
SAP S/4 HANA sourcing and procurement to Public cloudSAP S/4 HANA sourcing and procurement to Public cloud
SAP S/4 HANA sourcing and procurement to Public cloud
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
 
Public CyberSecurity Awareness Presentation 2024.pptx
Public CyberSecurity Awareness Presentation 2024.pptxPublic CyberSecurity Awareness Presentation 2024.pptx
Public CyberSecurity Awareness Presentation 2024.pptx
 
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 

Serverless Computing with Fn Project

  • 1. BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH Servlerless Computing with Fn Project Matthias Furrer An introduction to the open source Fn Project
  • 2. Agenda TechEvent Sept 2018 - Servlerless Computing with Fn Project2 09/2018 1. Introduction BaaS and FaaS What is Serverless Computing ? Expectations Use cases Tradeoffs Comparison 2. Fn Project Overview Key characteristics Components Architecture 3. Fn in the cloud Concepts 4. Demo Go function Java function
  • 3. TechEvent Sept 2018 - Servlerless Computing with Fn Project3 09/2018 Introduction
  • 4. BaaS and FaaS TechEvent Sept 2018 - Servlerless Computing with Fn Project4 09/2018 Backend-as-a-Service (BaaS): third-party, API-based services that replace core subsets of functionality in an application. The APIs are provided as a service that auto-scales and operates transparently. BaaS will often be the supporting infrastructure (e.g. provides state) to the stateless functions Functions-as-a-Service (FaaS): provides event-driven computing. Application code with functions is triggered by events or HTTP requests. Developers deploy small units of code to the FaaS, which are executed as needed as discrete actions, scaling without the need to manage servers or any other underlying infrastructure A serverless computing platform may provide one or both of FaaS and BaaS.
  • 5. What is Serverless Computing ? Cloud Native Computing Foundation Definition TechEvent Sept 2018 - Servlerless Computing with Fn Project5 09/2018 Serverless computing does not mean that servers to host and run code are no longer used A concept of building and running applications that do not require server management. A deployment model where applications, bundled as functions, are uploaded to a platform and then executed, scaled, and billed in response to the exact demand needed at the moment Platform management tasks and capabilities are handled by a serverless platform and are completely abstracted away from the developers and IT/operations teams A serverless product can instantly and precisely scale to handle each individual incoming request https://github.com/cncf/wg-serverless/blob/master/whitepapers/serverless- overview/cncf_serverless_whitepaper_v1.0.pdf
  • 6. Expectations The next evolution of cloud systems ? TechEvent Sept 2018 - Servlerless Computing with Fn Project6 09/2018 Consumers of serverless computing no longer need to spend time and resources on server provisioning, maintenance, updates, scaling, and capacity planning No Compute Cost When Idle Individual Services (e.g. endpoints in a microservice) can scale independently and be billed separately, even if they share a common data backend. Reduced packaging and deployment complexity Reduction in lead time and faster time to market Harder to infiltrate - «Try to attack something that only lives for few milliseconds» «Greener» Computing ?
  • 7. Use Cases TechEvent Sept 2018 - Servlerless Computing with Fn Project7 09/2018 Asynchronous, concurrent, easy to parallelize into independent units of work Infrequent or sporadic demand, with large, unpredictable variance in scaling requirements Stateless, ephemeral, without a major need for instantaneous cold start time Examples: – Performing analytics on IoT sensor input messages (e.g. MQTT messages) – Handling stream processing (analyzing or modifying data in motion) – Executing logic in response to database changes (triggers) – Scheduling tasks (cron or batch style invocations)
  • 8. Tradeoffs TechEvent Sept 2018 - Servlerless Computing with Fn Project8 09/2018 Function startup after a period of inactivity may result in performance declines Serverless is “No sysadmin” but it doesn’t mean "No Ops”. Monitoring, deployment, security, networking is still a concern Potential vendor lock-in Execution duration may be limited in FaaS Testing (e.g. load testing), debugging and monitoring can be tricky. However tools are improving
  • 9. Comparison to other deployment models TechEvent Sept 2018 - Servlerless Computing with Fn Project9 09/2018 Source: Cloud Native Computing Foundation WG-Serverless Whitepaper v1.0 • Containers-as-a-Service (CaaS) Maintain full control over infrastructure and get maximum portability. Maximum control, flexibility, reusability and ease of bringing existing containerized apps into the cloud • Platform-as-a-Service (PaaS) Focus on the application and let the platform handle the rest. Easier management and deployment of applications, auto-scaling and pre- configured services for the most common application needs • Functions-as-a-Service (FaaS) Write logic as small pieces of code that respond to a variety of events. Includes the lowest requirement for infrastructure management of any of the cloud native paradigms
  • 10. TechEvent Sept 2018 - Servlerless Computing with Fn Project10 09/2018 Fn Project Overview
  • 11. Key Characteristics www.fnproject.io TechEvent Sept 2018 - Servlerless Computing with Fn Project11 09/2018 Open Source - Available under Apache 2.0 – Active 2700+ commits across 60+ contributors – evolution of the IronFunctions project from iron.io, now mainly maintained by Oracle Platform Independent – Laptop, server, cloud – Can be deployed locally, to any cloud or on-premise Scheduler Independent – Deploy to Kubernetes, Swarm, Mesos, etc. Docker Based – Leverages Docker ecosystem – Containers are primitives
  • 12. Components TechEvent Sept 2018 - Servlerless Computing with Fn Project12 09/2018 Fn Server – Functions-as-a-Service system allowing to build, deploy, and scale their functions into a multi-cloud environment Fn Load Balancer (Fn LB) – Deploy clusters of Fn servers and route traffic to them – Route traffic to nodes where hot functions are running – Distribute load if traffic to a specific function increases Fn FDK’s – Function Development Kits in several languages Flow – build and orchestrate higher level workflows
  • 13. Fn Function Developers View TechEvent Sept 2018 - Servlerless Computing with Fn Project13 09/2018 Small chunk of code wrapped into a container image Functions == Containers : Functions are packaged as containers—so any container can be deployed as a function Fn Function is a container with a set of known characteristics – Short running / Ephemeral – Stateless – Single-purposed – Self-contained Language Support: Java, Go, Python, and Ruby (more coming..) BYOD: “Bring your own Dockerfile” and launch as a function
  • 14. Architecture Function deployment TechEvent Sept 2018 - Servlerless Computing with Fn Project14 09/2018 Fn Service myFunction  r/myApp/myFunction:0.0.2 myFunction:0.0.2 mySourcCode myFunction:0.0.2 Fn Server 1. Builds Container (multistage) – and increments version 2. Pushes Container to registry – if not deployed locally 3. Creates/updates server routes – servers lazy load images
  • 15. Architecture Overview TechEvent Sept 2018 - Servlerless Computing with Fn Project15 09/2018 Source: http://deck.fnproject.io/
  • 16. Architecture Traffic routing TechEvent Sept 2018 - Servlerless Computing with Fn Project16 09/2018 Source: http://deck.fnproject.io/ • If functions are deployed as hot functions, a container is kept alive for 30 seconds (and not restarted for every invocation)
  • 17. Architecture Sync Request Flow TechEvent Sept 2018 - Servlerless Computing with Fn Project17 09/2018 Source: http://deck.fnproject.io/
  • 18. Architecture Async Request Flow TechEvent Sept 2018 - Servlerless Computing with Fn Project18 09/2018 Source: http://deck.fnproject.io/
  • 19. Fn Server Supporting Services TechEvent Sept 2018 - Servlerless Computing with Fn Project19 09/2018 DB, MQ, blob store are all pluggable modules that are thin wrappers around their respective drivers. – DB: MySQL, sqlite3, Postgres – Queue: Redis, Kafka – Registry: Any Docker v2-compliant, even private Metrics/Monitoring – OpenTracing API for metrics – Prometheus support, pluggable backends – Logging via syslog
  • 20. TechEvent Sept 2018 - Servlerless Computing with Fn Project20 09/2018 Fn Flow
  • 21. Fn Flow Sequencing/chaining functions TechEvent Sept 2018 - Servlerless Computing with Fn Project21 09/2018 Build long-running, reliable, scalable functions with rich sets of language-specific primitives – fork-join, chaining, delays and error handling Supports complex parallel processes that are readable and testable (including unit tests) with Standard programming tools Java support – Java 8 CompletableFuture API JS, Python, Go language support on the way!
  • 22. TechEvent Sept 2018 - Servlerless Computing with Fn Project22 09/2018 Fn in the cloud
  • 23. Fn in the cloud TechEvent Sept 2018 - Servlerless Computing with Fn Project23 09/2018 Can be installed on any public cloud IaaS However, when running on IaaS, there is no true ‘pay-per-invocation” benefit Fn can be installed on Kubernetes from the command line using Helm – Preconfigured Helm charts available for Fn service, Fn UI, Fn Flow – Fn LB can be deployed and updated if Fn Server Kubernetes pods are added or removed Runs on Oracle managed Kubernetes service - Oracle Container Engine (OCE)
  • 24. TechEvent Sept 2018 - Servlerless Computing with Fn Project24 09/2018 Demo
  • 25. Links TechEvent Sept 2018 - Servlerless Computing with Fn Project25 09/2018 Main: https://github.com/fnproject/fn Introduction: https://developer.oracle.com/opensource/serverless-with-fn-project Tutorials: https://github.com/fnproject/fn/tree/master/examples/tutorial Documentation: https://github.com/fnproject/fn/blob/master/docs/README.md
  • 26. Matthias Furrer Principal Consultant, Application Integration & SOA matthias.furrer@trivadis.com 09/2018 TechEvent Sept 2018 - Servlerless Computing with Fn Project 26
  • 27. Session Feedback – now TechEvent September 201827 14.09.2018 Please use the Trivadis Events mobile app to give feedback on each session Use "My schedule" if you have registered for a session Otherwise use "Agenda" and the search function If the mobile app does not work (or if you have a Windows smartphone), use your smartphone browser – URL: http://trivadis.quickmobileplatform.eu/ – User name: <your_loginname> (such as "svv") – Password: sent by e-mail...