SlideShare una empresa de Scribd logo
1 de 40
Descargar para leer sin conexión
Full Text Search in MySQL 5.1
                     New Features and HowTo


                                 Alexander Rubin
                          Senior Consultant, MySQL AB




Copyright 2006 MySQL AB                        The World’s Most Popular Open Source Database   1
Full Text search

      • Natural and popular way to
        search for information
      • Easy to use: enter key words
        and get what you need




Copyright 2006 MySQL AB                 The World’s Most Popular Open Source Database   2
In this presentation

      • Improvements in FT Search in
        MySQL 5.1
      • How to speed up MySQL FT Search
      • How to search with error corrections
      • Benchmark results




Copyright 2006 MySQL AB                   The World’s Most Popular Open Source Database   3
Types of FT Search: Relevance




                      - MySQL FT: Default by relevance!

Copyright 2006 MySQL AB                     The World’s Most Popular Open Source Database   4
Types of FT Search: Boolean Search




                          - MySQL FT: No default sorting!

Copyright 2006 MySQL AB                         The World’s Most Popular Open Source Database   5
Types of FT Search: Phrase Search




Copyright 2006 MySQL AB           The World’s Most Popular Open Source Database   6
Full Text Solutions
   Type                           Solution

   MySQL Built-in                 Full Text Index
                                  (MyISAM only)
   MySQL                          Sphinx
   Integrated/External
   External                       Lucene
                                  MnogoSearch
   “Hardware boxes”               Google box
                                  “Fast” box
Copyright 2006 MySQL AB                      The World’s Most Popular Open Source Database   7
MySQL Full Text Index Features

      • Available only for MyISAM tables
      • Natural Language Search and boolean
        search
      • ft_min_word_len – 4 char per word by
        default
      • Stop word list by default
      • Frequency based ranking
             – Distance between words is not counted



Copyright 2006 MySQL AB                     The World’s Most Popular Open Source Database   8
MySQL Full Text: Creating Full Text Index

  mysql> CREATE TABLE articles (
  -> id INT UNSIGNED
   AUTO_INCREMENT NOT NULL
   PRIMARY KEY,
  -> title VARCHAR(200),
  -> body TEXT,
  -> FULLTEXT (title,body)
  -> ) engine=MyISAM;
Copyright 2006 MySQL AB                  The World’s Most Popular Open Source Database   9
MySQL Full Text: Natural Language mode

    mysql> SELECT * FROM articles
    -> WHERE MATCH (title,body)
    -> AGAINST ('database' IN
     NATURAL LANGUAGE MODE);
    +-------------------+------------------------------------------+
    | title | body                                                 |
    +-------------------+------------------------------------------+
    | MySQL vs. YourSQL | In the following database comparison ... |
    | MySQL Tutorial | DBMS stands for DataBase ...                |


                          In Natural Language Mode:
                          default sorting by relevance!

Copyright 2006 MySQL AB                         The World’s Most Popular Open Source Database   10
MySQL Full Text: Boolean mode

      mysql> SELECT * FROM
       articles
      -> WHERE MATCH (title,body)
      -> AGAINST (‘cat AND dog'
       IN BOOLEAN MODE);


                     No default sorting in Boolean Mode!

Copyright 2006 MySQL AB                       The World’s Most Popular Open Source Database   11
New MySQL 5.1 Full Text Features




Copyright 2006 MySQL AB   The World’s Most Popular Open Source Database   12
New MySQL 5.1 Full Text Features
       • Faster Boolean search in MySQL 5.1
            – New “smart” index merge is implemented
            (forge.mysql.com/worklog/task.php?id=2535)


     • Custom Plug-ins
            – Replacing Default Parser

     • Better Unicode Support
            – full text index work more accurately with
              space and punctuation Unicode character
            (forge.mysql.com/worklog/task.php?id=1386)
Copyright 2006 MySQL AB                  The World’s Most Popular Open Source Database   13
MySQL 5.0 vs 5.1 Benchmark
      • MySQL 5.1 Full Text search:
        500-1000% improvement in Boolean
        mode
             – relevance based search and phrase search
               was not improved in MySQL 5.1.

      • Tested with: Data and Index
             – CDDB (music database)
             – author and title, 2 mil. CDs., varchar(255).
             – CDDB ~= amazon.com’s CD/books
               inventory
