SlideShare a Scribd company logo
1 of 68
Download to read offline
bit.ly/kubemaster1
1
4K - Kubernetes
dn.dev/4k-kubernetes
with Knative, Kafka and Kamel
dn.dev/4K-kubernetes
Download
dn.dev/knative-cookbook
dn.dev/4K-kubernetes
Kamesh Sampath(devadvocate.yaml)
apiVersion: bio/v1
kind: DeveloperAdvocate
spec:
title: “Director of Developer Experience @ Red Hat”
gde:
expert: cloud
year: 2019
javaDeveloper: true
opensourceContributions:
- Eclipse Che
- Quarkus - Supersonic Subatomic Java
- kubernetes/minikube: Run Kubernetes locally
- Camel K
social-handles:
linkedin: https://linkedin.com/in/kameshsampath
github: kameshsampath (Kamesh Sampath)
twitter: Kamesh Sampath (@kamesh_sampath)
blogs: developers.redhat.com(Kamesh Sampath)
kubectl email --address kameshs@redhat.com
dn.dev/4k-kubernetes
Agenda
Understand four pillars of Cloud Data
Streaming
○ Kubernetes
○ Knative
○ Apache Kafka
○ Camel-K(Kamel)
dn.dev/4k-kubernetes
Why Kubernetes?
dn.dev/4k-kubernetes
Love Thy Mono
Old School New School
dn.dev/4k-kubernetes
A Challenge
Server Hardware
Operating System
Application Server
.war or .ear
Java Virtual Machine
Custom Configuration
Linux Kernel Version & Distribution
Java 1.6.6_45 or Java 1.7.0_67
Weblogic 10.x.y, Tomcat 6.x.y, JBoss EAP 6.x.y
JDBC driver, datasource, JMS queue, users
Have you ever had “/” vs “” break your app? Or perhaps needed a unique version of a JDBC
driver? Or had a datasource with a slightly misspelled JNDI name? Or received a patch for the
JVM or app server that broke your code?
Containerize
Your
App
dn.dev/4k-kubernetes
Email
MyApp.war has been tested with the following
On my Windows 7 desktop
JDK 1.8.43
Wildfly 9
Configuration:
Datasource: MySQLDS
Tested with: mysql-connector-java-5.1.31-bin.jar
Production Environment
Red Hat Enterprise Linux 6.2
JRE 1.7.3
WebSphere 8.5.5
Oracle 9
dn.dev/4k-kubernetes
Dockerfile
Container Guest OS
Java App Server
custom configuration
FROM centos/wildfly
COPY xyz.xml /opt/myserver/configuration/
COPY mysql-connector-java-5.1.31-bin.jar /opt/wildfly/standalone/deployments/
COPY mysql-sample-ds.xml /opt/wildfly/standalone/deployments/
COPY myapp/target/your.war /opt/wildfly/standalone/deployments/
your.war
dependencies
dn.dev/4k-kubernetes
DevOps Challenges for Multiple Containers
▪ How to scale?
▪ How to avoid port conflicts?
▪ How to manage them on multiple
hosts?
▪ What happens if a host has trouble?
▪ How to keep them running?
▪ How to update them?
▪ Rebuild Container Images?
Node
Node Node
Node Node
Logger
Node
dn.dev/4k-kubernetes
https://www.openshift.com/https://kubernetes.io
@kubernetesio @openshift
dn.dev/4k-kubernetes
▪ Greek for “Helmsman,” also the root of the word
“Governor” (from latin: gubernator)
▪ Container orchestrator
▪ Supports multiple cloud and bare-metal
environments
▪ Inspired by Google’s experience with containers
▪ Open source, written in Go
▪ Manage applications, not machines
Meet Kubernetes
dn.dev/4k-kubernetes
History of Microservices
Continuous
Integration
via XP
1999
AWS EC2
2006
DropWizard
May 2011
Agile
Manifesto
Feb
2001
NETFLIX
to AWS
2010
Ribbon
March
2012
Hystrix
March 2012
Eureka
July 2012
Microservices
Assess
Thoughtworks
Radar
March 2012
Spring Boot
Sept 2013
Microservices
Defined
Thoughtworks
Fowler, Lewis
March 2014
Kubernetes
June 2014
Java EE6
2009
DevOps
2009
Docker
March
2013
Vert.x
June
2011
2
0
1
5
dn.dev/4k-kubernetes
https://www.youtube.com/watch?v=GCtpncA0Ea0&feature=youtu.be&t=1031
2015
Launch 1000+
Containers
Audience
Claims a
Container
dn.dev/4k-kubernetes
What is Kubernetes?
dn.dev/4k-kubernetes
Pods
A group of whales is commonly referred to
as a pod and a pod usually consists a group
of whales that have bonded together either
because of biological reasons or through
friendships developed between two or
more whales.
In many cases a typical whale pod consists
of anywhere from 2 to 30 whales or more.*
*http://www.whalefacts.org/what-is-a-group-of-whales-called/
dn.dev/4k-kubernetes
Kubernetes JargonsKubernetes Jargons
dn.dev/4k-kubernetes
Pod Replicaset/
Deployment
Service Label
✓ 1+ containers
✓ Shared IP
✓ Shared storage (ephemeral)
✓ Shared resources
✓ Shared lifecycle
✓ The Desired
State - replicas,
pod template:
health checks,
resources,
image
✓ Grouping of
pods (acting as
one) has stable
virtual IP and
DNS name
✓ Key/Value pairs
associated with
Kubernetes objects
(env=production)
Kubernetes Terms
Persistent
Volume
✓ Network
available storage
✓ PVs and PVCs
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node Node
Dev
Ops
api
etcd
scheduler
controllers
Kubernetes Cluster - Nodes
kubelet kubelet kubelet
kubeletkubeletkubelet
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node Node
Dev
Ops
api
etcd
scheduler
controllers
Kubernetes Cluster - Declarative
kubelet kubelet kubelet
kubeletkubeletkubelet
image: repo/mytomcat:v1
replicas: 4
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node Node
Dev
Ops
api
etcd
scheduler
controllers
Kubernetes Cluster - 4 Tomcats
kubelet kubelet kubelet
kubeletkubeletkubelet
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node Node
Dev
Ops
api
etcd
scheduler
controllers
Kubernetes Cluster - Pod Fail
kubelet kubelet kubelet
kubeletkubeletkubelet
X
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node Node
Dev
Ops
api
etcd
scheduler
controllers
Kubernetes Cluster - Correcting
kubelet kubelet kubelet
kubeletkubeletkubelet
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node Node
Dev
Ops
api
etcd
scheduler
controllers
Kubernetes Cluster - Node Fail
kubelet kubelet kubelet
kubeletkubeletkubelet
X
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node
Dev
Ops
api
etcd
scheduler
controllers
kubelet kubelet
kubeletkubeletkubelet
Kubernetes Cluster - Pods Replaced
dn.dev/4k-kubernetes
Master
Node Node
Istio
proxy
Node
Node Node
Dev
Ops
api
etcd
scheduler
controllers
Kubernetes Cluster - New Node
kubelet kubelet
kubeletkubeletkubelet
Node kubelet
dn.dev/4k-kubernetes
Serverless
https://www2.eecs.berkeley.edu/Pubs/TechRpts/2019/EECS-2019-3.pdf
dn.dev/4k-kubernetes
dn.dev/4k-kubernetes
Serverless Computing
“Serverless computing refers to the concept of building and
running applications that do not require server management. It
describes a finer-grained deployment model where
applications, bundled as one or more functions, are uploaded
to a platform and then executed, scaled, and billed in response
to the exact demand needed at the moment.”
The CNCF takes steps toward serverless computing
dn.dev/4k-kubernetes
Why we need Serverless ??
Agility in any cloud environment
Event driven cloud native applications
Focus on business differentiation
Consistent and scalable operations
Resource and Cost
Optimization
dn.dev/4k-kubernetes
Serverless Computing
“Serverless computing refers to the concept of building and
running applications that do not require server management. It
describes a finer-grained deployment model where
applications, bundled as one or more functions, are uploaded
to a platform and then executed, scaled, and billed in response
to the exact demand needed at the moment.”
The CNCF takes steps toward serverless computing
dn.dev/4k-kubernetes
Short History of Serverless
AWS
S3
March
2006
AWS
Lambda
November
2014
AWS
EC2
August
2006
Serverless
Described
Thoughtworks
August 2016
Serverless
Coined
October
2012
Serverless
Assess
Thoughtworks
Radar
April 2016
AWS
Dynamo
DB
January
2012
Firebase
September
2011
Iron.io
July
2011
Google
Cloud
Function
Feb 2016
Azure
Functions
Mar 2016
Pivotal
Riff
Dec 2017
Oracle
Functions
Sept 2016
IBM
Bluemix
OpenWhisk
Feb 2016
Oracle
Fn Project
Oct 2017
dn.dev/4k-kubernetes
Architectural Styles
Services Microservices Serverless
• Autonomous
• Loosely Coupled
• YourControl
• Known Programming Model
• Very Matured
• Single Purpose
• Stateless
• Independently Scalable
• Automated
• Your/Cloud Control
• Known Programming Model
• Matured
• Ephemeral
• Cloud Control
• Short-Lived Processes
• New Programming Model
• Event-Driven Async
• Immature
dn.dev/4k-kubernetes
When to choose what ?
Services Microservices Serverless
• Autonomous
• Loosely Coupled
• Single Purpose
• Stateless
• Independently Scalable
• Automated
• Single Action
• Ephemeral
Your Control Cloud Control
Portability
dn.dev/4k-kubernetes
Microservices Serverless
Functions
Your Control
Long-Lived Processes
Known Programming Model
Often Sync Request-Response
Mature:
IDE Integration
Debuggers
Tracers
Monitoring
CI/CD
Cloud Control
Short-Lived Processes
New Programming Model
Event-Driven Async
Immature:
?
dn.dev/4k-kubernetes
Microservices Serverless
Functions
Your Control
Long-Lived Processes
Known Programming Model
Often Sync Request-Response
Mature:
IDE Integration
Debuggers
Tracers
Monitoring
CI/CD
Cloud Control
Short-Lived Processes
New Programming Model
Event-Driven Async
Immature:
?
Knative
dn.dev/4k-kubernetes
Serving
https://knative.dev/docs/serving
@KnativeProject
dn.dev/4k-kubernetes
Capabilities
● Rapid application deployment
● Scale-to-zero
○ No pod == no memory
● Scale-from-zero
○ Traffic spike starts N pods
● Configurations and Revisions
○ Deployment snapshots
○ Built-in Blue/Green
● Routing and Network configurations
dn.dev/4k-kubernetes
Demo
Serving
dn.dev/4k-kubernetes
Eventing
https://knative.dev/docs/eventing
@KnativeProject
dn.dev/4k-kubernetes
Exploring Knative Eventing
● Eventing Sources
○ Producers of events e.g. Github, Camel, GCP
Pub/Sub,CronJob
● Eventing Channels
○ Event forward or persistence layer e.g. Apache Kafka
Channel, GCP Pub/Sub , InMemory
● Brokers
○ Event mesh
● Triggers
○ Connecting Broker and Subscriber
○ Filtering Events
dn.dev/4k-kubernetes
Exploring Knative Eventing (contd.,)
● Event Registries
○ Repository of available event types that can be
used with Broker
● Event Sink
○ Kubernetes Service
○ Knative Service
○ Channel
○ Broker
dn.dev/4k-kubernetes
CNCF, CloudEvents and Serverless
https://cloudevents.io/
https://www.cncf.io/
dn.dev/4k-kubernetes
Demo
Eventing
dn.dev/4k-kubernetes
Data Streaming
dn.dev/4k-kubernetes
Apache Kafka
https://kafka.apache.org
@apachekafka
dn.dev/4k-kubernetes
Apache Kafka ?
● Developed at Linkedin back in 2010, open sourced
in 2011
● Designed to be fast, scalable, durable and available
● Ability to handle huge number of consumers
● Distributed by nature
● Messages are sent to and received from a topic
dn.dev/4k-kubernetes
DevOps challenges - Apache Kafka
● Installation and Configuration is not simple
● Configuring a new cluster:
○ Configuring single brokers
○ Pay attention to conflicting configuration
● Updating a cluster:
○ Updating every single broker
○ Rolling restart of Brokers
○ Rollout and synchronization of Apache Zookeeper
dn.dev/4k-kubernetes
http://strimzi.io/
@strimziio
Strimzi
dn.dev/4k-kubernetes
Topic & User
operators
Zookeeper Cluster
Kafka Cluster
Cluster Operator
Kafka
Custom Resource
Deployment Apache Kafka
on Kubernetes
dn.dev/4k-kubernetes
When to use Apache Kafka ?
● Kafka is a great tool for event-driven architectures
○ Backbone for event driven systems
○ Streaming platform
● Events can have different forms
○ Absolute: Temperature is 21 degrees celsius
○ Deltas: Temperature increased by 1 degree celsius
● Event streams
○ Event sourcing
○ Audit trails
○ Log and metrics analytics
dn.dev/4k-kubernetes
Demo
dn.dev/4k-kubernetes
Enterprise Integration
dn.dev/4k-kubernetes
https://camel.apache.org/
@ApacheCamel
dn.dev/4k-kubernetes
What is Apache Camel
•The swiss knife of integration
•>10 years of development - still one of the most active
Apache projects
•Java-based integration framework that can be installed on
multiple runtimes: Spring-Boot, JEE, JBoss, Karaf,
Standalone, ...
•Based on Enterprise Integration Patterns
•Supports 250+ components
•Uses a powerful DSL
•Can integrate anything
dn.dev/4k-kubernetes
K
https://camel.apache.org/
@ApacheCamel
Camel K
dn.dev/4k-kubernetes
K
https://camel.apache.org/
@ApacheCamel
dn.dev/4k-kubernetes
Apache Camel-K ?
● Lightweight integration platform to run
Apache Camel integrations as
Kubernetes applications
● Run integrations as serverless
applications
● Ability to integrate with Knative
Channels
dn.dev/4k-kubernetes
Development Environment
kamel CLI
Remote Cloud
Integration
Definition
Camel-K
Operator
Live Update
Developer Workflow
dn.dev/4k-kubernetes
Demo
K
dn.dev/4k-kubernetes
The End
dn.dev/4k-kubernetes
Resources
Tutorials
•Kubernetes Tutorial - dn.dev/kube-tutorial
•Knative Tutorial – dn.dev/knative-tutorial
•Istio Tutorial - dn.dev/istio-tutorial
•Quarkus Tutorial - dn.dev/quarkus-tutorial
•Tekton Tutorial - dn.dev/tekton-tutorial
Master Courses - dn.dev/master
DevNation Tech Talks - dn.dev/upcoming
dn.dev/4K-kubernetes
Download
dn.dev/knative-cookbook
dn.dev/4K-kubernetes
Download
dn.dev/k8spatterns1
dn.dev/4k-kubernetes
Download
bit.ly/mono2microdb
dn.dev/4k-kubernetes
bit.ly/istiobook
Download
dn.dev/4k-kubernetes
bit.ly/javamicroservicesbook
Download
dn.dev/4k-kubernetes
The End

