SlideShare a Scribd company logo
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
High	Availability	Using	MySQL	Group	
ReplicaIon	
Mark	Swarbrick	
MySQL	Principle	Presales	consultant	
1
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Safe	Harbor	Statement	
The	following	is	intended	to	outline	our	general	product	direcIon.	It	is	intended	for	
informaIon	purposes	only,	and	may	not	be	incorporated	into	any	contract.	It	is	not	a	
commitment	to	deliver	any	material,	code,	or	funcIonality,	and	should	not	be	relied	upon	
in	making	purchasing	decisions.	The	development,	release,	and	Iming	of	any	features	or	
funcIonality	described	for	Oracle’s	products	remains	at	the	sole	discreIon	of	Oracle.	
2
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Program	Agenda
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Program	Agenda	
Background	
MySQL	Group	ReplicaIon	
Architecture	
Big	Picture	
Conclusion	
1	
2	
3	
4	
5	
4
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Background	1
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
M	 S	
S	
S	
S	
M	
write	clients	 read	clients	
read	clients	
write	clients	
More	
reads?	
More	
slaves!	
Read	scale-out	
	
Background:	What	is	ReplicaIon	Used	For?	
6
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
C	
B	
A	
C	
B	
A	Crash	
C	
B	
A	
B	is	the	
new	master	
Uh	Oh!	 Whew!	
Redundancy	as	a	major	building	block	for	high	availability:	If	master	crashes,	promote	
slave	to	master	
	
