-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
484 lines (468 loc) · 14.9 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Elasticsearch</title>
<link rel="stylesheet" href="reveal.js/css/reveal.css">
<link rel="stylesheet" href="reveal.js/css/theme/black.css" id="theme">
<link rel="stylesheet" href="reveal.js/lib/css/zenburn.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/custom.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'reveal.js/css/print/pdf.css' : 'reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<section>
<img data-src="img/elasticlogo.png" style="border:none;width: 80%;"><br>
<p class="me">Maxence POUTORD</p>
<p class="me-link">
<a href="https://twitter.com/_maxpou"><i class="fa fa-twitter"></i> @_maxpou</a> |
<a href="http://www.maxpou.fr/"><i class="fa fa-globe"></i> maxpou.fr</a> |
<a href="mailto:[email protected]"><i class="fa fa-envelope-o"></i> [email protected]</a>
</p>
</section>
<section>
<h2>RevealJS Tips</h2>
<ul>
<li>ESC: slide overview</li>
<li>ALT + click: zoom</li>
<li>B: blackout</li>
<li>S: speaker notes</li>
<li><a href="?print-pdf">Print (then ctrl + p)</a></li>
</ul>
</section>
</section>
<section>
<section>
<h2>Elasticsearch c'est quoi ?</h2>
<ul>
<li>Moteur de recherche</li>
<li>Basé sur Apache Lucene</li>
<li>Open source (Licence Apache2)</li>
<li>NoSQL (type <em>Documents</em>)<br>
Laissez de côté le SQL, foreign key, relation...
</li>
<li>Interrogeable via Web API (type REST)/JSON</li>
<li><a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html">Documentation très importante !</a></li>
</ul>
</section>
<section>
<h2>Pourquoi c'est mieux qu'un SGBD classique ?</h2>
<ul>
<li>Index à créer à la main</li>
<li>Degré de pertinence difficile à calculer</li>
<li>Plus la base augmente, plus la requête sera longue</li>
<li>...</li>
<li>MySQL n'est tout simplement pas un moteur de recherche !</li>
</ul>
<br><br>
<a href="http://www.cestpasdur.com/elasticsearch/2012/04/01/elasticsearch-vs-mysql-recherche.html">Comparatif MySQL/Elasticsearch</a>
</section>
<section>
<h2>Zéro config !</h2>
<pre><code data-trim contenteditable>
# Java?
java -version
# Download
curl -L -O https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.5.tar.gz
tar -xvf elasticsearch-1.7.5.tar.gz
cd elasticsearch-1.7.5/bin
# Let's get it started!
./bin/elasticsearch
</code></pre>
</section>
<section>
<h2>Wording</h2>
<table>
<thead>
<tr>
<th>SGBD</th>
<th>Elasticsearch</th>
</tr>
</thead>
<tbody>
<tr><td>Base</td><td>Index</td></tr>
<tr><td>Table</td><td>Type</td></tr>
<tr><td>Tuple/Enregistrement</td><td>Document</td></tr>
<tr><td>Champs</td><td>Field</td></tr>
<tr><td>Schema</td><td>Mapping</td></tr>
</tbody>
</table>
</section>
<section>
<h2>Opération: SQL vs. HTTP Verbs</h2>
<table>
<tbody>
<tr>
<td>C</td><td>INSERT INTO</td><td>POST/PUT</td>
</tr>
<tr>
<td>R</td><td>SELECT</td><td>GET /_search</td>
</tr>
<tr>
<td>U</td><td>UPDATE</td><td>POST/PUT</td>
</tr>
<tr>
<td>D</td><td>DELETE</td><td>DELETE</td>
</tr>
</tbody>
</table>
</section>
</section>
<section>
<section>
<h2>Requêter</h2>
<img data-src="img/panda.gif" style="border:none;width: 50%;">
</section>
<section>
<h2>URI : Structure générale</h2>
<pre><code data-trim>
http://host:port/[index]/[type]/[_action|id]
</code></pre>
<p>Exemples:</p>
<ul>
<li>localhost:9200/contenus/article/1</li>
<li>localhost:9200/contenus/news/2</li>
<li>localhost:9200/contenus/interview/3</li>
<li>localhost:9200/users/</li>
</ul>
</section>
<section>
<h2>Requêtes de base</h2>
<pre><code data-trim>
# Recherche des occurences "elastic" sur tous les types de contenus
GET http://localhost:9200/contenus/_search?q=elastic
# Recherche des articles commençant par "elastic"
GET http://localhost:9200/contenus/article/_search?q=elastic*
# Recherche des occurences correspondantes à peu près à "elstic"
GET http://localhost:9200/contenus/article/_search?q=elstic~
# Recherche sur une propriété
GET http://localhost:9200/contenus/article/_search?q=publie:true
## Combo !
GET http://localhost:9200/contenus/_search?q=elastic&publie:true
GET http://localhost:9200/contenus/article,interview/_search?q=elastic
GET http://localhost:9200/contenus/_search?q=elas~&publie:true&from:10&size:30
</code></pre>
<a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/search-uri-request.html">Documentation</a>
</section>
<section>
<h2>Résultats</h2>
<div class="row">
<div class="span7">
<img data-src="img/resultjson2.PNG" style="border:none;width: 80%;">
</div>
<div class="span5">
<ol>
<li>Informations sur la requête</li>
<li>Nombre de résultats</li>
<li>Score maximum (score du résultat le plus pertinent)</li>
<li>Informations sur le résultat</li>
<li>Données du résultat</li>
<li>Autres résultats (masqués)</li>
</ol>
</div>
</div>
</section>
<section>
<h2>Et si je veux un truc beaucoup plus tordu ?</h2>
<video src="img/panda-fall.webm" id="main-video" autoplay="" loop=""></video>
</section>
</section>
<section>
<section>
<h2>Requêtes custom</h2>
<video src="img/panda-slide.webm" id="main-video" autoplay="" loop=""></video>
</section>
<section>
<h2>Query Vs. Filter</h2>
<p>
<b>Query</b> : chaque argument va impacter le score.<br>
<em>Ex : je recherche un article qui a pour titre "bim" et qui a dans son corps "bam"</em>
</p>
<br>
<p>
<b>Filter</b> : va éliminer des résultats.<br>
<em>Ex : l'article doit être publié, la date de création doit-être entre 2014 et 2015.</em>
</p>
</section>
<section>
<h2>MUST/SHOULD/MUST NOT</h2>
<img data-src="img/shouldmust.jpg" style="border:none;width: 70%;">
</section>
<section>
<h2>DSL</h2>
<pre><code data-trim>
POST /contenus/_search
{
"query": {
"query_string": {
"default_field": "_all",
"query": "elastic~"
}
},
"filter": {
"bool": {
"must": [{
"term": {
"publie": 1
}
}, {
"range": {
"dateDebutPublication": {
"lte": "now"
}
}
}, {
"nested": {
"path": "auteur",
"query": {
"term": {
"nom": "POUTORD"
}
}
}
}
]
}
},
"from": 0,
"size": 50,
"sort": [],
"aggs": {}
}
</code></pre>
</section>
<section>
<h2>Et les "jointures" ?</h2>
<p>
C'est possible !<br>
<i class="fa fa-exclamation-triangle"></i> Mais en général... il y a un problème de mapping ! <i class="fa fa-exclamation-triangle"></i>
</p>
</section>
</section>
<section>
<section>
<h2>Elasticsearch dans l'écoosystème PHP/Symfony2</h2>
<video src="img/elephant-skydiving.webm" id="main-video" autoplay="" loop=""></video>
</section>
<section>
<h2>FOSElasticaBundle (1/2)</h2>
<ul>
<li>Installation classique (composer require, ajout du bundle dans le kernel)</li>
<li>Interfaçage rapide avec doctrine</li>
<li>Version maximale supportée 1.x <i class="fa fa-thumbs-o-down"></i></li>
</ul>
</section>
<section>
<h2>FOSElasticaBundle (2/2)</h2>
<pre><code data-trim>
fos_elastica:
clients:
default: { host: localhost, port: 9200 }
indexes:
contenus:
types:
article:
mappings:
titre: ~
corps: ~
publie: ~
slug: ~
utilisateur:
type: "nested"
properties:
nom: ~
prenom: ~
persistence:
driver: orm
model: LP\ArticleBundle\Entity\Article
provider: ~
listener: ~
finder: ~
</code></pre>
<p>Et voilà !</p>
</section>
<section>
<h2>Elastica.io</h2>
<ul>
<li>Va servir pour faire des <b>recherches</b></li>
<li>Moins buggé que le Finder du <a href="https://github.com/FriendsOfSymfony/FOSElasticaBundle/issues/227#issuecomment-182481141">FOSElasticaBundle</a></li>
<li>Inclu avec le FOSElasticaBundle</li>
</ul>
</section>
<section>
<h2>Elastica.io : recherche simple</h2>
<pre><code data-trim>
use Elastica\Request as ElasticaRequest;
//...
$userQuery = "bob";
$client = $this->container->get('fos_elastica.client');
$query = array(
'query' => array(
'query_string' => array(
'query' => $userQuery,
)
),
'from' => '6', //optional (default 0)
'size' => '5' //optional (default 10)
);
$results = $client->request('/users/_search', ElasticaRequest::GET, $query);
$results->getData();
</code></pre>
</section>
<section>
<h2>Elastica.io : recherche avancée</h2>
<pre><code data-trim>
$queryString = new \Elastica\Query\QueryString('test*');
$searchQuery = new \Elastica\Query();
$searchQuery->setQuery($queryString);
$publishFilter = new \Elastica\Filter\Term();
$publishFilter->addParam("publie", true);
$boolFilter = new \Elastica\Filter\Bool();
$boolFilter->addMust($publishFilter);
$searchQuery->setPostFilter($boolFilter);
$searchQuery->setFrom(0);
$searchQuery->setSize(50);
$resultSet = $type->search($searchQuery);
</code></pre>
</section>
<section>
<h2>Elastica.io : Fonctionnement</h2>
<p>Méthodologie :</p>
<ol>
<li>Ecrire sa requête en DSL</li>
<li>L'adapter en PHP</li>
</ol>
<p>
Documentation faiblarde ?<br>
<i class="fa fa-arrow-right"></i> Lisez les <a href="https://github.com/ruflin/Elastica/tree/master/test/lib/Elastica/Test">tests</a> !
</p>
</section>
</section>
<section>
<section>
<h2>Plugins</h2>
</section>
<section>
<h2>Head (1/3)</h2>
<ul>
<li>Visualiser les données</li>
<li>Requêter</li>
</ul>
<p class="alert">
Activer CORS : <br>config/elasticsearch.yml > http.cors.enabled=true.
</p>
</section>
<section>
<h2>Head (2/3)</h2>
<img data-src="img/head-1.PNG" style="border:none;width: 70%;"><br>
</section>
<section>
<h2>Head (3/3)</h2>
<img data-src="img/head-2.PNG" style="border:none;width: 70%;"><br>
</section>
<section>
<h2>Sense (plugin Chrome)</h2>
<ul>
<li>Permet uniquement de requêter</li>
<li>Autocomplétion</li>
<li>Indique quand le JSON est mal formé</li>
</ul>
<img data-src="img/sense.PNG" style="border:none;width: 70%;"><br>
<a href="https://chrome.google.com/webstore/detail/sense-beta/lhjgkmllcaadmopgmanpapmpjgmfcfig"><i class="fa fa-chrome"></i>
Téléchargement</a>
</section>
</section>
<section>
<section>
<h2>Conclusion</h2>
<p>Avantage :</p>
<ul>
<li>Ultra rapide</li>
<li>Facile à mettre en place</li>
<li>Un vrai moteur de recherche</li>
<li>...</li>
</ul>
<br>
<p>Inconvénients :</p>
<ul>
<li>Requêtes en JSON</li>
<li>Erreurs en JSON</li>
</ul>
</section>
<section>
<h2>Toujours plus loin !</h2>
<ul>
<li>Highlightting</li>
<li>Scroll</li>
<li>Localisation</li>
<li>Fuzzy search (<em>did you mean xxx?</em>)</li>
<li>...</li>
</ul>
<aside class="notes">
Levenshtein distance
</aside>
</section>
<section>
<h2>ELK (1/2)</h2>
<p>Elasticsearch - Logstash - Kibana</p>
<img data-src="img/elk.PNG" style="border:none;width: 80%;"><br>
</section>
<section>
<h2>ELK (2/2)</h2>
<img data-src="img/kibana.png" style="border:none;width: 80%;"><br>
</section>
</section>
<section>
<h2>Crédits</h2>
<ul>
<li><a href="https://www.youtube.com/watch?v=XUGGZEINh0I">Indexation et recherche "like a boss" avec Elastica - Damien Alexandre - PHP Tour Lyon 2014 #phptour</a></li>
</ul>
</section>
</div>
</div>
<script src="reveal.js/lib/js/head.min.js"></script>
<script src="reveal.js/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
slideNumber: true,
history: true,
center: true,
width: 1000,
height: 700,
transition: 'convex', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal.js/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'reveal.js/plugin/zoom-js/zoom.js', async: true },
{ src: 'reveal.js/plugin/notes/notes.js', async: true }
]
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-67868977-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>