SlideShare ist ein Scribd-Unternehmen logo
1 von 53
Downloaden Sie, um offline zu lesen
©	2016	Xavient	Information	Systems
Cloud	Computing	and	DCOS
©	2016	Xavient	Information	Systems
Agenda
ü IaaS
ü PaaS
ü Technology	Overview
©	2016	Xavient	Information	Systems
IaaS
©	2016	Xavient	Information	Systems
Infrastructure	as	a	Serviceis	a	form	of	cloud	computing	that	provides	virtualized	computing	
resources.
Public	Cloud
• AWS
• Azure
• GCE
Private	Cloud
• VMWare
• OpenStack
• Apache	CloudStack
IaaS
©	2016	Xavient	Information	Systems
PaaS/DCOS
©	2016	Xavient	Information	Systems
• Platform	as	a	service (PaaS)	is	a	category	of	cloud	computing	services	that	provides	a	
platform	allowing	customers	to	develop,	run,	and	manage	applications	without	the	
complexity	of	building	and	maintaining	the	infrastructure	typically	associated	with	
developing	and	launching	an	app
• DCOS is	a	new	kind	of	operating	system	that	organizes	all	of	your	machines,	VMs,	and	cloud	
instances	into	a	single	pool	of	intelligently	and	dynamically	shared	resources.	It	runs	on	top	
of	and	enhances	any	modern	version	of	Linux
Paas and	DCOS
©	2016	Xavient	Information	Systems
No	to	Static	Partitioning	
• Underutilize
• Does	not	scale
• Hard	to	deal	with	failures
©	2016	Xavient	Information	Systems
Mesos	Ecosystem
©	2016	Xavient	Information	Systems
Architecture
©	2016	Xavient	Information	Systems
Cluster	configuration	example
©	2016	Xavient	Information	Systems
Software	on	Mesos
Aurorais	a	service	scheduler	that	runs	on	top	of	Mesos,	enabling	you	to	run	long-
running	services	that	take	advantage	of	Mesos'	scalability,	fault-tolerance,	and	resource	
isolation.
Marathonis	a	private	PaaS	built	on	Mesos.	It	automatically	handles	hardware	or	
software	failures	and	ensures	that	an	app	is	“always	on”.
Hadoop Running	Hadoop	on	Mesos	distributes	MapReduce	jobs	efficiently	across	an	
entire	cluster.
Spark is	a	fast	and	general-purpose	cluster	computing	system	which	makes	parallel	jobs	
easy	to	write.
Chronos is	a	distributed	job	scheduler	that	supports	complex	job	topologies.	It	can	be	
used	as	a	more	fault-tolerant	replacement	for	Cron.
Jenkins is	a	continuous	integration	server.	The	mesos-jenkinsplugin	allows	it	to	
dynamically	launch	workers	on	a	Mesos	cluster	depending	on	the	workload.
Cassandrais	a	performant	and	highly	available	distributed	database.	Linear	scalability	
and	proven	fault-tolerance	on	commodity	hardware	or	cloud	infrastructure	make	it	the	
perfect	platform	for	mission-critical	data.
ElasticSearchis	a	distributed	search	engine.	Mesos	makes	it	easy	to	run	and	scale.
©	2016	Xavient	Information	Systems
Mesos	Architecture	in	HA	mode	
Behind	the	scenes,	Apache	Mesos	uses Apache	ZooKeeper,	a	distributed	configuration	store	to	persist	its	state.	The	
"state"	of	Mesos	includes	everything	from	configuration	to	the	status	and	load	of	individual	Mesos	nodes,	as	well	as	
frameworks	like	Cassandra-Mesos.
©	2016	Xavient	Information	Systems
PaaS	on	Mesos
©	2016	Xavient	Information	Systems
Marathon	use
• Constraints	control	where	apps	run	to	allow	optimizing	for	either	fault	tolerance	(by	spreading	a	task	
out	on	multiple	nodes)	or	locality	(by	running	all	of	an	applications	tasks	on	the	same	node).	There	are	
there	different	parts	a)	field	b)	operator	c)optional
"constraints":	[["rack_id",	"CLUSTER",	"rack-1"]]	,	"constraints":	[["hostname",	"CLUSTER",	"a.specific.node.com"]]
"constraints":	[["rack_id",	"GROUP_BY"]]
Example:	https://github.com/mesosphere/marathon/tree/master/examples
curl	-i -H	'Content-Type:	application/json'	-d	@<filename.json>	localhost:8080/v2/apps
©	2016	Xavient	Information	Systems
• Reservation	problem
• Data	Persistence	problem
• Where	is	the	security	?	Authentication	and	Authorization	
• Monitoring	
• Framework	Rate	Limiting
• Vendor	support
• Managed	services
Let’s	get	practical
©	2016	Xavient	Information	Systems
• Resources	are	reserved	for	roles	and	roles	used	to	reserve	resources
• Static	Reservation
mesos-slave	 --master=<ip>:<port>	 --resources="cpus:4;mem:2048;cpus(ads):8;mem(ads):4096”
“8	CPUs	and	4096	MB	of	RAM	reserved	for adson	this	slave.”
• Dynamic	reservation	in	Mesos	>=	0.23.0
• Create	through	Frameworkand	Operator API
Framework Operator
Reservation	- mechanisms	to reserve resources	in	specific	slaves
©	2016	Xavient	Information	Systems
• A	mechanism	to	create	a	persistent	volume	from	disk	resources
• Persistent	volumes	enable	stateful	services	such	as	HDFS and	Cassandra to	store	their	data	
within	Mesos
• Authorization	is	must	to	create	persistent	volumes
• Persistent	volumes	can	only	be	created	from reserveddisk	resources,	whether	it	be	
statically	reserved	or	dynamically	reserved	- Important
• Create	through	Framework	and	Operator	API	(Same	as	Dynamic	Reservation)
https://mesosphere.github.io/marathon/docs/persistent-volumes.html
https://mesosphere.github.io/marathon/docs/external-volumes.html
An	external	storage	service	enables	your	apps	to	be	more	fault-tolerant.	If	a	host	fails,	Marathon	
reschedules	your	app	on	another	host,	along	with	its	associated	data,	without	user	intervention.
https://github.com/emccode/rexray
Persistent	Volumes
©	2016	Xavient	Information	Systems
Persistent	volume
©	2016	Xavient	Information	Systems
• Authentication	is	disabled	by	default.	When	authentication	is	enabled,	operators	can	
configure	Mesos	to	either	use	the	default	authentication	module	or	to	use	
a customauthentication	module.
• Authentication	permits	only	trusted	entities	to	interact	with	a	Mesos	cluster
• Authentication	can	be	used	at	framework,	agent	and	operator	level
• Configure	authentication	during	the	mesos master	and	slave	start	
• Authorization	,	local	and	custom
• Configure	the	actions	that	certain	principals	are	allowed	to	perform
http://mesos.apache.org/documentation/latest/authentication/
http://mesos.apache.org/documentation/latest/authorization/
*	The	default	Mesos	authentication	module	uses	the Cyrus	SASLlibrary.	SASL	is	a	flexible	framework	that	allows	two	
endpoints	to	authenticate	with	each	other	using	a	variety	of	methods.	By	default,	Mesos	usesCRAM-MD5 authentication.
Security
©	2016	Xavient	Information	Systems
What’s	going	on	?
©	2016	Xavient	Information	Systems
Mesos	and	Containers
"If a Docker application is a Lego brick, Kubernetes would be like a kit for building
the Millennium Falcon and the Mesos cluster would be like a whole Star Wars
universe made of Legos." ~ Solomon
©	2016	Xavient	Information	Systems
Mesos	+	Docker	+	Kubernetes
Mesos	clusters	can	be	deployed	on	nearly	every	IaaS	cloud	provider	infrastructure	or	in	your	own	
physical	datacenter.	Kubernetes	on	Mesos	runs	on-top	of	that	and	therefore	allows	you	to	easily	
move	Kubernetes	workloads	from	one	of	these	environments	to	the	other.
http://kubernetes.io/docs/getting-started-guides/mesos/
©	2016	Xavient	Information	Systems
Cassandra	and	Mesos/Marathon
https://mesosphere.github.io/cassandra-mesos/
https://github.com/mesosphere/dcos-cassandra-service
https://docs.mesosphere.com/1.7/usage/services/cassandra/install-and-customize/
©	2016	Xavient	Information	Systems
https://mesosphere.com/blog/2015/11/05/jenkins-dcos-mesos/
Jenkins
©	2016	Xavient	Information	Systems
• Aurora	vs.	Marathon	http://code.hootsuite.com/marathon-vs-aurora-a-high-level-
comparison/
• Mesos	and	Kubernetes	http://stackoverflow.com/questions/26705201/whats-the-
difference-between-apaches-mesos-and-googles-kubernetes
• Jenkins	and	Mesos	http://www.slideshare.net/carlossg/ci-and-cd-at-scale-scaling-jenkins-
with-docker-and-apache-mesos
• Bloomberg	and	Monitoring	
http://schd.ws/hosted_files/mesosconna2016/98/SeamlessMonitoringForMesosClusters.pd
f
• Uber	and	Cassandra	http://schd.ws/hosted_files/mesosconna2016/60/mesoscon-uber.pdf
• Mesoscon 2016	
https://www.youtube.com/playlist?list=PLGeM09tlguZQVL7ZsfNMffX9h1rGNVqnC
• Jenkins	alternate	solution	https://github.com/HubSpot/Blazar
• Mesos	oversubscription	http://mesos.apache.org/documentation/latest/oversubscription/
• https://support.mesosphere.com/hc/en-us/categories/200383389-Technical
Read
©	2016	Xavient	Information	Systems
©	2016	Xavient	Information	Systems
Cloud	Foundry
Cloud	Foundry	is	an	open-source	platform	as	a	service	(PaaS)	that	provides	you	with	a	
choice	of	clouds,	developer	frameworks,	and	application	services
©	2016	Xavient	Information	Systems
Architecture	- PCF
©	2016	Xavient	Information	Systems
RedHat OpenShift (on	Radar)
©	2016	Xavient	Information	Systems
Q&A
©	2016	Xavient	Information	Systems
©	2016	Xavient	Information	Systems
Xavient’s Capabilities:	 Big	Data	and	Analytics
©	2016	Xavient	Information	Systems
Agenda
ü Xavient	Introduction
• Company	Snapshot
• Global	Presence
• Our	Differentiators
ü Xavient	Big	Data	&	BI	Capabilities
ü Case	Studies
©	2016	Xavient	Information	Systems
Company	Snapshot
Who	We	Are
• Founded in US in 2002 | Global Scale |
ExponentialGrowth
• Fortune 200 clientele | Partner of choice
for 4 out of Top 5 CSPs inUS
• Comprehensive Technology Coverage &
Personalized Service
What	We	Do
• Enable Enterprise Class Solutions on
Web, Mobility, Open Source, Cloud,
BigData
• Focus on Telecom, Retail, Healthcare
& Banking
• Optimize BAU SDLC Practices
How	We	Deliver
• Customer First Approach - Long term
ongoing engagements are testimony to
our success
• Talent Farming – Thought leadership |
Bootcamps | Embedded Factory
• Maturity & Agility – Technology
Innovation | Reusable Best Practices |
Early Adopters
©	2016	Xavient	Information	Systems
Global	Presence
Tampa,	 FL
Atlanta,	GA
Herndon,	VA
Sterling,	 VA
Bethpage,	 NY
Frisco,	TX
Englewood,	 CO
Denver,	 CO
St.	Louis,	MO
Bellevue,	 WA
Simi	Valley,	CA	
(Headquarters)
Noida
Bengaluru
OnshoreDelivery	Center	/	
Client	Location
OffshoreDelivery	Center
Mississauga,	 Canada
©	2016	Xavient	Information	Systems
Xavient	– Enabling	Digital	Transformation
Mobility
Open	Source
Big	Data
IoT
UI/UX
• Data	ingestion	and	analysis	from	sensors,	
edges	devices	and	smart	phone	apps.	
• Transition	heavyweight,	costly	and	composite	
systems	to	Open	Source	Stack	based	
Enterprise	class	solutions	
• Custom	UI/UX	based	on	the	business	
needs.	
• Delivered	innovative	solutions	handling	
large	volume	of	data
• Mobility	solution	accelerators	&	
frameworks to	reduce	costs	&	go-to-market	
faster
©	2016	Xavient	Information	Systems
Our	Differentiators
People
Pricing
Processes
Partnerships
Productivity
Amongst	the	best	global	
IT	talent	
Mature	&	Agile	processes
In-house	R&D	center,	TSG® for	
innovationand	automation
Leveraging	partnerships	and	
strategic	alliances
Customer	centric	Global Delivery
Highly-skilled	consultants &	SMEs Low	attrition
Excel	in	DevOps	methodologies Extra	bandwidth	of	10-15%
Big	enough	to	scale,	small	
enough to	align
Lead	with	Solutions	
and	Value
Turning	client	challenges	into	success	
stories
Flexible	pricing	models	for	cost	efficiency
©	2016	Xavient	Information	Systems
Xavient’s	Big	Data	and	BI	Capabilities
©	2016	Xavient	Information	Systems
Xavient’s	Big	Data	and	BI	Practice	Differentiators	
Enterprise	ready	solution	with	complete	
security	in	place.
100+ Experts	working	on	Big	Data/BI	
projects.	
Comprehensive	experience	across	the	
data	stack
Ready	to	use	accelerators
Strategic	alliances	with	leading	vendorsDiversified	Industry	Exposure
©	2016	Xavient	Information	Systems
Xavient	end	to	end	approach	
Application
Security
Compute
Resource	
Management
Storage
©	2016	Xavient	Information	Systems
Services	through	EVERY	phase	of	adoption
Xavient	is	focused	to	provide	long	term	partnership	and	support	in	all	phases	of	your	Big	Data	
projects
Services
Architecture
Development
Implementation
Operation
Managed	
Services
©	2016	Xavient	Information	Systems
Xavient’s	Big	Data	Team
Developer	and	Data	Scientist
10+	years	industry	Experience
3	years	Big	Data	experience
Data	Architect/Engineer
10+	years	industry	Experience
3	years	Big	Data	experience
Sr.	Engagement	Manager
8+	years	industry	Experience
2+	years	Big	Data	experience
Sr.	Consultant
6+	years	industry	Experience
2	years	Big	Data	experience
• Develop data	ingestion	flow	in	batch	
and	real	time
• Design	and	develop	statistical	
procedures	and	algorithms	around	
data	sources
• Recommend	 and	build	models	for	
various	data	studies,	data	discovery	
and	hypothesis
• Work	 with	developers	to	integrate	
and	pre-process	 data	for	inputs	into	
models
• Data	cleanup	and	transformation	 as	
preparation	for	analysis
• Focus	 areas	include:	statistics,	
applied	math,	machine	learning,	
model	design	and	development
• Configure and	setup	various	
development	and	data	science	tools.
• Platform	architecture	 analysis	and	
design,	including:	data	center	layout,	
hardware and	network	
considerations	
• Security	model	design	and	
implementation	for	authentication,	
authorization,	administration	and	
audit
• Define	recommended	processes	 for	
data	ingestion,	management,	
transformation	 and	egress.
• Perform	 installation	for	enterprise-
scale	cluster	environments.
• Resource management	at	cluster	
and	infrastructure	level.
• Facilitate	the	selection	 of	
appropriate	Big	Data	technology	
and	tools
• Conduct technical	workshops	
• Define	the	overall	architecture	 for	
the	solutions/business	 applications	
and	prepare	the	environment
• Initial	day-to-day	cluster	operations
• Overall	responsibility	for	project	
success
• Primary	management contact	 for	
the	customer.
• Coordinate	all	the	Professional	
Services	resources	
• Ensure	the	project	is	delivered	
according	to	schedule	and	budget
• Report	status	 and	manage	
escalations.
• Lead	the	implementation	of	
business	use	case(s).
• Provide	expertise	and	guidance	
during		the	project	lifecycle.
• Provide	design	and	development	
expertise	for	large-scale,	clustered	
data	processing	 systems
• Develop	ingest,	transformation	 and	
egress	capabilities	leveraging	latest	
tools	 such	as	Kafka,	 Storm,	 Pig,	Hive,	
etc.
• Resolve	technical	issues	in	the	
environment
• Assist	 with	the	preparation	of	
technical	deliverables,	and	review	
and	demonstrate	 the	system	 and	
applications
• Provide	technical support	either	
onsite	or	remote.
©	2016	Xavient	Information	Systems
Case	Studies
©	2016	Xavient	Information	Systems
Big	Data	Case	1	:	Enterprise	Social	Networking	and	
Collaboration	Platform	
• Real time data streaming
• Search capability
• Front end UI
• Build recommendationmodel based on user search
Xavient’s	SolutionXavient’s	Solution
• End to end design and implementation of enterprise
ready solution/app to provide social networking
platform
• Mobile app solution
• Chat, Message exchange capabilities by leveraging
NoSQL databases
• Resource management at the enterpriselevel
Technologies: Kafka, Storm, HDFS, Hive, HBase, Elastic
Search, Java, ApacheMesos/Mesosphere, Apache Myraid
Xavient’s	Solution
• Real time reports& analyticswith granular data
• Health checkand monitoringofkeyareas
• Informed and quickdecisions
• Both online & offline mode access
• Multiple Currencyselection (USD& local currency)
Key	Benefits	
Business	Requirement	
An	Enterprise	Social	
Networking	and	
Collaboration	Platform
©	2016	Xavient	Information	Systems
Enterprise	Based	Distributed	Architecture
(Multiple	Web	&	Multiple	App)Load	
Balancer
WEB-n	
ENCACHE
WEB-1	
ENCACHE
APP	
ENCACHE
ELASTIC	
SEARCH-1	
ELASTIC	
SEARCH-n	
……
……
……
……
……
……
……
PostgreSQL
-1
UTILITY	
SERVER
DOC	SERVER
CHAT	 REDIS	SERVER
……
……
PostgreSQL
-n	
……
……
Mongo	DB-
1	
Mongo	DB-
n	
……
……
©	2016	Xavient	Information	Systems
Big	Data	Case	2	:	Implementing	 a	True	Enterprise	Data	Lake
Business	Requirement	
• Store all the data at one place
• Eliminate datasilos
• Build COE
Xavient’s	SolutionXavient’s	Solution
• Developed	overall	roadmap	and	design	for	enterprise	
‘data	lake.’
• POC	and	Hadoop	knowledge	sharing	sessions
• Security	setup	for	strong	authentication	and	
authorization
• Data	ingestion	from	RDBMS	to	HDFS/Hive.	H
• Defined	plan	and	helped	implement	a	CoE
Technologies used: HDP, Hive, Sqoop, AWS, Oozie
Xavient’s	Solution
• Nomore silosof data
• Fast response time delivered for long running
queries
• Cost per TB dropped
• Internal Hadoop asa Service cloud
• Store data for longer period oftime
• New technologystackincreasesemployeeretention
Key	Benefits	
About	Client
Client is a leading Satellite TV
Service Provider in US
©	2016	Xavient	Information	Systems
• Operational	dashboards
• Customer	scorecards
• CDR	analysis
• Proactive	Maintenance
• Infrastructure	investment
• Bandwidth	allocation
• Product	development
EDW
MPP
CRM
ERP
DATA	SOURCES
DATA	REPOS ANALYSIS
Billing	Data
Subscriber	
Data
Product	
Catalog
Network	Data
Clickstream
Online	Chat
Sensor	Data
Server	Logs
Call	Detail	
Records
Merchant	
Listing
DMP
Social	Media
Ingest
Sqoop
Flume
HDFS	Put
WEB	HDFS
Hadoop	
Cluster
Batch
Map
Reduce
Script
Pig
SQL
Hive
Online
Hbase
Accumulo
Real-Time
Storm
In-Memory
Spark
Others
Metadata	Management	HCatalog
Multitenant	Processing:	YARN
Hadoop	Operating	System	
Linear	Scale
Compute	&	HDFS	Storage	
Governance
tag,	filter	&	
process
Operations	(Ambari)
Security	(Knox,	Kerberos,	Apache	Ranger)
1
N
. . . . . . .
.
. .
.
. .
. . . . . . . . . .
. . .. . . .. . .
Big	Data	Case	2	:	Enterprise	Data	Lake	(Contd..)
©	2016	Xavient	Information	Systems
Big	Data	Case	3	:	Drop	call	and	network	change	monitoring	in	
Real	Time
.	
Business	Requirement	
• Xavient’s	SolutionXavient’s	Solution Xavient’s	SolutionKey	Benefits	
• Store	all	the	CDR	data	at	one	place	“Data	Lake”
• Real	time	monitoring	of	dropped	calls
• Real	time	monitoring	of	network	changes	
• Data	ingestion	flow	was	built	using	flume,	kafka and	
storm	to	store	data	in	HDFS,	Hive	and	HBase	in	
combination	with	Apache	Phoenix
• Solr and	Banana	delivered	the	dashboard	capabilities
• Apache	Phoenix	was	to	used	to	run	queries	against	
HBase	to	find	drop	calls	and	network	change
• Longer	data	retention
• Faster	response	time	from	the	larger	data	set	
• Cost	reduced	per	TB	because	of	Hadoop	stack
• Effective	and	fast	alerting	during	the	outages
• Ability	to	run	predictive	analysis	based	on	real	time	
alerting
.	
About	Client
Client is a leading wireless
networkoperator in the US
©	2016	Xavient	Information	Systems
Data	Flow	and	Architecture
HDFS
Input	Feed
Hive
Flume,	Kafka,	
Storm
Search	UI
Query	UI
Output	Feed
Search	Index
©	2016	Xavient	Information	Systems
Case	Studies	:	Business	Intelligence
©	2016	Xavient	Information	Systems
BI	Case	1	:	Executive	 Dashboard	For	Strategic	Insights	
Business	Challenges	Business	Requirement	
Xavient’s	Solution Xavient’s	SolutionXavient’s	Solution Key	Benefits	
• Multi-channel	dashboard
• Real	time	analytics	on	Cross-functional	data	with	visual	representation	
• Quicker	decision	making	for	Senior	Executives	
• Cross	platform	dashboard	reporting	application	
• Configurable	background	sync	for	offline	data	access
• Customized	KPIs	providing	bird’s	eye	view	
• Dynamic	reporting	from	multiple	digital		marketing	
channels	viz.	revenue,	billings,	costs	and	number	of	
campaigns	
Technologies used: Informatica, Oracle, HTML5, Jquery,
Java, Objective C
• Real	time	reports	&	analytics	with	granular	data
• Health	check	and	monitoring	of	key	areas
• Informed	and	quick	decisions
• Both	online	&	offline	mode	access
• Multiple	Currency	selection	(USD	&	local	currency)
About	Client
The client is a Digital Marketing
& Advertising ServiceProvider
©	2016	Xavient	Information	Systems
BI	Case	2:	Inventory	and	Merchandising	App
Business	Challenges	Business	Requirement
Xavient’s	SolutionXavient’s	Solution Key	Benefits	
• Cross-Platform	mobile	application	that	gives	at-a-glance	view	
of	all	Sales,	Inventory	and	Gross	margin	for	all	products	in	a	
store	from	anywhere
• Performance	dashboard	for	associates	to	measure,	monitor	
and	act	on	the	sellable	articles
• Extend	platform	to	cater	to	corporate	vendors	for	various	
products
• Interface	the	mobile	app	with	SAP	for	metrics	and	reporting
• developed	a	mobile	application	to:
• Browse		product	catalogue
• Check	inventory	reports	and	status
• Track	sales	(actual	and	planned)
• Read	customer	reviews
• Find	a	store
• View	current	promotions	of	retailer
Technologies	used:	PHP/	Java	Script	
/MySQL	Objective	C	(for	iOS	app)	Java	(for	
Android	app)
• Convenient		and	Better	customer	service
• Simple	user	friendly	design	layout
• Customized	platforms
• Competitive	pricing
• Better	Sales	and	Stock	management
• Speed	scripting	to	increase	Time	to	Market
• More	value	added	services	
About	Client
One of the leading retail chains
the in US.
©	2016	Xavient	Information	Systems
Thank	You

