Slide 1

Slide 1 text

Elasticsearch for Lua Developers Pablo Musa [email protected]

Slide 2

Slide 2 text

+ +

Slide 3

Slide 3 text

Me Pablo Musa Educational Engineer @ Elastic

Slide 4

Slide 4 text

www.elastic.co 4 • 5 interested students
 • 3 very good proposals
 • Key Points: - Background (Lua, Elasticsearch, Open Source) - Availability (how many hours per week) - Future (development likelihood after GSoC) Which student?

Slide 5

Slide 5 text

Dhaval Kapil 3rd year computer science student at IIT Roorkee Passionate about networking, security and development Active participant in CTFs. Also, a developer and challenge setter of Backdoor CTF. (http://backdoor.sdslabs.co/) Mostly self-taught himself by reading books and online articles. https://dhavalkapil.com/

Slide 6

Slide 6 text

www.elastic.co 6 • Elasticsearch • Elasticsearch & Lua • elasticsearch-lua • WERpapers • Elastic Agenda

Slide 7

Slide 7 text

Elasticsearch is ...

Slide 8

Slide 8 text

www.elastic.co 8 an open source, distributed, scalable, highly available, document-oriented, RESTful full text search engine with soft real-time search and analytics capabilities Elasticsearch is...

Slide 9

Slide 9 text

www.elastic.co 9 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is... Apache 2.0 License https://www.apache.org/licenses/LICENSE-2.0

Slide 10

Slide 10 text

www.elastic.co 10 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is...

Slide 11

Slide 11 text

www.elastic.co 11 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is...

Slide 12

Slide 12 text

www.elastic.co 12 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is...

Slide 13

Slide 13 text

www.elastic.co 13 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is... { "name" : "Webinar" "geo" : { "city" : "Amsterdam", "lat" : 4.85, "lon" : 52.34 } } Source:  http://json.org/

Slide 14

Slide 14 text

www.elastic.co 14 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is... Source:  https://httpwg.github.io/asset/http.svg

Slide 15

Slide 15 text

www.elastic.co 15 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is...

Slide 16

Slide 16 text

www.elastic.co 16 an open source, distributed, scalable, highly available, document-oriented, RESTful, full text search engine with real-time search and analytics capabilities Elasticsearch is...

Slide 17

Slide 17 text

www.elastic.co 17 Getting up and running... is easy $ wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.1.tar.gz $ tar -zxf elasticsearch-1.7.1.tar.gz $ cd elasticsearch-1.7.1 $ ./bin/elasticsearch http://localhost:9200

Slide 18

Slide 18 text

Elasticsearch & Lua

Slide 19

Slide 19 text

www.elastic.co 19 About the Project • 3-month project • A "complete" Lua client to access the Elasticsearch REST API • Influence of official clients • Respect the student

Slide 20

Slide 20 text

"Nobody should have a reason not to use the client" We have no opinions Respect the language Elasticsearch Clients Design Principles

Slide 21

Slide 21 text

www.elastic.co 21 Much more than just a "JSON and HTTP wrapper" • Distributed systems - sniffer - selector • Add Features - reindex - common syntax

Slide 22

Slide 22 text

www.elastic.co 22 High Level Architecture Client Sniffer Transport Connection  Pool Selector ... Random RoundRobin Connection Connection Connection other  http  lib luasocket Parser lua-­‐yajl cjson Helper

Slide 23

Slide 23 text

elasticsearch-lua

Slide 24

Slide 24 text

www.elastic.co 24 Lua vs JSON { title = "A Requirements Elicitation Approach Based in Templates and Patterns", author = "A. Durán Toro", add_authors = { "B. Bernárdez Jiménez", "A. Ruiz Cortés", "M. Toro Bonilla" }, key_words = { "requirements engineering", "requirements elicitation" }, language = "en", conference = "WER99", } { "title" : "A Requirements Elicitation Approach Based in Templates and Patterns", "author" : "A. Durán Toro", "add_authors" : [ "B. Bernárdez Jiménez", "A. Ruiz Cortés", "M. Toro Bonilla" ], "key_words" : [ "requirements engineering", "requirements elicitation" ], "language" : "en", "conference" : "WER99", }

Slide 25

Slide 25 text

www.elastic.co 25 CRUD local paper = { title = "A Requirements Elicitation Approach Based in Templates and Patterns", ... } local elasticsearch = require"elasticsearch" local client = elasticsearch.client() -- use default configs local r, e = client:index({ index = "papers", type = "wer", id = 1, body = paper }) local r, e = client:get( { index = "papers", type = "wer", id = 1 } ) local r, e = client:delete( { index = "papers", type = "wer", id = 1 } ) local r, e = client:update({ index = "papers", type = "wer", id = 1, body = { doc = { title = "Updated Title" } } })

Slide 26

Slide 26 text

www.elastic.co 26 Searching local r, e = client:search{ index = "papers", type = "wer", body = { query = { filtered = { query = { multi_match = { query = "requirements", fields = { "key_words^10", "title^5", "abstract" } } }, filter = { range = { year = { gte = "now-3y" } } } } } } } local r, e = client:search( { index = "papers", type = "wer", q = "requirements" } ) local r, e = client:search( { index = "papers", type = "wer", q = "title:requirements"}) { took = 1.0, timed_out = false, _shards = { total = 5.0, successful = 5.0, failed = 0.0 }, hits = { total = 1.0, max_score = 0.17673586, hits = [ { _index = "papers", "_type": "wer", "_id": "1", _score = 0.17673586, _source = { title = "A Requirements Elicitation Approach Based in Templates and Patterns", key_words = { "requirements engineering", "requirements elicitation" }, year = "2013" } } ] } }

Slide 27

Slide 27 text

Why Elasticsearch?

Slide 28

Slide 28 text

www.elastic.co 28 Workshop on Requirements Engineering Ibero-american community of researchers on Requirements Engineering

Slide 29

Slide 29 text

www.elastic.co 29 WERpapers • Dedicated site to the WER publications • Apache + CGILua + MySQL + Google Search

Slide 30

Slide 30 text

• Slow • No text analysis • No scoring • No auto-completion • ... Not for full text search

Slide 31

Slide 31 text

No content

Slide 32

Slide 32 text

www.elastic.co • Implement your own search result page • Relevancy based on downloads, title, abstract, etc. • Auto-complete, Highlighting, Geo, etc. • Everything in Lua 32 Elasticsearch

Slide 33

Slide 33 text

Elasticsearch is not Alone

Slide 34

Slide 34 text

www.elastic.co Copyright Elastic 2015 Copying, publishing and/or distributing without written permission is strictly prohibited 34 Elastic 2012 2013 2014 2015 Found Elasticsearch as a Service Elasticsearch Store, search, analyze Logstash Collect, parse and enrich data Kibana Visualize and explore data

Slide 35

Slide 35 text

No content

Slide 36

Slide 36 text

www.elastic.co Copyright Elastic 2015 Copying, publishing and/or distributing without written permission is strictly prohibited 36 • Forums for all products • Issue tracker • User groups & Meetups Community, community, community

Slide 37

Slide 37 text

www.elastic.co Copyright Elastic 2015 Copying, publishing and/or distributing without written permission is strictly prohibited 37 • Forums for all products • Issue tracker • User groups & Meetups Community, community, community

Slide 38

Slide 38 text

www.elastic.co Copyright Elastic 2015 Copying, publishing and/or distributing without written permission is strictly prohibited 38 • Forums for all products • Issue tracker • User groups & Meetups Community, community, community

Slide 39

Slide 39 text

www.elastic.co 39 Next Steps +Tests +Real applications +Use cases Automate Integration with Elasticsearch Make it an official client

Slide 40

Slide 40 text

www.elastic.co 40 Pablo Musa [email protected] Thanks for listening! Questions?

Slide 41

Slide 41 text

www.elastic.co 41 References https://github.com/DhavalKapil/elasticsearch-lua https://dhavalkapil.com/blogs/Elasticsearch-Lua/ http://lua-users.org/wiki/JsonModules http://wer.inf.puc-rio.br/WERpapers/