Copyright 2006 MySQL AB                    The World’s Most Popular Open Source Database   14
MySQL 5.1: 500-1000% improvement in Boolean mode




 Copyright 2006 MySQL AB      The World’s Most Popular Open Source Database   15
MySQL 5.1 Full Text: Custom “Plugins”
     • Replacing Default Parser to do following:
            – Apply special rules, such as stemming,
              different way of splitting words etc
            – Pre-parsing – processing PDF / HTML files

     • May do same for query string
            – If use stemming, search words also need to
              be stemmed for search to work.



Copyright 2006 MySQL AB                 The World’s Most Popular Open Source Database   16
Available Plugins Examples

      • Different plugins: search for “FullText” at
        forge.mysql.com/projects
      • Stemming
             – MnogoSearch has a stemming plugin
               (www.mnogosearch.com)
             – Porter stemming fulltext plugin
      • N-Gram parsers (Japanese language)
             – Simple n-gram fulltext plugin


Copyright 2006 MySQL AB                   The World’s Most Popular Open Source Database   17
Example: MnogoSearch Stemming

      • MnogoSearch includes stemming plugin
        (www.mnogosearch.org/doc/msearch-
        udmstemmer.html)
      • Configure and install:
             – Configure (follow instructions)
             – mysql> INSTALL PLUGIN stemming SONAME
               'libmnogosearch.so';
             – CREATE TABLE my_table ( my_column TEXT,
               FULLTEXT(my_column) WITH PARSER
               stemming );
             – SELECT * FROM t WHERE MATCH a
               AGAINST('test' IN BOOLEAN MODE);
Copyright 2006 MySQL AB                  The World’s Most Popular Open Source Database   18
Example: MnogoSearch Stemming

      • Configuration: stemming.conf
             – MinWordLength 2
             – Spell en latin1 american.xlg
             – Affix en latin1 english.aff
      • Grab Ispell (not Aspell) dictionaries from
        http://lasr.cs.ucla.edu/geoff/ispell-
        dictionaries.html#English-dicts
      • Any changes in stemming.conf requires
        MySQL restart
Copyright 2006 MySQL AB                   The World’s Most Popular Open Source Database   19
Example: MnogoSearch Stemming

                Stemming adds overhead on insert/update
      mysql> insert into searchindex_stemmer
      select * from enwiki.searchindex limit
      10000;
      Query OK, 10000 rows affected (44.03
      sec)

      mysql> insert into searchindex select
      * from enwiki.searchindex limit 10000;
      Query OK, 10000 rows affected (21.80
      sec)
Copyright 2006 MySQL AB                    The World’s Most Popular Open Source Database   20
Example: MnogoSearch Stemming
      mysql> SELECT count(*) FROM
      searchindex WHERE MATCH si_text
      AGAINST('color' IN BOOLEAN
      MODE);
      count(*): 861
      mysql> SELECT count(*) FROM
      searchindex_stemmer WHERE MATCH
      si_text AGAINST('color' IN
      BOOLEAN MODE);
      count(*): 1017
Copyright 2006 MySQL AB         The World’s Most Popular Open Source Database   21
Other Planned Full Text Features

      • Search for “FullText” at forge.mysql.com
      • CTYPE table for unicode character sets
        (WL#1386), complete
      • Enable fulltext search for non-MyISAM
        engines (WL#2559), Assigned
      • Stemming for fulltext (WL#2423), Assigned
      • Combined BTREE/FULLTEXT indexes
        (WL#828)
      • Many other features, YOU can vote for some

Copyright 2006 MySQL AB             The World’s Most Popular Open Source Database   22
MySQL Full Text HowTo
                Tips and Tricks




Copyright 2006 MySQL AB    The World’s Most Popular Open Source Database   23
DRBD and FullText Search

  Active DRBD                                              Passive DRBD
                                   Synchronous
     Server                      Block Replication            Server
    InnoDB                                                   InnoDB
     Tables                                                   Tables

                                                                                  Web/App
                                                                                   Server

                                                                            Full Text
                                                                            Requests
 Normal Replication Slave                    “FullText” Slaves
     InnoDB Tables                            MyISAM Tables
                                             with FT Indexes

Copyright 2006 MySQL AB                              The World’s Most Popular Open Source Database   24
Using MySQL 5.1 as a Slave
                               Master (MySQL 5.0)

                     Web/App
                      Server

                 Normal
                Requests

                                                                                 Web/App
                                                                                  Server

                                                                           Full Text
                                                                           Requests


                  Normal Slave             Full Text Slave
                  (MySQL 5.0)               (MySQL 5.1)

Copyright 2006 MySQL AB                             The World’s Most Popular Open Source Database   25
How To: Speed up MySQL FT Search

                          Fit index into memory!
             – Increase amount of RAM
             – Set key_buffer = <total size of full text
               index>. Max 4GB!
             – Preload FT indexes into buffer
                   • Use additional keys for FT index (to
                     solve 4GB limit problem)



Copyright 2006 MySQL AB                      The World’s Most Popular Open Source Database   26
SpeedUp FullText:
                   Preload FT indexes into buffer

                   mysql> set global
                    ft_key.key_buffer_size=
                   4*1024*1024*1024;
                   mysql> CACHE INDEX S1, S2,
                    <some other tables here>
                    IN ft_key;
                   mysql> LOAD INDEX INTO
                    CACHE S1, S2 …;
Copyright 2006 MySQL AB                 The World’s Most Popular Open Source Database   27
How To: Speed up MySQL FT Search

      • Manual partitioning
             – Partitioning will decrease index
               and table size
                   • Search and updates will be faster
             – Need to change application/no
               auto partitioning


Copyright 2006 MySQL AB                   The World’s Most Popular Open Source Database   28
How To: Speed up MySQL FT Search

      • Setup number of slaves for search
             – Decrease number of queries for each
               box
             – Decrease CPU usage (sorting is
               expensive)
             – Each slave can have its own data
                   • Example: search for east coast – Slaves
                     1-5, search for west coast Slaves 6-10


Copyright 2006 MySQL AB                     The World’s Most Popular Open Source Database   29
FT Scale-Out with MySQL Replication
                                    Master

                     Web/App
                      Server

                 Write
                Requests




                          Slave 1    Slave 2        Slave 3
                                                                                   Web/App
                                                                                    Server
                                    Load Balancer
                                                                             Full Text
                                                                             Requests
Copyright 2006 MySQL AB                               The World’s Most Popular Open Source Database   30
Which queries are performance killers
        – Order by/Group by
                • Natural language mode: order by relevance
                • Boolean mode: no default sorting!
                • Order by date much slower than with no
                  “order by”
         – SQL_CALC_FOUND_ROWS
                • Select SQL_CALC_FOUND_ROWS from T1 …
                  limit 10
                • Will require all result set
         – Other condition in where clause
                • MySQL can use either FT index or other
                  indexes (only FT with natural language)
Copyright 2006 MySQL AB                       The World’s Most Popular Open Source Database   31
Real World Example: Performance Killer

                          Why it is so slow?

      SELECT … FROM `ft`
      WHERE MATCH `album`
      AGAINST
      (‘the way i am’)



Copyright 2006 MySQL AB                The World’s Most Popular Open Source Database   32
Real World Example: Performance Killer

                          Note the stopword list and
                                ft_min_word_len!

             The - stopword
                                                            My.cnf:
             Way - stopword
             I   - not a stop word              ft_min_word_len =1

             Am - stopword

           query “the way i am” will filter out all words except “i”
           with standard stoplist and with ft_min_word_len =1 in
           my.cnf
Copyright 2006 MySQL AB                         The World’s Most Popular Open Source Database   33
How To: Search with error correction

      • Example: Music Search Engine
             – Search for music titles/actors
             – Need to correct users typos
                • Bob Dilane (user made typos) ->
                   – Bob Dylan (corrected)
      • Solution:
             – use soundex() mysql function
                • Soundex = sounds similar
                mysql> select soundex('Dilane');
                D450
                mysql> select soundex('Dylan');
                D450
Copyright 2006 MySQL AB                     The World’s Most Popular Open Source Database   34
Search with error corrections

      • Implementation
             1.Alter table artists add
               art_name_sndex varchar(80)
             2.Update artists set
               art_name_sndex =
               soundex(art_name)
             3.Select art_name from artists
               where art_name_sndex =
               soundex(‘Bob Dilane') limit 10

Copyright 2006 MySQL AB                The World’s Most Popular Open Source Database   35
Search with error corrections: Sorting
      • Popularity of the artist
             – Select art_name from artists where
               art_name_sndex = soundex(‘Dilane')
               order by popularity limit 10
      • Most similar matches fist – order by
        levenstein distance
             – The Levenshtein distance between two strings
               = minimum number of operations needed to
               transform one string into the other
             – Levenstein can be done by stored function or
               UDF

Copyright 2006 MySQL AB                   The World’s Most Popular Open Source Database   36
Sphinx Search
      • Features
             – Open Source, http://www.sphinxsearch.com
             – Fast searches for the large data
             – Designed for indexing Database content
             – Supports multi-node clustering out of box, Multiple
               Attributes (date, price, etc)
             – Different sort modes (relevance, data etc)
             – Client available as MySQL Storage Engine plugin
             – Fast Index creation (up to 10M/sec)
      • Disadvantages:
             – External solution: need to be integrated
             – No online index updates (have to build whole
               index)
Copyright 2006 MySQL AB                        The World’s Most Popular Open Source Database   37
How to configure Sphinx with MySQL

      • Sphinx engine/plugin is not full engine:
             – still need to run “searcher” daemon

      • Need to compile MySQL source with
        Sphinx to integrate it
        – MySQL 5.0: need to patch source
          code
        – MySQL 5.1: no need to patch, copy
          Sphinx plugin to plugin dir

Copyright 2006 MySQL AB                   The World’s Most Popular Open Source Database   38
How to Integrate Sphinx with MySQL
      • Sphinx can be MySQL’s storage engine
      CREATE TABLE t1
         (id            INTEGER NOT NULL,
          weight        INTEGER NOT NULL,
          query         VARCHAR(3072) NOT NULL,
          group_id      INTEGER,
          INDEX(query)
         ) ENGINE=SPHINX
           CONNECTION="sphinx://localhost:
           3312/enwiki";
             SELECT * FROM enwiki.searchindex docs
             JOIN test.t1 ON (docs.si_page=t1.id)
             WHERE query="one document;mode=any"
               limit 1;
Copyright 2006 MySQL AB              The World’s Most Popular Open Source Database   39
Time for questions




                          Questions?
                          www.mysqlfulltextsearch.com




Copyright 2006 MySQL AB                        The World’s Most Popular Open Source Database   40

Más contenido relacionado

Más de Márcio Antônio Moraes Reyes

Más de Márcio Antônio Moraes Reyes (20)

Instalação elétrica
Instalação elétricaInstalação elétrica
Instalação elétrica
 
Trabalho tribal01.svg
Trabalho tribal01.svgTrabalho tribal01.svg
Trabalho tribal01.svg
 
3dxp_programming
3dxp_programming3dxp_programming
3dxp_programming
 
67580196-receitas
67580196-receitas67580196-receitas
67580196-receitas
 
4490170-Arabic-Cooking-Recipes
4490170-Arabic-Cooking-Recipes4490170-Arabic-Cooking-Recipes
4490170-Arabic-Cooking-Recipes
 
Fluxo Menus Editáveis
Fluxo Menus EditáveisFluxo Menus Editáveis
Fluxo Menus Editáveis
 
acordes y escalas para guitarra
acordes y escalas para guitarraacordes y escalas para guitarra
acordes y escalas para guitarra
 
Joan_Baez-Diamonds_And_Rust
Joan_Baez-Diamonds_And_RustJoan_Baez-Diamonds_And_Rust
Joan_Baez-Diamonds_And_Rust
 
3106741-MySQLStoredProcedures
3106741-MySQLStoredProcedures3106741-MySQLStoredProcedures
3106741-MySQLStoredProcedures
 
ART169_tut_flash
ART169_tut_flashART169_tut_flash
ART169_tut_flash
 
ART146_tut_4
ART146_tut_4ART146_tut_4
ART146_tut_4
 
FINNISH GRAMMAR
FINNISH GRAMMARFINNISH GRAMMAR
FINNISH GRAMMAR
 
br-ficha-inscripcion-beca-odp
br-ficha-inscripcion-beca-odpbr-ficha-inscripcion-beca-odp
br-ficha-inscripcion-beca-odp
 
Documento sem título
Documento sem títuloDocumento sem título
Documento sem título
 
19321927-MySQL-and-Java
19321927-MySQL-and-Java19321927-MySQL-and-Java
19321927-MySQL-and-Java
 
4488990-IndianRecipes
4488990-IndianRecipes4488990-IndianRecipes
4488990-IndianRecipes
 
Escalas de Blues GUITARRA
Escalas de Blues GUITARRAEscalas de Blues GUITARRA
Escalas de Blues GUITARRA
 
Finnish Conversation
Finnish ConversationFinnish Conversation
Finnish Conversation
 
Grafica do Senado.odt
Grafica do Senado.odtGrafica do Senado.odt
Grafica do Senado.odt
 
Mini Curso de Piano - Metodo Frances de Piano
Mini Curso de Piano - Metodo Frances de PianoMini Curso de Piano - Metodo Frances de Piano
Mini Curso de Piano - Metodo Frances de Piano
 

Último

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 

Último (20)

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 

2555305-MySQL-Full-Text-Search-in-MySQL-51-New-Features-and-How-To

  • 1. Full Text Search in MySQL 5.1 New Features and HowTo Alexander Rubin Senior Consultant, MySQL AB Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 1
  • 2. Full Text search • Natural and popular way to search for information • Easy to use: enter key words and get what you need Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 2
  • 3. In this presentation • Improvements in FT Search in MySQL 5.1 • How to speed up MySQL FT Search • How to search with error corrections • Benchmark results Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 3
  • 4. Types of FT Search: Relevance - MySQL FT: Default by relevance! Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 4
  • 5. Types of FT Search: Boolean Search - MySQL FT: No default sorting! Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 5
  • 6. Types of FT Search: Phrase Search Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 6
  • 7. Full Text Solutions Type Solution MySQL Built-in Full Text Index (MyISAM only) MySQL Sphinx Integrated/External External Lucene MnogoSearch “Hardware boxes” Google box “Fast” box Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 7
  • 8. MySQL Full Text Index Features • Available only for MyISAM tables • Natural Language Search and boolean search • ft_min_word_len – 4 char per word by default • Stop word list by default • Frequency based ranking – Distance between words is not counted Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 8
  • 9. MySQL Full Text: Creating Full Text Index mysql> CREATE TABLE articles ( -> id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, -> title VARCHAR(200), -> body TEXT, -> FULLTEXT (title,body) -> ) engine=MyISAM; Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 9
  • 10. MySQL Full Text: Natural Language mode mysql> SELECT * FROM articles -> WHERE MATCH (title,body) -> AGAINST ('database' IN NATURAL LANGUAGE MODE); +-------------------+------------------------------------------+ | title | body | +-------------------+------------------------------------------+ | MySQL vs. YourSQL | In the following database comparison ... | | MySQL Tutorial | DBMS stands for DataBase ... | In Natural Language Mode: default sorting by relevance! Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 10
  • 11. MySQL Full Text: Boolean mode mysql> SELECT * FROM articles -> WHERE MATCH (title,body) -> AGAINST (‘cat AND dog' IN BOOLEAN MODE); No default sorting in Boolean Mode! Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 11
  • 12. New MySQL 5.1 Full Text Features Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 12
  • 13. New MySQL 5.1 Full Text Features • Faster Boolean search in MySQL 5.1 – New “smart” index merge is implemented (forge.mysql.com/worklog/task.php?id=2535) • Custom Plug-ins – Replacing Default Parser • Better Unicode Support – full text index work more accurately with space and punctuation Unicode character (forge.mysql.com/worklog/task.php?id=1386) Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 13
  • 14. MySQL 5.0 vs 5.1 Benchmark • MySQL 5.1 Full Text search: 500-1000% improvement in Boolean mode – relevance based search and phrase search was not improved in MySQL 5.1. • Tested with: Data and Index – CDDB (music database) – author and title, 2 mil. CDs., varchar(255). – CDDB ~= amazon.com’s CD/books inventory Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 14
  • 15. MySQL 5.1: 500-1000% improvement in Boolean mode Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 15
  • 16. MySQL 5.1 Full Text: Custom “Plugins” • Replacing Default Parser to do following: – Apply special rules, such as stemming, different way of splitting words etc – Pre-parsing – processing PDF / HTML files • May do same for query string – If use stemming, search words also need to be stemmed for search to work. Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 16
  • 17. Available Plugins Examples • Different plugins: search for “FullText” at forge.mysql.com/projects • Stemming – MnogoSearch has a stemming plugin (www.mnogosearch.com) – Porter stemming fulltext plugin • N-Gram parsers (Japanese language) – Simple n-gram fulltext plugin Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 17
  • 18. Example: MnogoSearch Stemming • MnogoSearch includes stemming plugin (www.mnogosearch.org/doc/msearch- udmstemmer.html) • Configure and install: – Configure (follow instructions) – mysql> INSTALL PLUGIN stemming SONAME 'libmnogosearch.so'; – CREATE TABLE my_table ( my_column TEXT, FULLTEXT(my_column) WITH PARSER stemming ); – SELECT * FROM t WHERE MATCH a AGAINST('test' IN BOOLEAN MODE); Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 18
  • 19. Example: MnogoSearch Stemming • Configuration: stemming.conf – MinWordLength 2 – Spell en latin1 american.xlg – Affix en latin1 english.aff • Grab Ispell (not Aspell) dictionaries from http://lasr.cs.ucla.edu/geoff/ispell- dictionaries.html#English-dicts • Any changes in stemming.conf requires MySQL restart Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 19
  • 20. Example: MnogoSearch Stemming Stemming adds overhead on insert/update mysql> insert into searchindex_stemmer select * from enwiki.searchindex limit 10000; Query OK, 10000 rows affected (44.03 sec) mysql> insert into searchindex select * from enwiki.searchindex limit 10000; Query OK, 10000 rows affected (21.80 sec) Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 20
  • 21. Example: MnogoSearch Stemming mysql> SELECT count(*) FROM searchindex WHERE MATCH si_text AGAINST('color' IN BOOLEAN MODE); count(*): 861 mysql> SELECT count(*) FROM searchindex_stemmer WHERE MATCH si_text AGAINST('color' IN BOOLEAN MODE); count(*): 1017 Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 21
  • 22. Other Planned Full Text Features • Search for “FullText” at forge.mysql.com • CTYPE table for unicode character sets (WL#1386), complete • Enable fulltext search for non-MyISAM engines (WL#2559), Assigned • Stemming for fulltext (WL#2423), Assigned • Combined BTREE/FULLTEXT indexes (WL#828) • Many other features, YOU can vote for some Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 22
  • 23. MySQL Full Text HowTo Tips and Tricks Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 23
  • 24. DRBD and FullText Search Active DRBD Passive DRBD Synchronous Server Block Replication Server InnoDB InnoDB Tables Tables Web/App Server Full Text Requests Normal Replication Slave “FullText” Slaves InnoDB Tables MyISAM Tables with FT Indexes Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 24
  • 25. Using MySQL 5.1 as a Slave Master (MySQL 5.0) Web/App Server Normal Requests Web/App Server Full Text Requests Normal Slave Full Text Slave (MySQL 5.0) (MySQL 5.1) Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 25
  • 26. How To: Speed up MySQL FT Search Fit index into memory! – Increase amount of RAM – Set key_buffer = <total size of full text index>. Max 4GB! – Preload FT indexes into buffer • Use additional keys for FT index (to solve 4GB limit problem) Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 26
  • 27. SpeedUp FullText: Preload FT indexes into buffer mysql> set global ft_key.key_buffer_size= 4*1024*1024*1024; mysql> CACHE INDEX S1, S2, <some other tables here> IN ft_key; mysql> LOAD INDEX INTO CACHE S1, S2 …; Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 27
  • 28. How To: Speed up MySQL FT Search • Manual partitioning – Partitioning will decrease index and table size • Search and updates will be faster – Need to change application/no auto partitioning Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 28
  • 29. How To: Speed up MySQL FT Search • Setup number of slaves for search – Decrease number of queries for each box – Decrease CPU usage (sorting is expensive) – Each slave can have its own data • Example: search for east coast – Slaves 1-5, search for west coast Slaves 6-10 Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 29
  • 30. FT Scale-Out with MySQL Replication Master Web/App Server Write Requests Slave 1 Slave 2 Slave 3 Web/App Server Load Balancer Full Text Requests Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 30
  • 31. Which queries are performance killers – Order by/Group by • Natural language mode: order by relevance • Boolean mode: no default sorting! • Order by date much slower than with no “order by” – SQL_CALC_FOUND_ROWS • Select SQL_CALC_FOUND_ROWS from T1 … limit 10 • Will require all result set – Other condition in where clause • MySQL can use either FT index or other indexes (only FT with natural language) Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 31
  • 32. Real World Example: Performance Killer Why it is so slow? SELECT … FROM `ft` WHERE MATCH `album` AGAINST (‘the way i am’) Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 32
  • 33. Real World Example: Performance Killer Note the stopword list and ft_min_word_len! The - stopword My.cnf: Way - stopword I - not a stop word ft_min_word_len =1 Am - stopword query “the way i am” will filter out all words except “i” with standard stoplist and with ft_min_word_len =1 in my.cnf Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 33
  • 34. How To: Search with error correction • Example: Music Search Engine – Search for music titles/actors – Need to correct users typos • Bob Dilane (user made typos) -> – Bob Dylan (corrected) • Solution: – use soundex() mysql function • Soundex = sounds similar mysql> select soundex('Dilane'); D450 mysql> select soundex('Dylan'); D450 Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 34
  • 35. Search with error corrections • Implementation 1.Alter table artists add art_name_sndex varchar(80) 2.Update artists set art_name_sndex = soundex(art_name) 3.Select art_name from artists where art_name_sndex = soundex(‘Bob Dilane') limit 10 Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 35
  • 36. Search with error corrections: Sorting • Popularity of the artist – Select art_name from artists where art_name_sndex = soundex(‘Dilane') order by popularity limit 10 • Most similar matches fist – order by levenstein distance – The Levenshtein distance between two strings = minimum number of operations needed to transform one string into the other – Levenstein can be done by stored function or UDF Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 36
  • 37. Sphinx Search • Features – Open Source, http://www.sphinxsearch.com – Fast searches for the large data – Designed for indexing Database content – Supports multi-node clustering out of box, Multiple Attributes (date, price, etc) – Different sort modes (relevance, data etc) – Client available as MySQL Storage Engine plugin – Fast Index creation (up to 10M/sec) • Disadvantages: – External solution: need to be integrated – No online index updates (have to build whole index) Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 37
  • 38. How to configure Sphinx with MySQL • Sphinx engine/plugin is not full engine: – still need to run “searcher” daemon • Need to compile MySQL source with Sphinx to integrate it – MySQL 5.0: need to patch source code – MySQL 5.1: no need to patch, copy Sphinx plugin to plugin dir Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 38
  • 39. How to Integrate Sphinx with MySQL • Sphinx can be MySQL’s storage engine CREATE TABLE t1 (id INTEGER NOT NULL, weight INTEGER NOT NULL, query VARCHAR(3072) NOT NULL, group_id INTEGER, INDEX(query) ) ENGINE=SPHINX CONNECTION="sphinx://localhost: 3312/enwiki"; SELECT * FROM enwiki.searchindex docs JOIN test.t1 ON (docs.si_page=t1.id) WHERE query="one document;mode=any" limit 1; Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 39
  • 40. Time for questions Questions? www.mysqlfulltextsearch.com Copyright 2006 MySQL AB The World’s Most Popular Open Source Database 40