forked from dotmanila/pl19-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
184 lines (134 loc) · 2.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html>
<head>
<title>Percona Live 2019</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./styles/styles.css"/>
<style>
</style>
</head>
<body>
<textarea id="source">
layout: true
<div id="slide-footer"></div>
---
class: page-title
# PL19 Open Source Database Conference
.title-author[
Jervin Real
]
---
class: page-slide
# MySQL
.center[
### The World's Most Popular Open Source Database
]
---
class: page-slide
# MySQL
### Subheading
- Lorem ipsum pages and mutexes
???
- Presenter notes
---
class: page-topic, topic-footer
.topic[
# Topic A
## Subheading
]
---
class: page-slide
# Slide with Split Image
### Nice images below.
- Benchmarking
.w50pct-left[
.center[
![:image 300px](./images/percona-server-for-mysql.png)
]
]
.w50pct-right[
.center[
![:image 300px](./images/mariadb.png)
]
]
---
class: page-slide
# Slide with One Large Image
### Good picture
.center[
![:image 400px](./images/percona-server-for-mysql.png)
]
- Thoughts?
---
class: page-slide
# Slide with Code
### Some SQL goodness
- Looks familiar?
```sql
mysql> LOCK TABLES FOR BACKUP;
mysql> LOCK BINLOG;
mysql> SHOW MASTER STATUS;
mysql> -- take ZFS snapshot here
mysql> -- WSREP cluster uuid:seqno
mysql> UNLOCK TABLES;
mysql> UNLOCK BINLOG;
```
???
- Presenter nodes
---
class: page-slide
# Slide with Shell Code
### Shell and SQL are different
- Nice colors
```shell
ubuntu@ip-10-1-2-117:~$ time sudo zfs send -wcR mysql@201804192210 \
| mbuffer -s 128k -m 1G -O 10.1.2.126:9999
in @ 22.2 MiB/s, out @ 76.4 MiB/s, 156 GiB total, buffer 0% full
summary: 156 GiByte in 23min 22.1sec - average of 114 MiB/s
real 23m24.961s
user 0m9.052s
sys 6m39.036s
```
```shell
ubuntu@ip-10-1-2-126:~$ mbuffer -s 128k -m 1G -I 9999 | sudo zfs recv -F mysql
in @ 77.9 MiB/s, out @ 77.9 MiB/s, 156 GiB total, buffer 0% full
summary: 156 GiByte in 23min 24.7sec - average of 114 MiB/s
ubuntu@ip-10-1-2-126:~$ sudo zfs load-key -a
2 / 2 key(s) successfully loaded
ubuntu@ip-10-1-2-126:~$ sudo zfs mount -a
```
???
- I really like mbuffer ...
---
class: page-topic, topic-footer
.topic[
# Questions?
]
---
class: page-slide
# Percona is Hiring!
- Consultants
- MySQL
- MongoDB
- PostgreSQL
- and more ...
.center[
https://www.percona.com/about-percona/careers
]
</textarea>
<script src="./remarkjs/remark-latest.min.js"></script>
<script src="./macros/remark.js"></script>
<script>
var slideshow = remark.create({
navigation: {
scroll: false,
touch: false,
click: false,
highlightSpans: true,
highlightLanguage: 'bash',
highlightLines: true
}
});
</script>
</body>
</html>