SlideShare a Scribd company logo
Manage MySQL like a devops
sysadmin
Webinar – Oct 2012
Frédéric Descamps
www.percona.com
Who am I ?
Frédéric Descamps
@lefred
http://about.be/lefred
Managing MySQL since 3.23 (as far as I
remember)
devops believer
www.percona.com
To start with...
Let's use
devops like
slides...
4
Let's use devops
like slides...
5
from
6
7
to
8
9
devops
is a movement willing to help
aligning IT with company
needs
(starting by aligning devs and ops)
@endemics - Gildas Le Nadan - “The Devops movement”, Mixit Lyon 2011
10
devops is about
communication !
11
devops is about
communication !
between
dev and ops
12
devs ops
Small and frequent
successful iterations
This is one of the most fundamental ideas in devops:
the feedback loop !
13
We can say that
devops is bringing
together people and
practices from
development and
operations
14
We can say that
devops is bringing
together people and
practices from
development and
operations
I am a happy dev !I am a happy op !
15
devops now
=
●
being professional
●
improving the collaboration
by increasing trust and
respect
16
/me likes !
HOW can I reach that
goal ?
17
devops
requires
visibility !
18
Everybody should have
a status overview
Is there any problem ?
How are the test going ?
How is performance ?
19
devops
is about
CAMS
20
CULTURE
AUTOMATION
MEASUREMENT
SHARING
@botchagalupe @damonedwards
http://www.opscode.com/blog/2010/07/16/what-devops-means-to-me/
21
What
techniques
can I use ?
22
Monitoring
Infrastructure as
Code
Continuous
Improvement
23
What about DBAs ?
24
Join the team,
follow the
movement !
25
You are already
between devs
and ops
26
You are already
between devs
and ops
I am a happy dba !
27
But we are still
closer to the
dark side of the
force: sysadmins
28
But we are still
closer to the
dark side of the
force: sysadmins
29
How can we
apply devops
ideas to our dba
job ?
30
1. communication
2. configuration
management
3. testing
4. visibility
31
1. Communication
Usually DEVS
communicate
with managers,
quality managers,
products managers, ...
32
OPS
“communicate”
with support,
ISP's and... their
servers
33
DBAs don't communicate
34
The interaction between
developers, sysadmins,
dbas and all the actors
should begin from the start
of any projects
35
36
37
Discuss everything database
related with developers and
sysadmins:
●
disks and raid design
●
schema design & partitions
●
additional columns & indexes
●
tables repair, ...
38
2. configuration
management
Can we automate DBAs
job ?
Should we ?
Even if we have only one
database ?
39
40
41
A lot of things to configure
●
binaries
●
databases
●
configs
●
cron jobs
●
monitoring
●
grants
●
replication
42
Documentation is
needed and must be up
to date
43
Needs to be reproducible
quickly without missing
anything !
44
Keep track of any changes
Mind the gap
45
3. testing
Test
every changes
every new package...
EVERYTHING
46
4. visibility
Expose monitoring, trending,
test results and project status
to EVERYONE in your
company!!
Everybody should know why the
database is slooooow !
47
Use all these metrics to plan
ahead all the changes !
NOT ALONE BUT WITH
EVERYBODY
48
notions
practices
ideas
methodologies
49
We are DBAs we
work with data,
we need
something more
concrete !
50
We are DBA's
we work with
data, we need
something more
concrete !
51
TRUE !
52
communication
53
Use an agile
method to
handle your
projects
54
For operations a
good method is
kanban
55
56
57
Use dashboards
and make them
available to
EVERYONE
58
share all your
dashboards with
everybody in
your company
59
configuration
management
60
consider your
infrastructure as
code
61
Use puppet (or any other
configuration management tool)
to deploy
everything related
to your database
62
Save your
puppet recipes
into a version
control system
63
but also save
your database
schema changes
in that system
64
test
65
66
What should you
test as a devops
dba ?
67
Test if you can
deploy
everything and if
you didn't forget
anything
68
Test also the
performance !
Is it faster with
this change ?
69
use
Percona
Toolkit
70
automate
your
tests
71
visibility
72
monitoring
73
Monitor your database
with an alerting system
(nagios).
Disk/IO, CPU load, Network
traffic, disk usage
74
But do you want to be
woken up at night
because replication of
the machine taking
backups is 60sec
behind ?
75
NO!
76
Then do you want to be
woken up in the middle
of the night because
they are 1000 more
selects than usual ?
77
NO!
78
Your alerting should answer
those questions:
Is the database server running ?
Does it allow connections ?
Is replication lagging on production
slaves ?
79
trending
80
The most interesting facts
for a DBA are the trending
results !
Use cacti ... with Percona
Monitoring Plugins
They provide very good
metrics
81
Correlate changes in
the trending results
with your configuration
changes...
everything should be
tracked
82
others ?
83
You can also
use other
“devops”
oriented tools
like :
84
puppet-dashboard
with kanban plugin
85
If there is only
one thing you
remember from
this presentation
86
Yes, even a
schema change
MUST be
considered like a
migration !
87
review it
test it
plan it
do it
88
and now that we
have a
devdbaops
team
89
we can start
working on
really interesting
tasks for
everyone
90
the
smooth
migration
91
When this goal is
achieved
DEVS have less pressure
OPS have less pressure
DBAs have less pressure
92
collaboration
=
less pressure
93
94
v 1.9application v 2.0
db schema
v 1.9 v 2.0
present future
95
v 1.9application v 2.0
db schema
v 1.9 v 2.0
present future
96
v 1.9application v 2.0
db schema
v 1.9 v 2.0
present
97
v 1.9application v 2.0
db schema
v 1.9 v 2.0
present Issue !!
98
v 1.9application v 2.0
db schema
v 1.9 v 2.0
99
v 1.9application v 2.0
db schema
v 1.9 v 2.0
Issue !!
100
v 1.9application v 2.0
db schema
v 1.9 v 2.0
101
This can only be
the result of
102
collaboration
between DEVS,
DBAs & OPS
103
demo
104
git
puppet
Percona server
Jenkins
VirtualBox
vagrant
mcollective
105
Change the schema
(add an index for example)
Commit !
106
Launches a new
virtual machine from
scratch using vagrant
Install everything and
populate a test db
107
Start some basic
tests with cucumber-
puppet to see if all
puppet code was
correctly performed
No error is a success
Otherwise is a fail
108
Then start some tests
with percona-
playback and/or
pt-query-digest and
compares to old
values
Faster is a success
Slower is a fail
109
Photo Credit:
http://www.flickr.com/photos/kuma-kigurumi/
http://www.flickr.com/photos/airforceone/2125791018/
http://www.flickr.com/photos/akosvaradi/2617404213/
http://www.flickr.com/photos/doberdad/2264130166
http://www.flickr.com/photos/tomsaint/2714401733
http://www.flickr.com/photos/10335017@N07/4570943373/
http://www.bxel.net/metro-de-bruxelles/metro_plan_bruxelles.jpg
http://www.flickr.com/photos/youngkimstudio/6216328782
http://www.flickr.com/photos/26676383@N00/3690701110/
http://www.flickr.com/photos/blubbla/209864856
http://www.flickr.com/photos/chrishuffman/2336990347
http://geekandpoke.typepad.com/.a/6a00d8341d3df553ef0153922fa2ee970b-pi
Projects links:
http://puppetlabs.com/resources/overview-2/
http://puppetlabs.com/puppet/related-projects/dashboard/
http://theforeman.org/
http://git-scm.com/
http://www.redmine.org/
http://www.redmine.org/projects/redmine/wiki/PluginKanban
http://vagrantup.com
https://www.virtualbox.org/
http://jenkins-ci.org/
http://www.percona.com/software/percona-toolkit/
http://code.google.com/p/mysql-cacti-templates/
www.percona.com
You can find all these recipes here !
www.percona.com
Speaking at
In London,
December 3rd & 4th
www.percona.com
Speaking at
In London,
December 3rd & 4th
40% off passes
using the discount
code
“MySQL-UK”
lefred@percona.com
@lefred

More Related Content

What's hot (20)

PDF
Upgrade to MySQL 5.6 without downtime
Olivier DASINI
 
PDF
Building Scalable High Availability Systems using MySQL Fabric
Mats Kindahl
 
PDF
NoSQL no MySQL 5.7
MySQL Brasil
 
PDF
MySQL Day Paris 2016 - State Of The Dolphin
Olivier DASINI
 
PDF
MySQL Fabric: Easy Management of MySQL Servers
Mats Kindahl
 
PDF
MySQL High Availability Solutions - Avoid loss of service by reducing the r...
Olivier DASINI
 
PPTX
Oracle Unified Directory. Lessons learnt. Is it ready for a move from OID? (O...
Andrejs Prokopjevs
 
PDF
The Peoper Care and Feeding of a MySQL Server for Busy Linux Admin
Dave Stokes
 
PDF
MySQL InnoDB Cluster - Group Replication
Frederic Descamps
 
PDF
MySQL Utilities -- PyTexas 2015
Dave Stokes
 
PDF
New awesome features in MySQL 5.7
Zhaoyang Wang
 
PDF
MySQL InnoDB Cluster and MySQL Group Replication @HKOSC 2017
Ivan Ma
 
PDF
Alta Disponibilidade no MySQL 5.7
MySQL Brasil
 
PDF
MySQL Group Replicatio in a nutshell - MySQL InnoDB Cluster
Frederic Descamps
 
PDF
Oozie @ Riot Games
Matt Goeke
 
PDF
Ohio Linux Fest -- MySQL's NoSQL
Dave Stokes
 
PDF
MySQL InnoDB Cluster and Group Replication - OSI 2017 Bangalore
Sujatha Sivakumar
 
PDF
Best Features of Multitenant 12c
Deiby Gómez
 
PDF
MHA (MySQL High Availability): Getting started & moving past quirks
Colin Charles
 
PDF
MySQL JSON Functions
Sveta Smirnova
 
Upgrade to MySQL 5.6 without downtime
Olivier DASINI
 
Building Scalable High Availability Systems using MySQL Fabric
Mats Kindahl
 
NoSQL no MySQL 5.7
MySQL Brasil
 
MySQL Day Paris 2016 - State Of The Dolphin
Olivier DASINI
 
MySQL Fabric: Easy Management of MySQL Servers
Mats Kindahl
 
MySQL High Availability Solutions - Avoid loss of service by reducing the r...
Olivier DASINI
 
Oracle Unified Directory. Lessons learnt. Is it ready for a move from OID? (O...
Andrejs Prokopjevs
 
The Peoper Care and Feeding of a MySQL Server for Busy Linux Admin
Dave Stokes
 
MySQL InnoDB Cluster - Group Replication
Frederic Descamps
 
MySQL Utilities -- PyTexas 2015
Dave Stokes
 
New awesome features in MySQL 5.7
Zhaoyang Wang
 
MySQL InnoDB Cluster and MySQL Group Replication @HKOSC 2017
Ivan Ma
 
Alta Disponibilidade no MySQL 5.7
MySQL Brasil
 
MySQL Group Replicatio in a nutshell - MySQL InnoDB Cluster
Frederic Descamps
 
Oozie @ Riot Games
Matt Goeke
 
Ohio Linux Fest -- MySQL's NoSQL
Dave Stokes
 
MySQL InnoDB Cluster and Group Replication - OSI 2017 Bangalore
Sujatha Sivakumar
 
Best Features of Multitenant 12c
Deiby Gómez
 
MHA (MySQL High Availability): Getting started & moving past quirks
Colin Charles
 
MySQL JSON Functions
Sveta Smirnova
 

Viewers also liked (20)

PDF
Inexpensive Datamasking for MySQL with ProxySQL - data anonymization for deve...
Frederic Descamps
 
PDF
MySQL 5.7 & JSON - Nouvelles opportunités pour les dévelopeurs
Frederic Descamps
 
PDF
Undelete (and more) rows from the binary log
Frederic Descamps
 
PDF
Haute disponibilité my sql avec group réplication
Frederic Descamps
 
PDF
MySQL High Availability with Group Replication
Nuno Carvalho
 
PDF
Jeudis du Libre - MySQL InnoDB Cluster
Frederic Descamps
 
PPT
Database Tendency
grandis_au
 
PDF
Sysadmin delight
Marian Marinov
 
PPTX
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Chris Tankersley
 
PDF
In-memory Database and MySQL Cluster
grandis_au
 
PDF
Advanced percona xtra db cluster in a nutshell... la suite plsc2016
Frederic Descamps
 
PDF
Percon XtraDB Cluster in a nutshell
Frederic Descamps
 
PDF
Galera Replication Demystified: How Does It Work?
Frederic Descamps
 
PDF
Sex, lies and magnetic tapes: Confessions of a sysadmin
Antonio Sanz Alcober
 
ODP
PoC: Using a Group Communication System to improve MySQL Replication HA
Ulf Wendel
 
PDF
How do i change my sysadmin mindset
Dwi Sasongko Supriyadi
 
PDF
Gnu linux on arm for $50 - $100
Dobrica Pavlinušić
 
PDF
SysAdmin cookbook
Dobrica Pavlinušić
 
ODP
MySQL 5.7 Fabric: Introduction to High Availability and Sharding
Ulf Wendel
 
PDF
Best practices for MySQL/MariaDB Server/Percona Server High Availability
Colin Charles
 
Inexpensive Datamasking for MySQL with ProxySQL - data anonymization for deve...
Frederic Descamps
 
MySQL 5.7 & JSON - Nouvelles opportunités pour les dévelopeurs
Frederic Descamps
 
Undelete (and more) rows from the binary log
Frederic Descamps
 
Haute disponibilité my sql avec group réplication
Frederic Descamps
 
MySQL High Availability with Group Replication
Nuno Carvalho
 
Jeudis du Libre - MySQL InnoDB Cluster
Frederic Descamps
 
Database Tendency
grandis_au
 
Sysadmin delight
Marian Marinov
 
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Chris Tankersley
 
In-memory Database and MySQL Cluster
grandis_au
 
Advanced percona xtra db cluster in a nutshell... la suite plsc2016
Frederic Descamps
 
Percon XtraDB Cluster in a nutshell
Frederic Descamps
 
Galera Replication Demystified: How Does It Work?
Frederic Descamps
 
Sex, lies and magnetic tapes: Confessions of a sysadmin
Antonio Sanz Alcober
 
PoC: Using a Group Communication System to improve MySQL Replication HA
Ulf Wendel
 
How do i change my sysadmin mindset
Dwi Sasongko Supriyadi
 
Gnu linux on arm for $50 - $100
Dobrica Pavlinušić
 
SysAdmin cookbook
Dobrica Pavlinušić
 
MySQL 5.7 Fabric: Introduction to High Availability and Sharding
Ulf Wendel
 
Best practices for MySQL/MariaDB Server/Percona Server High Availability
Colin Charles
 
Ad

Similar to Webinar manage MySQL like a devops sysadmin (20)

PDF
DevOps Culture & Methodology Intro
Najib Radzuan
 
PDF
Devops Strategy Roadmap Lifecycle Ppt Powerpoint Presentation Slides Complete...
SlideTeam
 
PDF
AO, the sap case
Pierre E. NEIS
 
PDF
Managing Databases In A DevOps Environment 2016
Robert Treat
 
PDF
DevOps for absolute beginners
Ahmed Misbah
 
PDF
DevOps- Introduction DevOps in Engineering
Dr.Manjunath Kotari
 
PDF
Delivering Better Software Faster (Without Breaking Everything)
XebiaLabs
 
PDF
Bn1006 demo ppt devops
conline training
 
PPTX
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Taller Negócio Digitais
 
PDF
ASAS 2015 - Benito de Miranda
Avisi B.V.
 
PDF
Planning for DevOps
Eng Teong Cheah
 
PDF
Idi2018 - Serverless does not mean Opsless
Linuxaria.com
 
PPTX
About DevOps in simple steps
Ihor Odynets
 
PDF
A Comprehensive Guide To DevOps Services And Solutions
Enov8
 
PPTX
Dev ops training in chennai
raj esaki
 
PPTX
DevOps - Orientation Session
M M Nair
 
PDF
Ignite DevOps 2017 @ SEP
Bob Nowadly
 
PDF
Understanding DevOps in simpler way with Continuous Delivery
Swapnil Jain
 
PPTX
DevOps.pptx
MohamedSaied877003
 
PDF
Cutting Edge on Development Methodologies in IT
Andrea Tino
 
DevOps Culture & Methodology Intro
Najib Radzuan
 
Devops Strategy Roadmap Lifecycle Ppt Powerpoint Presentation Slides Complete...
SlideTeam
 
AO, the sap case
Pierre E. NEIS
 
Managing Databases In A DevOps Environment 2016
Robert Treat
 
DevOps for absolute beginners
Ahmed Misbah
 
DevOps- Introduction DevOps in Engineering
Dr.Manjunath Kotari
 
Delivering Better Software Faster (Without Breaking Everything)
XebiaLabs
 
Bn1006 demo ppt devops
conline training
 
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Taller Negócio Digitais
 
ASAS 2015 - Benito de Miranda
Avisi B.V.
 
Planning for DevOps
Eng Teong Cheah
 
Idi2018 - Serverless does not mean Opsless
Linuxaria.com
 
About DevOps in simple steps
Ihor Odynets
 
A Comprehensive Guide To DevOps Services And Solutions
Enov8
 
Dev ops training in chennai
raj esaki
 
DevOps - Orientation Session
M M Nair
 
Ignite DevOps 2017 @ SEP
Bob Nowadly
 
Understanding DevOps in simpler way with Continuous Delivery
Swapnil Jain
 
DevOps.pptx
MohamedSaied877003
 
Cutting Edge on Development Methodologies in IT
Andrea Tino
 
Ad

More from Frederic Descamps (20)

PDF
MySQL Innovation & Cloud Day - Document Store avec MySQL HeatWave Database Se...
Frederic Descamps
 
PDF
MySQL Day Roma - MySQL Shell and Visual Studio Code Extension
Frederic Descamps
 
PDF
RivieraJUG - MySQL Indexes and Histograms
Frederic Descamps
 
PDF
RivieraJUG - MySQL 8.0 - What's new for developers.pdf
Frederic Descamps
 
PDF
MySQL User Group NL - MySQL 8
Frederic Descamps
 
PDF
State of the Dolphin - May 2022
Frederic Descamps
 
PDF
Percona Live 2022 - MySQL Shell for Visual Studio Code
Frederic Descamps
 
PDF
Percona Live 2022 - The Evolution of a MySQL Database System
Frederic Descamps
 
PDF
Percona Live 2022 - MySQL Architectures
Frederic Descamps
 
PDF
LinuxFest Northwest 2022 - The Evolution of a MySQL Database System
Frederic Descamps
 
PDF
Open Source 101 2022 - MySQL Indexes and Histograms
Frederic Descamps
 
PDF
Pi Day 2022 - from IoT to MySQL HeatWave Database Service
Frederic Descamps
 
PDF
Confoo 2022 - le cycle d'une instance MySQL
Frederic Descamps
 
PDF
FOSDEM 2022 MySQL Devroom: MySQL 8.0 - Logical Backups, Snapshots and Point-...
Frederic Descamps
 
PDF
Les nouveautés de MySQL 8.0
Frederic Descamps
 
PDF
Les nouveautés de MySQL 8.0
Frederic Descamps
 
PDF
State of The Dolphin - May 2021
Frederic Descamps
 
PDF
MySQL Shell for DBAs
Frederic Descamps
 
PDF
Deploying Magento on OCI with MDS
Frederic Descamps
 
PDF
MySQL Router REST API
Frederic Descamps
 
MySQL Innovation & Cloud Day - Document Store avec MySQL HeatWave Database Se...
Frederic Descamps
 
MySQL Day Roma - MySQL Shell and Visual Studio Code Extension
Frederic Descamps
 
RivieraJUG - MySQL Indexes and Histograms
Frederic Descamps
 
RivieraJUG - MySQL 8.0 - What's new for developers.pdf
Frederic Descamps
 
MySQL User Group NL - MySQL 8
Frederic Descamps
 
State of the Dolphin - May 2022
Frederic Descamps
 
Percona Live 2022 - MySQL Shell for Visual Studio Code
Frederic Descamps
 
Percona Live 2022 - The Evolution of a MySQL Database System
Frederic Descamps
 
Percona Live 2022 - MySQL Architectures
Frederic Descamps
 
LinuxFest Northwest 2022 - The Evolution of a MySQL Database System
Frederic Descamps
 
Open Source 101 2022 - MySQL Indexes and Histograms
Frederic Descamps
 
Pi Day 2022 - from IoT to MySQL HeatWave Database Service
Frederic Descamps
 
Confoo 2022 - le cycle d'une instance MySQL
Frederic Descamps
 
FOSDEM 2022 MySQL Devroom: MySQL 8.0 - Logical Backups, Snapshots and Point-...
Frederic Descamps
 
Les nouveautés de MySQL 8.0
Frederic Descamps
 
Les nouveautés de MySQL 8.0
Frederic Descamps
 
State of The Dolphin - May 2021
Frederic Descamps
 
MySQL Shell for DBAs
Frederic Descamps
 
Deploying Magento on OCI with MDS
Frederic Descamps
 
MySQL Router REST API
Frederic Descamps
 

Recently uploaded (20)

PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 

Webinar manage MySQL like a devops sysadmin