Background:	What	is	ReplicaIon	Used	For?	
7
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	
•  What	is	MySQL	Group	ReplicaKon?	
“Update	everywhere	replicaIon	plugin	for	MySQL	with	built-in	automaKc	distributed	
recovery,	conflict	handling,	group	membership	and	distributed	agreement.”	
•  What	does	the	MySQL	Group	ReplicaKon	plugin	do	for	the	user?	
– Removes	the	need	for	handling	server	fail-over.	
– Provides	fault	tolerance.	
– Enables	update	everywhere	setups.	
– Automates	group	reconfiguraIon	(handling	of	crashes,	failures,	re-connects).	
– Provides	a	highly	available	replicated	database.	
– AutomaIc	distributed	coordinaIon	(protects	against	split-brain	and	message	loss).	
– Less	admin	overhead,	means	more	fun	Ime!	
8
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	
9	
M	 M	 M	 M	 M	
ReplicaKon	Group	
Clients
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Some	Theory	Behind	It...	
•  ImplementaIon	based	in	Replicated	Database	State	Machines	
– Group	CommunicaIon	PrimiIves	resemble	properIes	of	Databases.	
•  Deferred	update	replicaIon:	propagate	atomically,	check	conflicts,	
eventually	apply	
– Distributed	state	machine	requires	agreed	delivery	–	implies	total	order;	
– DeterminisIc	cerIficaIon	requires	total	order	delivery.		
•  Membership	Service	
– Which	servers	are	parIcipaIng	in	the	replicaIon	group	at	a	given	moment	in	Ime?	
(associated	with	a	logical	Imestamp	[	-	view	idenIfier]).	
10
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	2	
2.1													MulK-Master
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MulI-Master	update	everywhere!	
•  Any	two	transacIons	on	different	servers	can	write	to	the	same	tuple.	
•  Conflicts	will	be	detected	and	dealt	with.	
– First	commiker	wins	rule.	
12	
M	 M	 M	 M	 M	
UPDATE	t1	SET	a=4	WHERE	a=2	UPDATE	t1	SET	a=3	WHERE	a=1
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MulI-Master	update	everywhere!	
•  Any	two	transacIons	on	different	servers	can	write	to	the	same	tuple.	
•  Conflicts	will	be	detected	and	dealt	with.	
– First	commiker	wins	rule.	
13	
M	 M	 M	 M	 M	
UPDATE	t1	SET	a=4	WHERE	a=2	UPDATE	t1	SET	a=3	WHERE	a=1	
OK	OK
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MulI-Master	update	everywhere!	
•  Any	two	transacIons	on	different	servers	can	write	to	the	same	tuple.	
•  Conflicts	will	be	detected	and	dealt	with.	
– First	commiker	wins	rule.	
14	
M	 M	 M	 M	 M	
UPDATE	t1	SET	a=2	WHERE	a=1	UPDATE	t1	SET	a=3	WHERE	a=1
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MulI-Master	update	everywhere!	
•  Any	two	transacIons	on	different	servers	can	write	to	the	same	tuple.	
•  Conflicts	will	be	detected	and	dealt	with.	
– First	commiker	wins	rule.	
15	
M	 M	 M	 M	 M	
UPDATE	t1	SET	a=2	WHERE	a=1	UPDATE	t1	SET	a=3	WHERE	a=1	
OK
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	2	
2.1	
2.2	
												MulK-Master	
					
												AutomaKc	distributed	server	recovery
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
AutomaKc	distributed	server	recovery!	
•  Server	that	joins	the	group	will	automaIcally	synchronize	with	the	others.	
17	
M	 M	 M	 M	 M	 N	
I	want	to	play	with	you
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
AutomaKc	distributed	server	recovery!	
•  Server	that	joins	the	group	will	automaIcally	synchronize	with	the	others.	
18	
M	 M	 M	 M	 M	 N	
ONLINE	
RECOVERING
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
AutomaKc	distributed	server	recovery!	
•  Server	that	joins	the	group	will	automaIcally	synchronize	with	the	others.	
19	
M	 M	 M	 M	 M	 N	
ONLINE
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
AutomaKc	distributed	server	recovery!	
•  If	a	server	leaves	the	group,	the	others	will	automaIcally	be	informed.	
20	
M	 M	 M	 M	 M	 M	
My	machine	needs	maintenance	
or	a	system	crash	happens	
Each	membership	configuraKon	
is	idenKfied	by	a	logical	Kmestamp,	
i.e.,	view_id	
view_id:	4
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
AutomaKc	distributed	server	recovery!	
•  If	a	server	leaves	the	group,	the	others	will	automaIcally	be	informed.	
21	
M	 M	 M	 M	 M	
view_id:	5
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
AutomaKc	distributed	server	recovery!	
•  Server	that	(re)joins	the	group	will	automaIcally	synchronize	with	the	
others.	
22	
M	 M	 M	 M	 M	 M	
RECOVERING	->	ONLINE	
view_id:	6
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	2	
2.1	
2.2	
2.3	
												MulK-Master	
					
												AutomaKc	distributed	server	recovery	
					
												MySQL/InnoDB	look	&	feel
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL/InnoDB	look	&	feel!	
•  Load	the	plugin	and	start	replicaIng.	
•  Monitor	group	replicaIon	stats	though	Performance	Schema	tables.	
24	
mysql> SET GLOBAL group_replication_group_name= "9eb07c6d-5e24-11e5-854b-34028662c0cd";
mysql> START GROUP_REPLICATION;
mysql> SELECT * FROM performance_schema.replication_group_membersG
*************************** 1. row ***************************
CHANNEL_NAME: group_replication_applier
MEMBER_ID: 597dbb72-3e2c-11e4-9d9d-ecf4bb227f3b
MEMBER_HOST: nightfury
MEMBER_PORT: 13000
MEMBER_STATE: ONLINE
*************************** 2. row ***************************
...
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL/InnoDB	look	&	feel!	
•  Load	the	plugin	and	start	replicaIng.	
•  Monitor	group	replicaIon	stats	though	Performance	Schema	tables.	
25	
mysql> SELECT * FROM performance_schema.replication_group_member_statsG
*************************** 1. row ***************************
CHANNEL_NAME: group_replication_applier
VIEW_ID: 1428497631:3
MEMBER_ID: e38fdea8-dded-11e4-b211-e8b1fc3848de
COUNT_TRANSACTIONS_IN_QUEUE: 0
COUNT_TRANSACTIONS_CHECKED: 12
COUNT_CONFLICTS_DETECTED: 5
COUNT_TRANSACTIONS_VALIDATING: 6
TRANSACTIONS_COMMITTED_ALL_MEMBERS: 8a84f397-aaa4-18df-89ab-c70aa9823561:1-7
LAST_CONFLICT_FREE_TRANSACTION: 8a84f397-aaa4-18df-89ab-c70aa9823561:7
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL/InnoDB	look	&	feel!	
•  Load	the	plugin	and	start	replicaIng.	
•  Monitor	group	replicaIon	stats	though	Performance	Schema	tables.	
26	
mysql> SELECT * FROM performance_schema.replication_connection_statusG
*************************** 1. row ***************************
CHANNEL_NAME: group_replication_applier
GROUP_NAME: 8a94f357-aab4-11df-86ab-c80aa9429563
SOURCE_UUID: 8a94f357-aab4-11df-86ab-c80aa9429563
THREAD_ID: NULL
SERVICE_STATE: ON
...
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	2	
2.1	
2.2	
2.3	
2.4	
												MulK-Master	
					
												AutomaKc	distributed	server	recovery	
					
												MySQL/InnoDB	look	&	feel	
					
												Full	GTID	support
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Full	GTID	support!	
•  All	group	members	share	the	same	UUID,	the	group	name.	
28	
M	 M	 M	 M	 M	
INSERT	y;	
Will	have	GTID:	group_name:2	
INSERT	x;	
Will	have	GTID:	group_name:1
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Full	GTID	support!	
•  Users	can	specify	the	idenIfier	for	the	transacIon.	
29	
M	 M	 M	 M	 M	
INSERT	y;	
Will	have	GTID:	group_name:1	
SET	GTID_NEXT=	“UUID:50”	
INSERT	x;
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Full	GTID	support!	
•  You	can	even	replicate	from	a	outside	server	to	a	group,	global	idenIfiers	
will	be	preserved.	
30	
M	 M	 M	 M	 M	
Conflicts	will	be	detected!
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	2	
2.1	
2.2	
2.3	
2.4	
2.5	
												MulK-Master	
					
												AutomaKc	distributed	server	recovery	
					
												MySQL/InnoDB	look	&	feel	
					
												Auto-increment	configuraKon/handling	
					
												Full	GTID	support
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
					
											New	distributed	agreement	and	communicaKon	engine					