Weitere ähnliche Inhalte

Was ist angesagt?

Easy Docker Deployments with Mesosphere DCOS on Azure
Easy Docker Deployments with Mesosphere DCOS on AzureEasy Docker Deployments with Mesosphere DCOS on Azure
Easy Docker Deployments with Mesosphere DCOS on AzureMesosphere Inc.
 
Practical PaaS presentation
Practical PaaS presentationPractical PaaS presentation
Practical PaaS presentationhmalphettes
 
Mesosphere & Magnetic: Take the pain out of running complex and critical serv...
Mesosphere & Magnetic: Take the pain out of running complex and critical serv...Mesosphere & Magnetic: Take the pain out of running complex and critical serv...
Mesosphere & Magnetic: Take the pain out of running complex and critical serv...Mesosphere Inc.
 
Doing Big Data for Real with Docker
Doing Big Data for Real with Docker  Doing Big Data for Real with Docker
Doing Big Data for Real with Docker Mesosphere Inc.
 
IoT on DCOS - Scala By the Bay 2015
IoT on DCOS - Scala By the Bay 2015IoT on DCOS - Scala By the Bay 2015
IoT on DCOS - Scala By the Bay 2015Brenden Matthews
 
Discover the all new Mesosphere DC/OS 1.10
Discover the all new Mesosphere DC/OS 1.10Discover the all new Mesosphere DC/OS 1.10
Discover the all new Mesosphere DC/OS 1.10Mesosphere Inc.
 
Introduction to DC/OS
Introduction to DC/OSIntroduction to DC/OS
Introduction to DC/OSAmita Ekbote
 
Container Con Europe 2016 - Container Orchestration: Which Conductor?
Container Con Europe 2016 - Container Orchestration: Which Conductor?Container Con Europe 2016 - Container Orchestration: Which Conductor?
Container Con Europe 2016 - Container Orchestration: Which Conductor?Michael Bright
 
Re-Platforming All the Things
Re-Platforming All the ThingsRe-Platforming All the Things
Re-Platforming All the ThingsMesosphere Inc.
 
Introduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud FoundryIntroduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud FoundryManuel Silveyra
 
A First Look at vSphere Integrated Containers and Photon Platform
A First Look at vSphere Integrated Containers and Photon PlatformA First Look at vSphere Integrated Containers and Photon Platform
A First Look at vSphere Integrated Containers and Photon PlatformDan Wendlandt
 
Openstack Quantum yahoo meetup 1 23-13
Openstack Quantum yahoo meetup 1 23-13Openstack Quantum yahoo meetup 1 23-13
Openstack Quantum yahoo meetup 1 23-13Dan Wendlandt
 
From Cloud Computing to Platform as a Service – BCS Oxfordshire
From Cloud Computing to Platform as a Service – BCS OxfordshireFrom Cloud Computing to Platform as a Service – BCS Oxfordshire
From Cloud Computing to Platform as a Service – BCS OxfordshireAndy Piper
 
DC/OS: The definitive platform for modern apps
DC/OS: The definitive platform for modern appsDC/OS: The definitive platform for modern apps
DC/OS: The definitive platform for modern appsDatio Big Data
 
OpenStack + VMware: Everything You Need to Know (Kilo-edition)
OpenStack + VMware: Everything You Need to Know (Kilo-edition)OpenStack + VMware: Everything You Need to Know (Kilo-edition)
OpenStack + VMware: Everything You Need to Know (Kilo-edition)Dan Wendlandt
 
OpenStack vs VMware vCloud
OpenStack vs VMware vCloudOpenStack vs VMware vCloud
OpenStack vs VMware vCloudRoozbeh Shafiee
 
Introducing Cloud Development with Mantl
Introducing Cloud Development with MantlIntroducing Cloud Development with Mantl
Introducing Cloud Development with MantlCisco DevNet
 
OpenStack + VMware at the Hong Kong OpenStack Summit
OpenStack + VMware at the Hong Kong OpenStack SummitOpenStack + VMware at the Hong Kong OpenStack Summit
OpenStack + VMware at the Hong Kong OpenStack SummitDan Wendlandt
 

Was ist angesagt? (20)

Easy Docker Deployments with Mesosphere DCOS on Azure
Easy Docker Deployments with Mesosphere DCOS on AzureEasy Docker Deployments with Mesosphere DCOS on Azure
Easy Docker Deployments with Mesosphere DCOS on Azure
 
Practical PaaS presentation
Practical PaaS presentationPractical PaaS presentation
Practical PaaS presentation
 
Mesosphere & Magnetic: Take the pain out of running complex and critical serv...
Mesosphere & Magnetic: Take the pain out of running complex and critical serv...Mesosphere & Magnetic: Take the pain out of running complex and critical serv...
Mesosphere & Magnetic: Take the pain out of running complex and critical serv...
 
Doing Big Data for Real with Docker
Doing Big Data for Real with Docker  Doing Big Data for Real with Docker
Doing Big Data for Real with Docker
 
IoT on DCOS - Scala By the Bay 2015
IoT on DCOS - Scala By the Bay 2015IoT on DCOS - Scala By the Bay 2015
IoT on DCOS - Scala By the Bay 2015
 
Discover the all new Mesosphere DC/OS 1.10
Discover the all new Mesosphere DC/OS 1.10Discover the all new Mesosphere DC/OS 1.10
Discover the all new Mesosphere DC/OS 1.10
 
Introduction to DC/OS
Introduction to DC/OSIntroduction to DC/OS
Introduction to DC/OS
 
Container Con Europe 2016 - Container Orchestration: Which Conductor?
Container Con Europe 2016 - Container Orchestration: Which Conductor?Container Con Europe 2016 - Container Orchestration: Which Conductor?
Container Con Europe 2016 - Container Orchestration: Which Conductor?
 