More Related Content

More from CodeOps Technologies LLP

CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...
CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...
CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...CodeOps Technologies LLP
 
WRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESS
WRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESSWRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESS
WRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESSCodeOps Technologies LLP
 
Training And Serving ML Model Using Kubeflow by Jayesh Sharma
Training And Serving ML Model Using Kubeflow by Jayesh SharmaTraining And Serving ML Model Using Kubeflow by Jayesh Sharma
Training And Serving ML Model Using Kubeflow by Jayesh SharmaCodeOps Technologies LLP
 
Deploy Microservices To Kubernetes Without Secrets by Reenu Saluja
Deploy Microservices To Kubernetes Without Secrets by Reenu SalujaDeploy Microservices To Kubernetes Without Secrets by Reenu Saluja
Deploy Microservices To Kubernetes Without Secrets by Reenu SalujaCodeOps Technologies LLP
 
Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...
Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...
Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...CodeOps Technologies LLP
 
YAML Tips For Kubernetes by Neependra Khare
YAML Tips For Kubernetes by Neependra KhareYAML Tips For Kubernetes by Neependra Khare
YAML Tips For Kubernetes by Neependra KhareCodeOps Technologies LLP
 
Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...
Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...
Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...CodeOps Technologies LLP
 
Monitor Azure Kubernetes Cluster With Prometheus by Mamta Jha
Monitor Azure Kubernetes Cluster With Prometheus by Mamta JhaMonitor Azure Kubernetes Cluster With Prometheus by Mamta Jha
Monitor Azure Kubernetes Cluster With Prometheus by Mamta JhaCodeOps Technologies LLP
 
