yokozuna
play

Yokozuna NoSQL Search Amsterdam 2013 Me What is Yokozuna? Source: - PowerPoint PPT Presentation

Yokozuna NoSQL Search Amsterdam 2013 Me What is Yokozuna? Source: http://katrinainjapan.files.wordpress.com/2013/08/yokozuna.jpg Sumo Wrestling Term Horizontal rope. The top rank in sumo, usually translated Grand Champion. The name comes


  1. Yokozuna NoSQL Search Amsterdam 2013

  2. Me

  3. What is Yokozuna?

  4. Source: http://katrinainjapan.files.wordpress.com/2013/08/yokozuna.jpg

  5. Sumo Wrestling Term “Horizontal rope. The top rank in sumo, usually translated Grand Champion. The name comes from the rope a yokozuna wears for the dohy ō -iri.” Source: http://en.wikipedia.org/wiki/Glossary_of_sumo_terms

  6. Riak + Amazing KV Store + Distributed + Highly Available + Easily Scalable + Self Healing + Open Source

  7. Consistent Hashing

  8. Replication

  9. Self Healing x x x x x x x x

  10. Riak Questions?

  11. Riak - Limited Query Ability - Query Performance - Index Entropy Repair - Limited Full Text Search

  12. Solr Not Solr Cloud + Amazing Query Support + Robust Inverted Index + Near Real-time Indexing + Sophisticated Analyzers + Language Support + Features: facets, highlighting, storing, sorting + Gold Standard

  13. Solr Not Solr Cloud - HA is secondary to search - Manual everything - No entropy - Key value

  14. Combine FTW • Amazing KV Store • Amazing Query Support • Distributed • Sophisticated Analyzers • Highly Available • Language Support • Easily Scalable • Great Features • Self Healing

  15. Why Yokozuna? What about Riak Search?

  16. Riak Search + Term-based sometimes better + Pure Erlang + Relatively small code base

  17. Riak Search - Large result sets (> 100k) - Memory pressure - Lack of facet query - Language support - Basic analyzers - Entropy & Repair

  18. Integrate Search • Riak Search & Basho can’t keep pace with Lucene/Solr • Don’t re-invent the search • Basho’s strength is distributed databases

  19. What About 2i? • Query one index [field] at a time • No notion of ranking • Range and exact term only • Must use leveldb or memory • No full text search • Basic types - string and int

  20. Goals of Yokozuna

  21. Goals of Yokozuna • Provide robust query against KV data • Require minimal work from user • Don’t concern user with distribution • Replace Riak Search (and then some)

  22. How does it work?

  23. Yokozuna • Erlang application like Riak KV • Erlang supervisor for Solr process

  24. Solr & JVM • Configurable jvm_args in riak.conf yokozuna.solr_jvm_args = -Xms256m -Xmx256m -XX: +UseStringCache -XX:+UseCompressedOops

  25. Indexing • Each Riak node runs a Solr instance • Store schema; create index; associate bucket • Data is automatically indexed as it is added • Index repair is provided through AAE • Extendable through custom extractors

  26. Store Schema <field name="commit_repo" type="string" indexed="true" stored="true"/> <field name="commit_hash" type="string" indexed="true" stored="true"/> <field name="commit_author" type="string" indexed="true" stored="true"/> <field name="commit_dt" type="date" indexed="true" stored="true"/> <field name="commit_subject" type="text_general" indexed="true" stored="true"/> <field name="commit_body" type="text_general" indexed="true" stored="true"/> curl -XPUT -i -H 'content-type: application/xml' 'http://localhost:10018/yz/schema/cls' --data-binary @cls.xml

  27. Create Index curl -XPUT -i -H 'content-type: application/json' 'http://localhost:10018/yz/index/cls' -d '{"schema":"cls"}'

  28. Associate Bucket curl -XPUT -i -H 'content-type: application/json' 'http://localhost:10018/buckets/my_bucket/props' -d '{"props":{"yz_index":"my_index"}}'

  29. Replication k k1 k2 k3

  30. Three Replicas k Riak kv k3 k2 k1 Solr index i3 i2 i1

  31. Features

  32. Solr has it? Yokozuna has it!* * http://wiki.apache.org/solr/DistributedSearch#Distributed_Searching_Limitations

  33. Powerful Analysis • Full-text to tokens • Lowercasing • Stemming • Synonyms • Stop-word removal • Language support

  34. Querying

  35. ?q=<field>:<term> • Single Term ?q=commit_repo:riak_kv • Boolean (OR, default) ?q=commit_repo:riak_kv%20commit_repo:riak_core • Boolean (AND) ?q=commit_repo:riak_kv%20AND%20commit_author:”Ryan %20Zezeski" • Boolean (NOT) ?q=commit_repo:riak_kv%20NOT%20commit_author:”Ryan %20Zezeski"

  36. ?q=<field>:<term> • Range (good for dates; Solr has “date math”) ?q=commit_dt:[NOW-1YEAR TO NOW] • Wildcard everything (good catch all) ?q=*:* • Wildcard terms ?q=commit_repo:riak_* • Wildcard Regex ?q=NoExample

  37. ?q=<field>:<term> • Term (Full Text) ?q=commit_subject:vnode%AND%commit_body:vnode • Phrase/Proximity (exact match) ?q=commit_body:”hinted handoff” • Phrase/Proximity (“slop”/“edit distance” of 4) ?q=commit_body:”parition vnode” ~4 • Fuzzy (slop at word level for misspellings) ?q=commit_body:behaviour ~1

  38. Sort & Rank • Sorting (good for dates with ranges) ?q=commit_dt:[NOW-1YEAR TO NOW]&sort=commit_dt %20asc • Ranking ?q=commit_body:”hinted handoff”&fl=commit_*,score

  39. Tagging • Adds 2i like functionality • Indexes via object metadata • Index tags that do not affect the object • Useful for binary objects

  40. Facets

  41. Highlighting

  42. Self Healing

  43. Hinted Handoff

  44. Replication k k1 k2 k3

  45. Three Replicas k Riak kv k3 k2 k1 Solr index i3 i2 i1

  46. Node Failure x x k x x x x x k1 x k3 k2

  47. Fallback Replica k x Riak kv k2 k3 k1 Solr index i3 i1

  48. Hinted Handoff Riak kv k2 k3 k2 k1 Solr index i3 i2 i1

  49. Hinted Handoff • When a node in Riak fails, fallbacks are used • When the node returns, data is handed back • As data is “handed-off” from fallback to primary, it is indexed on the primary

  50. Active Anti-Entropy

  51. AAE • Two systems (Riak & Solr) increase chances of inconsistency • Files can become corrupted/truncated • Solr indexes could be accidentally removed • Handles malformed KV data

  52. AAE • It uses hash trees • Updates in real time • It’s non-blocking • Periodically exchanged • Periodically expired and rebuilt • It invokes read-repair and re-index on divergence

  53. AAE - Exchange

  54. AAE - Exchange TOP HASHES DON’T MATCH - SOMETHING IS DIFFERENT

  55. AAE - Exchange NARROW DOWN THE DIVERGENT SEGMENT

  56. AAE - Exchange NARROW DOWN THE DIVERGENT SEGMENT CONT...

  57. AAE - Exchange ITER FINAL LIST OF HASHES TO FIND DIVERGENT KEYS

  58. AAE - Exchange REPAIR (RE-INDEX) KEYS THAT ARE DIVERGENT (RED)

  59. Learn More • Mailing list at docs.basho.com • #riak IRC room on irc.freenode.net • http://bit.ly/riak-2-0

  60. Questions? Thanks very much dbrown@basho.com

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend