SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Downloaden Sie, um offline zu lesen
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...

Weitere ähnliche Inhalte

Was ist angesagt?

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 EnvironmentsSam Garforth
 
Agile Integration eBook from 2018
Agile Integration eBook from 2018Agile Integration eBook from 2018
Agile Integration eBook from 2018Kim 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 2021VMware 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 PetriniKim 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 FrameworkLibbySchulze
 
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 KeynoteJames 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 OverviewSumit 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 EnvironmentsVMware 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 IntegrationKim 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 PlatformMichael Elder
 

Was ist angesagt? (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
 

Ähnlich wie 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 2019Lars 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 ControllerNGINX, Inc.
 
CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018Krishna-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 GoksuVMware 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 LookVMware 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 - LondonVMware 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 incumbencyMichael Elder
 
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
 
IPv6 on Container Plattforms
IPv6 on Container PlattformsIPv6 on Container Plattforms
IPv6 on Container PlattformsAarno Aukia
 
Mastinder singh visualcv_resume
Mastinder singh visualcv_resumeMastinder singh visualcv_resume
Mastinder singh visualcv_resumeMastinder 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 coreGrayCell Technologies
 
Docker Seattle Meetup, May 2017
Docker Seattle Meetup, May 2017Docker Seattle Meetup, May 2017
Docker Seattle Meetup, May 2017Stephen Walli
 

Ähnlich wie 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
 
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...
 
IPv6 on Container Plattforms
IPv6 on Container PlattformsIPv6 on Container Plattforms
IPv6 on Container Plattforms
 
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
 

Kürzlich hochgeladen

Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 

Kürzlich hochgeladen (20)

Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 

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...