Re-Platforming All the Things
Re-Platforming All the ThingsRe-Platforming All the Things
Re-Platforming All the Things
 
Introduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud FoundryIntroduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud Foundry
 
A First Look at vSphere Integrated Containers and Photon Platform
A First Look at vSphere Integrated Containers and Photon PlatformA First Look at vSphere Integrated Containers and Photon Platform
A First Look at vSphere Integrated Containers and Photon Platform
 
Openstack Quantum yahoo meetup 1 23-13
Openstack Quantum yahoo meetup 1 23-13Openstack Quantum yahoo meetup 1 23-13
Openstack Quantum yahoo meetup 1 23-13
 
China user group keynote
China user group keynoteChina user group keynote
China user group keynote
 
From Cloud Computing to Platform as a Service – BCS Oxfordshire
From Cloud Computing to Platform as a Service – BCS OxfordshireFrom Cloud Computing to Platform as a Service – BCS Oxfordshire
From Cloud Computing to Platform as a Service – BCS Oxfordshire
 
DC/OS: The definitive platform for modern apps
DC/OS: The definitive platform for modern appsDC/OS: The definitive platform for modern apps
DC/OS: The definitive platform for modern apps
 
OpenStack + VMware: Everything You Need to Know (Kilo-edition)
OpenStack + VMware: Everything You Need to Know (Kilo-edition)OpenStack + VMware: Everything You Need to Know (Kilo-edition)
OpenStack + VMware: Everything You Need to Know (Kilo-edition)
 
OpenStack vs VMware vCloud
OpenStack vs VMware vCloudOpenStack vs VMware vCloud
OpenStack vs VMware vCloud
 
VMware Integrated OpenStack
VMware Integrated OpenStackVMware Integrated OpenStack
VMware Integrated OpenStack
 
Introducing Cloud Development with Mantl
Introducing Cloud Development with MantlIntroducing Cloud Development with Mantl
Introducing Cloud Development with Mantl
 
OpenStack + VMware at the Hong Kong OpenStack Summit
OpenStack + VMware at the Hong Kong OpenStack SummitOpenStack + VMware at the Hong Kong OpenStack Summit
OpenStack + VMware at the Hong Kong OpenStack Summit
 

Andere mochten auch

Mesos vs kubernetes comparison
Mesos vs kubernetes comparisonMesos vs kubernetes comparison
Mesos vs kubernetes comparisonKrishna-Kumar
 
Anticipatory analytics - Bob Hallahan VP Xavient
Anticipatory analytics - Bob Hallahan VP XavientAnticipatory analytics - Bob Hallahan VP Xavient
Anticipatory analytics - Bob Hallahan VP XavientBobhallahan
 
Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...
Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...
Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...Alexey Bokov
 
Sparse Distributed Representations: Our Brain's Data Structure
Sparse Distributed Representations: Our Brain's Data Structure Sparse Distributed Representations: Our Brain's Data Structure
Sparse Distributed Representations: Our Brain's Data Structure Numenta
 
Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)Databricks
 
Kubernetes on Top of Mesos on Top of DCOS
Kubernetes on Top of Mesos on Top of DCOSKubernetes on Top of Mesos on Top of DCOS
Kubernetes on Top of Mesos on Top of DCOSStefan Schimanski
 