Functional Programming in Java 8 - Lambdas and Streams
Functional Programming in Java 8 - Lambdas and StreamsFunctional Programming in Java 8 - Lambdas and Streams
Functional Programming in Java 8 - Lambdas and StreamsCodeOps Technologies LLP
 
Distributed Tracing: New DevOps Foundation
Distributed Tracing: New DevOps FoundationDistributed Tracing: New DevOps Foundation
Distributed Tracing: New DevOps FoundationCodeOps Technologies LLP
 
"Distributed Tracing: New DevOps Foundation" by Jayesh Ahire
"Distributed Tracing: New DevOps Foundation" by Jayesh Ahire  "Distributed Tracing: New DevOps Foundation" by Jayesh Ahire
"Distributed Tracing: New DevOps Foundation" by Jayesh Ahire CodeOps Technologies LLP
 
Improve customer engagement and productivity with conversational ai
Improve customer engagement and productivity with conversational aiImprove customer engagement and productivity with conversational ai
Improve customer engagement and productivity with conversational aiCodeOps Technologies LLP
 
Text semantics with azure text analytics cognitive services
Text semantics with azure text analytics cognitive servicesText semantics with azure text analytics cognitive services
Text semantics with azure text analytics cognitive servicesCodeOps Technologies LLP
 
Build your model using azure custom vision and deploy it in a webapp
Build your model using azure custom vision and deploy it in a webappBuild your model using azure custom vision and deploy it in a webapp
Build your model using azure custom vision and deploy it in a webappCodeOps Technologies LLP
 
Quantum machine learning with microsoft q# at AI Dev Day
Quantum machine learning with microsoft q# at AI Dev DayQuantum machine learning with microsoft q# at AI Dev Day
Quantum machine learning with microsoft q# at AI Dev DayCodeOps Technologies LLP
 
Understanding Azure Face API at AI Dev Day Conference
Understanding Azure Face API at AI Dev Day ConferenceUnderstanding Azure Face API at AI Dev Day Conference
Understanding Azure Face API at AI Dev Day ConferenceCodeOps Technologies LLP
 
Go Serverless with Java and Azure Functions
Go Serverless with Java and Azure FunctionsGo Serverless with Java and Azure Functions
Go Serverless with Java and Azure FunctionsCodeOps Technologies LLP
 

More from CodeOps Technologies LLP (20)

CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...
CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...
CREATING REAL TIME DASHBOARD WITH BLAZOR, AZURE FUNCTION COSMOS DB AN AZURE S...
 
WRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESS
WRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESSWRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESS
WRITE SCALABLE COMMUNICATION APPLICATION WITH POWER OF SERVERLESS
 
Training And Serving ML Model Using Kubeflow by Jayesh Sharma
Training And Serving ML Model Using Kubeflow by Jayesh SharmaTraining And Serving ML Model Using Kubeflow by Jayesh Sharma
Training And Serving ML Model Using Kubeflow by Jayesh Sharma
 
Deploy Microservices To Kubernetes Without Secrets by Reenu Saluja
Deploy Microservices To Kubernetes Without Secrets by Reenu SalujaDeploy Microservices To Kubernetes Without Secrets by Reenu Saluja
Deploy Microservices To Kubernetes Without Secrets by Reenu Saluja
 
Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...
Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...
Leverage Azure Tech stack for any Kubernetes cluster via Azure Arc by Saiyam ...
 
YAML Tips For Kubernetes by Neependra Khare
YAML Tips For Kubernetes by Neependra KhareYAML Tips For Kubernetes by Neependra Khare
YAML Tips For Kubernetes by Neependra Khare
 
Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...
Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...
Must Know Azure Kubernetes Best Practices And Features For Better Resiliency ...
 
Monitor Azure Kubernetes Cluster With Prometheus by Mamta Jha
Monitor Azure Kubernetes Cluster With Prometheus by Mamta JhaMonitor Azure Kubernetes Cluster With Prometheus by Mamta Jha
Monitor Azure Kubernetes Cluster With Prometheus by Mamta Jha
 
