beyond the solr eclipse - drupalcon › sites › default › files... · options available for...

32
Beyond the Solr Eclipse Building blazing fast Drupal 8 search with Solr and no code

Upload: others

Post on 25-Jun-2020

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Beyond the Solr EclipseBuilding blazing fast Drupal 8 search with

Solr and no code

Page 2: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

TANAY SAI

Technical Services ManagerAcquia India

www.tanay.co.in

@saitanay

Page 3: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

JAYAKRISHNAN JAYABAL

Technical ArchitectAcquia India

@jayakrishnanjay

Page 4: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 5: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Modules/Software Used

● Drupal 8

● https://www.drupal.org/project/search_api

● https://www.drupal.org/project/search_api_solr

● https://www.drupal.org/project/facets

● Solarium (Required by Search API)

○ composer require solarium/solarium

Page 6: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

What is Solr?

● an open source search platform● built upon a Java library called Lucene

Page 7: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Who uses Solr?

From http://lucene.apache.org/solr/

Page 8: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Problems with Core SearchWhy do we need it in place of

database search?● Slow especially with a large number of nodes● Features like Stemming, Highlighting, Spell check missing or

tricky to accomplish● Queries on Phrases don’t work great, compared to solr

Page 9: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Apachesolr

“fast access to big data on a budget”

Page 10: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Options available for hosting Solr

● Acquia Search - Bundled with Acquia Cloud● www.hostedapachesolr.com● www.measuredsearch.com● Fairly simple to spin up your own solr instance

on AWS alongside your webserver

Page 11: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Search API Solr vs Apache SolrD7 & D8

Page 12: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

What is a server? What is an index?

Page 13: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 14: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 15: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 16: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 17: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Adding a Server….

Page 18: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 19: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 20: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 22: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your
Page 25: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Building “Phone Finder”

Page 26: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

1) Check index - See all fields 2) Create View - display results only 3) Enable Facets module 4) Create “Brand” Facet 5) Place the block6) Create “Price” Exposed filter 7) Place the block8) Create “Features” Facet9) Place the block

Page 27: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

● drupal:8.3.1● search_api:8.x-1.0-rc2 (Latest : 8.x-1.0 released on April 26))● search_api_solr:8.x-1.0-beta2 (Latest : beta2)● facets:1.0.0-alpha9 (Latest)

Module Compatibility

Page 28: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

More modules in the ecosystem..

https://www.drupal.org/project/search_api_attachments - In Beta

Page 29: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Work in Progress..

● Autocomplete - Needs work● Multilingual - Needs work● Spell Check / “Did you mean..” - In Sandbox - Needs work

Page 30: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Our small work on D7 Apachesolr

Page 31: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

www.d8cards.com

Also Checkout..

Page 32: Beyond the Solr Eclipse - DrupalCon › sites › default › files... · Options available for hosting Solr Acquia Search - Bundled with Acquia Cloud Fairly simple to spin up your

Questions?Jayakrishnan [email protected]@acquia.com

Tanay [email protected]@acquia.com

@ Acquia Booth - Between 2PM-3PM today

Site Building Videos available at http://bit.ly/beyondsolr