Open stack + Cloud Foundry: Palo Alto Meetup February 2015
Open stack + Cloud Foundry: Palo Alto Meetup February 2015Open stack + Cloud Foundry: Palo Alto Meetup February 2015
Open stack + Cloud Foundry: Palo Alto Meetup February 2015Joshua McKenty
 
Platform as a Service with Kubernetes and Mesos
Platform as a Service with Kubernetes and Mesos Platform as a Service with Kubernetes and Mesos
Platform as a Service with Kubernetes and Mesos Miguel Zuniga
 
Real time data ingestion and Hybrid Cloud
Real time data ingestion and Hybrid CloudReal time data ingestion and Hybrid Cloud
Real time data ingestion and Hybrid CloudNeeraj Sabharwal
 
Elastic jenkins with mesos and dcos (2016 01-20)
Elastic jenkins with mesos and dcos (2016 01-20)Elastic jenkins with mesos and dcos (2016 01-20)
Elastic jenkins with mesos and dcos (2016 01-20)Mesosphere Inc.
 
Fast, Flexible Application Development with Oracle Database Cloud Service
Fast, Flexible Application Development with Oracle Database Cloud ServiceFast, Flexible Application Development with Oracle Database Cloud Service
Fast, Flexible Application Development with Oracle Database Cloud ServiceGustavo Rene Antunez
 
Cloud Native Infrastructure Management Solutions Compared
Cloud Native Infrastructure Management Solutions ComparedCloud Native Infrastructure Management Solutions Compared
Cloud Native Infrastructure Management Solutions ComparedWork-Bench
 
Artificial Intelligence Presentation
Artificial Intelligence PresentationArtificial Intelligence Presentation
Artificial Intelligence PresentationAdarsh Pathak
 
Databricks Meetup @ Los Angeles Apache Spark User Group
Databricks Meetup @ Los Angeles Apache Spark User GroupDatabricks Meetup @ Los Angeles Apache Spark User Group
Databricks Meetup @ Los Angeles Apache Spark User GroupPaco Nathan
 
Artificial Intelligence(AI).
Artificial Intelligence(AI).Artificial Intelligence(AI).
Artificial Intelligence(AI).Md. Afif Al Mamun
 
Cluster management with Kubernetes
Cluster management with KubernetesCluster management with Kubernetes
Cluster management with KubernetesSatnam Singh
 

Andere mochten auch (19)

Mesos vs kubernetes comparison
Mesos vs kubernetes comparisonMesos vs kubernetes comparison
Mesos vs kubernetes comparison
 
Xavient - DiP
Xavient - DiPXavient - DiP
Xavient - DiP
 
Xavient overview
Xavient overviewXavient overview
Xavient overview
 
Anticipatory analytics - Bob Hallahan VP Xavient
Anticipatory analytics - Bob Hallahan VP XavientAnticipatory analytics - Bob Hallahan VP Xavient
Anticipatory analytics - Bob Hallahan VP Xavient
 
Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...
Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...
Azure: Docker Container orchestration, PaaS ( Service Farbic ) and High avail...
 
Sparse Distributed Representations: Our Brain's Data Structure
Sparse Distributed Representations: Our Brain's Data Structure Sparse Distributed Representations: Our Brain's Data Structure
Sparse Distributed Representations: Our Brain's Data Structure
 
Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)
 
Kubernetes on Top of Mesos on Top of DCOS
Kubernetes on Top of Mesos on Top of DCOSKubernetes on Top of Mesos on Top of DCOS
Kubernetes on Top of Mesos on Top of DCOS
 
PuttingItAllTogether
PuttingItAllTogetherPuttingItAllTogether
PuttingItAllTogether
 
Open stack + Cloud Foundry: Palo Alto Meetup February 2015
Open stack + Cloud Foundry: Palo Alto Meetup February 2015Open stack + Cloud Foundry: Palo Alto Meetup February 2015
Open stack + Cloud Foundry: Palo Alto Meetup February 2015
 
Platform as a Service with Kubernetes and Mesos
Platform as a Service with Kubernetes and Mesos Platform as a Service with Kubernetes and Mesos
Platform as a Service with Kubernetes and Mesos
 
Real time data ingestion and Hybrid Cloud
Real time data ingestion and Hybrid CloudReal time data ingestion and Hybrid Cloud
Real time data ingestion and Hybrid Cloud
 
Elastic jenkins with mesos and dcos (2016 01-20)
Elastic jenkins with mesos and dcos (2016 01-20)Elastic jenkins with mesos and dcos (2016 01-20)
Elastic jenkins with mesos and dcos (2016 01-20)
 
Fast, Flexible Application Development with Oracle Database Cloud Service
Fast, Flexible Application Development with Oracle Database Cloud ServiceFast, Flexible Application Development with Oracle Database Cloud Service
Fast, Flexible Application Development with Oracle Database Cloud Service
 
Cloud Native Infrastructure Management Solutions Compared
Cloud Native Infrastructure Management Solutions ComparedCloud Native Infrastructure Management Solutions Compared
Cloud Native Infrastructure Management Solutions Compared
 
Artificial Intelligence Presentation
Artificial Intelligence PresentationArtificial Intelligence Presentation
Artificial Intelligence Presentation
 
Databricks Meetup @ Los Angeles Apache Spark User Group
Databricks Meetup @ Los Angeles Apache Spark User GroupDatabricks Meetup @ Los Angeles Apache Spark User Group
Databricks Meetup @ Los Angeles Apache Spark User Group
 
Artificial Intelligence(AI).
Artificial Intelligence(AI).Artificial Intelligence(AI).
Artificial Intelligence(AI).
 
Cluster management with Kubernetes
Cluster management with KubernetesCluster management with Kubernetes
Cluster management with Kubernetes
 

Ähnlich wie Cloud Computing, Docker, Mesos, DCOS, Container, Big Data, Paas

Comparative Analysis of OVH, Cloudflare, and VMware Modules_.pptx
Comparative Analysis of OVH, Cloudflare, and VMware Modules_.pptxComparative Analysis of OVH, Cloudflare, and VMware Modules_.pptx
Comparative Analysis of OVH, Cloudflare, and VMware Modules_.pptxRohan Nale
 
Cloud Computing..What is it? and what does it mean?
Cloud  Computing..What is it? and  what does it mean?Cloud  Computing..What is it? and  what does it mean?
Cloud Computing..What is it? and what does it mean?rosiarose
 
Cloud computing
Cloud computingCloud computing
Cloud computingrosiarose
 
AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek Mah...
AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek  Mah...AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek  Mah...
AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek Mah...Amazon Web Services Korea
 
Basics of cloud - AWS.pptx
Basics of cloud - AWS.pptxBasics of cloud - AWS.pptx
Basics of cloud - AWS.pptxJayesh Patil
 
Introduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptxIntroduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptxNadir Arain
 
Difference between Iaas Saas Paas.pptx
Difference between Iaas Saas Paas.pptxDifference between Iaas Saas Paas.pptx
Difference between Iaas Saas Paas.pptxHarshAgrawal211
 
Jelastic Overview: Technical and Business Benefits
Jelastic Overview: Technical and Business BenefitsJelastic Overview: Technical and Business Benefits
Jelastic Overview: Technical and Business BenefitsTetiana Fydorenchyk
 
Cloud Computing vs Virtualization From Desktop to Server
Cloud Computing vs Virtualization From Desktop to ServerCloud Computing vs Virtualization From Desktop to Server
Cloud Computing vs Virtualization From Desktop to ServerFadly Rizal Ahmad Fadzil
 
Final+Version+Of+Today+Presentation.ppt
Final+Version+Of+Today+Presentation.pptFinal+Version+Of+Today+Presentation.ppt
Final+Version+Of+Today+Presentation.pptAnsarHasas1
 
Evolution to the Hybrid Data Center
Evolution to the Hybrid Data CenterEvolution to the Hybrid Data Center
Evolution to the Hybrid Data CenterCisco Canada
 
Azure Stack Fundamentals
Azure Stack FundamentalsAzure Stack Fundamentals
Azure Stack FundamentalsCenk Ersoy
 
Choosing a dev ops paas platform
Choosing a dev ops paas platformChoosing a dev ops paas platform
Choosing a dev ops paas platformJohn Mathon
 

Ähnlich wie Cloud Computing, Docker, Mesos, DCOS, Container, Big Data, Paas (20)

Upmc tpdev3
Upmc tpdev3Upmc tpdev3
Upmc tpdev3
 
Cloud computing
Cloud computing Cloud computing
Cloud computing
 
Comparative Analysis of OVH, Cloudflare, and VMware Modules_.pptx
Comparative Analysis of OVH, Cloudflare, and VMware Modules_.pptxComparative Analysis of OVH, Cloudflare, and VMware Modules_.pptx
Comparative Analysis of OVH, Cloudflare, and VMware Modules_.pptx
 
Cloud Computing..What is it? and what does it mean?
Cloud  Computing..What is it? and  what does it mean?Cloud  Computing..What is it? and  what does it mean?
Cloud Computing..What is it? and what does it mean?
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek Mah...
AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek  Mah...AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek  Mah...
AWS Innovate 2016- Planning a Phased Cloud Migration Strategy - Abhishek Mah...
 
Basics of cloud - AWS.pptx
Basics of cloud - AWS.pptxBasics of cloud - AWS.pptx
Basics of cloud - AWS.pptx
 
Introduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptxIntroduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptx
 
Rama1
Rama1Rama1
Rama1
 
Difference between Iaas Saas Paas.pptx
Difference between Iaas Saas Paas.pptxDifference between Iaas Saas Paas.pptx
Difference between Iaas Saas Paas.pptx
 
Jelastic Overview: Technical and Business Benefits
Jelastic Overview: Technical and Business BenefitsJelastic Overview: Technical and Business Benefits
Jelastic Overview: Technical and Business Benefits
 
Cloud Computing vs Virtualization From Desktop to Server
Cloud Computing vs Virtualization From Desktop to ServerCloud Computing vs Virtualization From Desktop to Server
Cloud Computing vs Virtualization From Desktop to Server
 
cloud computing
cloud computingcloud computing
cloud computing
 
Final+Version+Of+Today+Presentation.ppt
Final+Version+Of+Today+Presentation.pptFinal+Version+Of+Today+Presentation.ppt
Final+Version+Of+Today+Presentation.ppt
 
Cloud Computing using OpenStack
Cloud Computing using OpenStackCloud Computing using OpenStack
Cloud Computing using OpenStack
 
XaaS Overview
XaaS OverviewXaaS Overview
XaaS Overview
 
Evolution to the Hybrid Data Center
Evolution to the Hybrid Data CenterEvolution to the Hybrid Data Center
Evolution to the Hybrid Data Center
 
Azure Stack Fundamentals
Azure Stack FundamentalsAzure Stack Fundamentals
Azure Stack Fundamentals
 
Introduction to Windows Azure
Introduction to Windows AzureIntroduction to Windows Azure
Introduction to Windows Azure
 
Choosing a dev ops paas platform
Choosing a dev ops paas platformChoosing a dev ops paas platform
Choosing a dev ops paas platform
 

Kürzlich hochgeladen

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 

Kürzlich hochgeladen (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 

Cloud Computing, Docker, Mesos, DCOS, Container, Big Data, Paas