Jet brains space intro presentation
Jet brains space intro presentationJet brains space intro presentation
Jet brains space intro presentation
 
Functional Programming in Java 8 - Lambdas and Streams
Functional Programming in Java 8 - Lambdas and StreamsFunctional Programming in Java 8 - Lambdas and Streams
Functional Programming in Java 8 - Lambdas and Streams
 
Distributed Tracing: New DevOps Foundation
Distributed Tracing: New DevOps FoundationDistributed Tracing: New DevOps Foundation
Distributed Tracing: New DevOps Foundation
 
"Distributed Tracing: New DevOps Foundation" by Jayesh Ahire
"Distributed Tracing: New DevOps Foundation" by Jayesh Ahire  "Distributed Tracing: New DevOps Foundation" by Jayesh Ahire
"Distributed Tracing: New DevOps Foundation" by Jayesh Ahire
 
Improve customer engagement and productivity with conversational ai
Improve customer engagement and productivity with conversational aiImprove customer engagement and productivity with conversational ai
Improve customer engagement and productivity with conversational ai
 
Text semantics with azure text analytics cognitive services
Text semantics with azure text analytics cognitive servicesText semantics with azure text analytics cognitive services
Text semantics with azure text analytics cognitive services
 
Build your model using azure custom vision and deploy it in a webapp
Build your model using azure custom vision and deploy it in a webappBuild your model using azure custom vision and deploy it in a webapp
Build your model using azure custom vision and deploy it in a webapp
 
Quantum machine learning with microsoft q# at AI Dev Day
Quantum machine learning with microsoft q# at AI Dev DayQuantum machine learning with microsoft q# at AI Dev Day
Quantum machine learning with microsoft q# at AI Dev Day
 
Understanding Azure Face API at AI Dev Day Conference
Understanding Azure Face API at AI Dev Day ConferenceUnderstanding Azure Face API at AI Dev Day Conference
Understanding Azure Face API at AI Dev Day Conference
 
Java & Microservices in Azure
Java & Microservices in AzureJava & Microservices in Azure
Java & Microservices in Azure
 
Go Serverless with Java and Azure Functions
Go Serverless with Java and Azure FunctionsGo Serverless with Java and Azure Functions
Go Serverless with Java and Azure Functions
 
Tracing Java Applications on Azure
Tracing Java Applications on AzureTracing Java Applications on Azure
Tracing Java Applications on Azure
 

Recently uploaded

Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxRTS corp
 
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfExploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfkalichargn70th171
 
SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?Alexandre Beguel
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZABSYZ Inc
 
Post Quantum Cryptography – The Impact on Identity
Post Quantum Cryptography – The Impact on IdentityPost Quantum Cryptography – The Impact on Identity
Post Quantum Cryptography – The Impact on Identityteam-WIBU
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Angel Borroy López
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...confluent
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingShane Coughlan
 
2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shardsChristopher Curtin
 
What’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesWhat’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesVictoriaMetrics
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdfEnhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdfRTS corp
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf31events.com
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesKrzysztofKkol1
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxRTS corp
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 
SoftTeco - Software Development Company Profile
SoftTeco - Software Development Company ProfileSoftTeco - Software Development Company Profile
SoftTeco - Software Development Company Profileakrivarotava
 
eSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolseSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolsosttopstonverter
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Rob Geurden
 

Recently uploaded (20)

Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
 
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfExploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
 
SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZ
 
Post Quantum Cryptography – The Impact on Identity
Post Quantum Cryptography – The Impact on IdentityPost Quantum Cryptography – The Impact on Identity
Post Quantum Cryptography – The Impact on Identity
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
 
2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards
 
What’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesWhat’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 Updates
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdfEnhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 
SoftTeco - Software Development Company Profile
SoftTeco - Software Development Company ProfileSoftTeco - Software Development Company Profile
SoftTeco - Software Development Company Profile
 
eSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolseSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration tools
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...
 

4K - Kubernetes with Knative, Kafka and Kamel