MySQL	Group	ReplicaIon	2	
2.1	
2.2	
2.3	
2.4	
2.5	
2.6	
												MulK-Master	
					
												AutomaKc	distributed	server	recovery	
					
												MySQL/InnoDB	look	&	feel	
					
												Auto-increment	configuraKon/handling	
					
												Full	GTID	support
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
New	Distributed	Agreement	and	CommunicaIons	Engine	
•  MulIple	OS	support.	
– Linux,	but	also	Windows,	OSX,	Solaris,	FreeBSD…	
•  No	third-party	souware	required.	
•  No	network	mulIcast	support	required.	
– MySQL	Group	ReplicaIon	can	now	operate	on	cloud	based	installaIons	on	which	
mulIcast	is	disallowed.	
•  No	message	size	limit.	
•  No	separate	process.	
– MySQL	Group	ReplicaIon	is	now	self-contained	on	the	same	souware	stack.	
33
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
										Requirements					
												New	distributed	agreement	and	communicaKon	engine					
												Auto-increment	configuraKon/handling	
												Full	GTID	support	
											MySQL/InnoDB	look	&	feel	
					
											LimitaKons			
MySQL	Group	ReplicaIon	2	
2.3	
2.4	
2.5	
2.6	
2.7	
2.8
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Requirements	(by	design)	
•  Support	for	InnoDB	only.	
•  Primary	key	is	required	on	every	table.	
•  Requires	global	transacIon	idenIfiers	turned	on.	
•  OpImisIc	execuIon:	transacIons	may	abort	on	COMMIT	due	to	conflicts	
with	concurrent	transacIons	on	other	members.	
35
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
										Requirements					
												New	distributed	agreement	and	communicaKon	engine					
												Auto-increment	configuraKon/handling	
												Full	GTID	support	
											MySQL/InnoDB	look	&	feel	
					
											LimitaKons			
MySQL	Group	ReplicaIon	2	
2.3	
2.4	
2.5	
2.6	
2.7	
2.8
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
LimitaIons	
•  Concurrent	schema	changes	are	not	supported.	
37
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Architecture	
												IntroducKon	
					
3	
3.1
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
MySQL	Group	ReplicaIon	is	
•  Built	on	top	of	proven	technology!	
– Shares	much	of	MySQL	ReplicaIon	infrastructure	–	thence	does	not	feel	alien!	
– MulI-Master	approach	to	replicaIon.	
•  Built	on	reusable	components!	
– Layered	implementaIon	approach.	
– Interface	driven	development.	
– Decoupled	from	the	server	core.	
– The	plugin	registers	as	listener	to	server	events.	
– Reuses	the	capture	procedure	from	regular	replicaIon.	
– Provides	further	decoupling	from	the	communicaIon	infrasctructure.	
39
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
												The	Complete	Stack	
					
												Major	Building	Blocks					
Architecture	
												IntroducKon	
					
3	
3.1	
3.2	
3.3
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	Complete	Stack	
41	
	
API	
ReplicaKon	
Plugin	
	
API	
MySQL	
Server	
Performance		Schema	Tables:	Monitoring	
MySQL	
APIs:	Lifecycle	/	Capture	/	Applier	
InnoDB	
ReplicaKon	Protocol	
Group	Com.	API	
XCom	
Network	
Plugin	
Capture	 Applier	
Conflicts	
Handler	
Group	Comm.	
System	(Corosync)	
Group	Com.	Engine	
Group	Com.	Binding	
Recovery
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Use	cases	
												Use	cases	
					
4	
4.1
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Use	Cases	
•  ElasKc	ReplicaKon	
– Environments	that	require	a	very	fluid	replicaIon	infrastructure,	where	the	number	
of	servers	has	to	grow	or	shrink	dynamically	and	with	as	likle	pain	as	possible.	
•  Highly	Available	Shards	
– Sharding	is	a	popular	approach	to	achieve	write	scale-out.	Users	can	use	MySQL	
Group	ReplicaIon	to	implement	highly	available	shards.	Each	shard	can	map	into	a	
ReplicaIon	Group.	
•  AlternaKve	to	Master-Slave	replicaKon	
– It	may	be	that	a	single	master	server	makes	it	a	single	point	of	contenIon.	WriIng	to	
an	enIre	group	may	prove	more	scalable	under	certain	circumstances.	
43
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Use	cases	
												Use	cases	
					
4	
4.1	
4.2													Big	Picture
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Dependable	and	Scalable	MySQL	Setups	
M	
App	
M	 M	
Orchestrate	&	Manage	
M	App	 M	 M	
Simple	Shard	
Mapping,	State	and		
Extra	metadata.	
Control,	Coordinate,	Provision	
...	
Monitoring	(MEM)	
MySQL	Router	 Group	ReplicaIon	–	Shard	1	
Group	ReplicaIon	–	Shard	N	
C,	PHP,	Perl,	...	
45	
MySQL	Router
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Conclusion	5
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Summary	
•  Cloud	Friendly	
– Great	techonology	for	deployments	where	elasIcity	is	a	requirement,	such	as	cloud	
based	infrastructures.	
•  Integrated	
– With	server	core	through	a	well	defined	API.	
– With	GTIDs,	row	based	replicaIon,	performance	schema	tables.	
•  Autonomic	and	OperaKons	Friendly	
– It	is	self-healing:	no	admin	overhead	for	handling	server	fail-overs.	
– Provides	fault-tolerance,	enables	mulI-master	update	everywhere	and	a	dependable	
MySQL	service.	
47
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Where	to	go	from	here?	
•  Packages	
– hkp://labs.mysql.com	
•  Blogs	from	the	Engineers	(news,	technical	informaIon,	and	much	more)	
– hkp://mysqlhighavailability.com	
48
MySQL Group Replication
Ad

More Related Content

What's hot (20)

MySQL Security Best Practises
MySQL Security Best PractisesMySQL Security Best Practises
MySQL Security Best Practises
Mark Swarbrick
 
MySQL HA
MySQL HAMySQL HA
MySQL HA
Mark Swarbrick
 
MySQL Enterprise Monitor 3
MySQL Enterprise Monitor 3MySQL Enterprise Monitor 3
MySQL Enterprise Monitor 3
Mark Swarbrick
 
MySQL Enterprise Cloud
MySQL Enterprise Cloud MySQL Enterprise Cloud
MySQL Enterprise Cloud
Mark Swarbrick
 
MySQL InnoDB + NDB Cluster - 2018 MySQL Days
MySQL InnoDB + NDB Cluster - 2018 MySQL DaysMySQL InnoDB + NDB Cluster - 2018 MySQL Days
MySQL InnoDB + NDB Cluster - 2018 MySQL Days
Mark Swarbrick
 
TLV - MySQL Enterprise Edition + Cloud
TLV - MySQL Enterprise Edition + CloudTLV - MySQL Enterprise Edition + Cloud
TLV - MySQL Enterprise Edition + Cloud
Mark Swarbrick
 
TLV - Whats new in MySQL 8
TLV - Whats new in MySQL 8TLV - Whats new in MySQL 8
TLV - Whats new in MySQL 8
Mark Swarbrick
 
2016 MySQL State of the Dolphin
2016 MySQL State of the Dolphin2016 MySQL State of the Dolphin
2016 MySQL State of the Dolphin
Mark Swarbrick
 
MySQL 8 - 2018 MySQL Days
MySQL 8 - 2018 MySQL DaysMySQL 8 - 2018 MySQL Days
MySQL 8 - 2018 MySQL Days
Mark Swarbrick
 
Java EE Next
Java EE NextJava EE Next
Java EE Next
David Delabassee
 
Oracle Code Event - MySQL JSON Document Store
Oracle Code Event - MySQL JSON Document StoreOracle Code Event - MySQL JSON Document Store
Oracle Code Event - MySQL JSON Document Store
Mark Swarbrick
 
MySQL Security & GDPR
MySQL Security & GDPRMySQL Security & GDPR
MySQL Security & GDPR
Mark Swarbrick
 
MySQL 8
MySQL 8MySQL 8
MySQL 8
Mark Swarbrick
 
REST in an Async World
REST in an Async WorldREST in an Async World
REST in an Async World
David Delabassee
 
Next Generation Data Center Strategies
Next Generation Data Center StrategiesNext Generation Data Center Strategies
Next Generation Data Center Strategies
Venkat Nambiyur
 
Jfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and ContainersJfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and Containers
Mika Rinne
 
JAX-RS 2.1 Reloaded
JAX-RS 2.1 ReloadedJAX-RS 2.1 Reloaded
JAX-RS 2.1 Reloaded
David Delabassee
 
MySQL NoSQL Document Store
MySQL NoSQL Document StoreMySQL NoSQL Document Store
MySQL NoSQL Document Store
Mark Swarbrick
 
InnoDb Vs NDB Cluster
InnoDb Vs NDB ClusterInnoDb Vs NDB Cluster
InnoDb Vs NDB Cluster
Mark Swarbrick
 
5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQL5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQL
MySQL Brasil
 
MySQL Security Best Practises
MySQL Security Best PractisesMySQL Security Best Practises
MySQL Security Best Practises
Mark Swarbrick
 
MySQL Enterprise Monitor 3
MySQL Enterprise Monitor 3MySQL Enterprise Monitor 3
MySQL Enterprise Monitor 3
Mark Swarbrick
 
MySQL Enterprise Cloud
MySQL Enterprise Cloud MySQL Enterprise Cloud
MySQL Enterprise Cloud
Mark Swarbrick
 
MySQL InnoDB + NDB Cluster - 2018 MySQL Days
MySQL InnoDB + NDB Cluster - 2018 MySQL DaysMySQL InnoDB + NDB Cluster - 2018 MySQL Days
MySQL InnoDB + NDB Cluster - 2018 MySQL Days
Mark Swarbrick
 
TLV - MySQL Enterprise Edition + Cloud
TLV - MySQL Enterprise Edition + CloudTLV - MySQL Enterprise Edition + Cloud
TLV - MySQL Enterprise Edition + Cloud
Mark Swarbrick
 
TLV - Whats new in MySQL 8
TLV - Whats new in MySQL 8TLV - Whats new in MySQL 8
TLV - Whats new in MySQL 8
Mark Swarbrick
 
2016 MySQL State of the Dolphin
2016 MySQL State of the Dolphin2016 MySQL State of the Dolphin
2016 MySQL State of the Dolphin
Mark Swarbrick
 
MySQL 8 - 2018 MySQL Days
MySQL 8 - 2018 MySQL DaysMySQL 8 - 2018 MySQL Days
MySQL 8 - 2018 MySQL Days
Mark Swarbrick
 
Oracle Code Event - MySQL JSON Document Store
Oracle Code Event - MySQL JSON Document StoreOracle Code Event - MySQL JSON Document Store
Oracle Code Event - MySQL JSON Document Store
Mark Swarbrick
 
Next Generation Data Center Strategies
Next Generation Data Center StrategiesNext Generation Data Center Strategies
Next Generation Data Center Strategies
Venkat Nambiyur
 
Jfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and ContainersJfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and Containers
Mika Rinne
 
MySQL NoSQL Document Store
MySQL NoSQL Document StoreMySQL NoSQL Document Store
MySQL NoSQL Document Store
Mark Swarbrick
 
5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQL5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQL
MySQL Brasil
 

Similar to MySQL Group Replication (20)

MySQL as a Document Store
MySQL as a Document StoreMySQL as a Document Store
MySQL as a Document Store
Mark Swarbrick
 
Developing MySQL applications in the Cloud
Developing MySQL applications in the CloudDeveloping MySQL applications in the Cloud
Developing MySQL applications in the Cloud
Mark Swarbrick
 
Oracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStack
OTN Systems Hub
 
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
vasuballa
 
Develop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to CloudDevelop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to Cloud
Inprise Group
 
Migrating your infrastructure to OpenStack - Avi Miller, Oracle
Migrating your infrastructure to OpenStack - Avi Miller, OracleMigrating your infrastructure to OpenStack - Avi Miller, Oracle
Migrating your infrastructure to OpenStack - Avi Miller, Oracle
OpenStack
 
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis
 
Performance in Spark 2.0, PDX Spark Meetup 8/18/16
Performance in Spark 2.0, PDX Spark Meetup 8/18/16Performance in Spark 2.0, PDX Spark Meetup 8/18/16
Performance in Spark 2.0, PDX Spark Meetup 8/18/16
pdx_spark
 
OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...
OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...
OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...
vasuballa
 
OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...
OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...
OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...
vasuballa
 
Oracle cloud, private, public and hybrid
Oracle cloud, private, public and hybridOracle cloud, private, public and hybrid
Oracle cloud, private, public and hybrid
Johan Louwers
 
MAA - Best Practices for the Cloud
MAA - Best Practices for the CloudMAA - Best Practices for the Cloud
MAA - Best Practices for the Cloud
Markus Michalewicz
 
Japanese Introduction to Oracle JET
Japanese Introduction to Oracle JETJapanese Introduction to Oracle JET
Japanese Introduction to Oracle JET
Geertjan Wielenga
 
OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...
OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...
OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...
vasuballa
 
Oracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 Version
Oracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 VersionOracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 Version
Oracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 Version
Markus Michalewicz
 
Oracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best Practices
Oracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best PracticesOracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best Practices
Oracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best Practices
Markus Michalewicz
 
3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational Interface3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational Interface
Jürgen Ambrosi
 
Virtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RAC
Virtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RACVirtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RAC
Virtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RAC
Markus Michalewicz
 
RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016
Sandesh Rao
 
Web protocols for java developers
Web protocols for java developersWeb protocols for java developers
Web protocols for java developers
Pavel Bucek
 
MySQL as a Document Store
MySQL as a Document StoreMySQL as a Document Store
MySQL as a Document Store
Mark Swarbrick
 
Developing MySQL applications in the Cloud
Developing MySQL applications in the CloudDeveloping MySQL applications in the Cloud
Developing MySQL applications in the Cloud
Mark Swarbrick
 
Oracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStack
OTN Systems Hub
 
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
vasuballa
 
Develop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to CloudDevelop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to Cloud
Inprise Group
 
Migrating your infrastructure to OpenStack - Avi Miller, Oracle
Migrating your infrastructure to OpenStack - Avi Miller, OracleMigrating your infrastructure to OpenStack - Avi Miller, Oracle
Migrating your infrastructure to OpenStack - Avi Miller, Oracle
OpenStack
 
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis
 
Performance in Spark 2.0, PDX Spark Meetup 8/18/16
Performance in Spark 2.0, PDX Spark Meetup 8/18/16Performance in Spark 2.0, PDX Spark Meetup 8/18/16
Performance in Spark 2.0, PDX Spark Meetup 8/18/16
pdx_spark
 
OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...
OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...
OOW16 - Simplified and Touch-Friendly User Interface in Oracle E-Business Sui...
vasuballa
 
OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...
OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...
OOW16 - Faster and Better: Oracle E-Business Suite Desktop Integration Enhanc...
vasuballa
 
Oracle cloud, private, public and hybrid
Oracle cloud, private, public and hybridOracle cloud, private, public and hybrid
Oracle cloud, private, public and hybrid
Johan Louwers
 
MAA - Best Practices for the Cloud
MAA - Best Practices for the CloudMAA - Best Practices for the Cloud
MAA - Best Practices for the Cloud
Markus Michalewicz
 
Japanese Introduction to Oracle JET
Japanese Introduction to Oracle JETJapanese Introduction to Oracle JET
Japanese Introduction to Oracle JET
Geertjan Wielenga
 
OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...
OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...
OOW16 - Build, Deploy, and Manage Smartphone Applications for Oracle E-Busine...
vasuballa
 
Oracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 Version
Oracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 VersionOracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 Version
Oracle RAC 12c Rel. 2 Best Practices - UKOUG Tech17 Version
Markus Michalewicz
 
Oracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best Practices
Oracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best PracticesOracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best Practices
Oracle Real Application Clusters (RAC) 12c Rel. 2 - Operational Best Practices
Markus Michalewicz
 
3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational Interface3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational Interface
Jürgen Ambrosi
 
Virtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RAC
Virtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RACVirtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RAC
Virtualized Oracle Real Application Clusters (RAC) - Containers and VMs for RAC
Markus Michalewicz
 
RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016
Sandesh Rao
 
Web protocols for java developers
Web protocols for java developersWeb protocols for java developers
Web protocols for java developers
Pavel Bucek
 
Ad

More from Mark Swarbrick (12)

MySQL @ the University Of Nottingham
MySQL @ the University Of NottinghamMySQL @ the University Of Nottingham
MySQL @ the University Of Nottingham
Mark Swarbrick
 
Intro To MySQL 2019
Intro To MySQL 2019Intro To MySQL 2019
Intro To MySQL 2019
Mark Swarbrick
 
MySQL Dublin Event Nov 2018 - MySQL 8
MySQL Dublin Event Nov 2018 - MySQL 8MySQL Dublin Event Nov 2018 - MySQL 8
MySQL Dublin Event Nov 2018 - MySQL 8
Mark Swarbrick
 
MySQL Dublin Event Nov 2018 - State of the Dolphin
MySQL Dublin Event Nov 2018 - State of the DolphinMySQL Dublin Event Nov 2018 - State of the Dolphin
MySQL Dublin Event Nov 2018 - State of the Dolphin
Mark Swarbrick
 
TLV - MySQL Security overview
TLV - MySQL Security overviewTLV - MySQL Security overview
TLV - MySQL Security overview
Mark Swarbrick
 
MySQL At University Of Nottingham - 2018 MySQL Days
MySQL At University Of Nottingham - 2018 MySQL DaysMySQL At University Of Nottingham - 2018 MySQL Days
MySQL At University Of Nottingham - 2018 MySQL Days
Mark Swarbrick
 
MySQL At Mastercard - 2018 MySQL Days
MySQL At Mastercard - 2018 MySQL DaysMySQL At Mastercard - 2018 MySQL Days
MySQL At Mastercard - 2018 MySQL Days
Mark Swarbrick
 
MySQL Security + GDPR - 2018 MySQL Days
MySQL Security + GDPR - 2018 MySQL DaysMySQL Security + GDPR - 2018 MySQL Days
MySQL Security + GDPR - 2018 MySQL Days
Mark Swarbrick
 
MySQL Cloud - 2018 MySQL Days
MySQL Cloud - 2018 MySQL DaysMySQL Cloud - 2018 MySQL Days
MySQL Cloud - 2018 MySQL Days
Mark Swarbrick
 
MySQL 2018 Intro - 2018 MySQL Days
MySQL 2018 Intro - 2018 MySQL DaysMySQL 2018 Intro - 2018 MySQL Days
MySQL 2018 Intro - 2018 MySQL Days
Mark Swarbrick
 
MySQL + GDPR
MySQL + GDPRMySQL + GDPR
MySQL + GDPR
Mark Swarbrick
 
Oow MySQL Whats new in security overview sept 2017 v1
Oow MySQL Whats new in security overview sept 2017 v1Oow MySQL Whats new in security overview sept 2017 v1
Oow MySQL Whats new in security overview sept 2017 v1
Mark Swarbrick
 
MySQL @ the University Of Nottingham
MySQL @ the University Of NottinghamMySQL @ the University Of Nottingham
MySQL @ the University Of Nottingham
Mark Swarbrick
 
MySQL Dublin Event Nov 2018 - MySQL 8
MySQL Dublin Event Nov 2018 - MySQL 8MySQL Dublin Event Nov 2018 - MySQL 8
MySQL Dublin Event Nov 2018 - MySQL 8
Mark Swarbrick
 
MySQL Dublin Event Nov 2018 - State of the Dolphin
MySQL Dublin Event Nov 2018 - State of the DolphinMySQL Dublin Event Nov 2018 - State of the Dolphin
MySQL Dublin Event Nov 2018 - State of the Dolphin
Mark Swarbrick
 
TLV - MySQL Security overview
TLV - MySQL Security overviewTLV - MySQL Security overview
TLV - MySQL Security overview
Mark Swarbrick
 
MySQL At University Of Nottingham - 2018 MySQL Days
MySQL At University Of Nottingham - 2018 MySQL DaysMySQL At University Of Nottingham - 2018 MySQL Days
MySQL At University Of Nottingham - 2018 MySQL Days
Mark Swarbrick
 
MySQL At Mastercard - 2018 MySQL Days
MySQL At Mastercard - 2018 MySQL DaysMySQL At Mastercard - 2018 MySQL Days
MySQL At Mastercard - 2018 MySQL Days
Mark Swarbrick
 
MySQL Security + GDPR - 2018 MySQL Days
MySQL Security + GDPR - 2018 MySQL DaysMySQL Security + GDPR - 2018 MySQL Days
MySQL Security + GDPR - 2018 MySQL Days
Mark Swarbrick
 
MySQL Cloud - 2018 MySQL Days
MySQL Cloud - 2018 MySQL DaysMySQL Cloud - 2018 MySQL Days
MySQL Cloud - 2018 MySQL Days
Mark Swarbrick
 
MySQL 2018 Intro - 2018 MySQL Days
MySQL 2018 Intro - 2018 MySQL DaysMySQL 2018 Intro - 2018 MySQL Days
MySQL 2018 Intro - 2018 MySQL Days
Mark Swarbrick
 
Oow MySQL Whats new in security overview sept 2017 v1
Oow MySQL Whats new in security overview sept 2017 v1Oow MySQL Whats new in security overview sept 2017 v1
Oow MySQL Whats new in security overview sept 2017 v1
Mark Swarbrick
 
Ad

Recently uploaded (20)

IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 

MySQL Group Replication