elastic/app-search-magento

Elastic App Search official integration for Magento 2

Installs: 4 985

Dependents: 0

Suggesters: 0

Security: 0

Stars: 25

Watchers: 27

Forks: 11

Open Issues: 12

Type:magento2-module

1.0.0-beta4 2019-10-31 17:24 UTC

This package is auto-updated.

Last update: 2024-03-29 03:51:59 UTC


README

Elastic App Search Logo

68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f656c61737469632f6170702d7365617263682d6d6167656e746f GitHub release CircleCI build

A first-party Magento integration for building excellent, relevant search experiences with Elastic App Search.

⚠️ This is a beta version of the client. View known issues.

Contents

Getting started 🐣

Using this client assumes that you have already:

  • Created an App Search account on https://swiftype.com/ or you have a self managed version of App Search available
  • PHP >= 7.1
  • Magento >= 2.2.6 installed and running

You can install the module in your project by using this composer command from your Magento project root:

composer require elastic/app-search-magento:1.0.0-beta3@beta

Once the module is installed, you should clean your cache and update your Magento instance if already installed:

bin/magento cache:clean
bin/magento setup:upgrade

Usage

Configuring App Search credentials

To configure your credentials, you will need to collect the following information:

  • Your App Search API endpoint
  • Your App Search Private API key
  • Your App Search Public Search key

If using a swiftype.com account, you will be able to access this information at https://app.swiftype.com/as/credentials.

Self-managed users should connect to their App Search instance to retrieve their credentials.

From Magento Admin

You can provide your App Search credentials within Magento Admin by browsing to the Stores > Configuration > General > Elastic App Search section:

App Search Credentials Config

Note: The module will create one App Search Engine per store view. New Engines will use a prefix that can be configured within the client: e.g. magento2-catalogfulltext-search-1.

Update this setting (e.g. my-website-staging) if you plan to use the same account for several environment.

From Magento CLI

You can update credentials using the Magento CLI:

bin/magento config:set elastic_appsearch/client/api_endpoint "https://host-xxxx.api.swiftype.com"
bin/magento config:set elastic_appsearch/client/private_api_key "private-XXXXX"
bin/magento config:set elastic_appsearch/client/search_api_key "search-XXXXX"

You can additionally set the Engine prefix:

bin/magento config:set elastic_appsearch/client/engine_prefix "my-website-staging"

Configuring App Search as Magento default search engine

Once your credentials are set in Magento, you need to update Magento configuration to use App Search instead of the out of the box MySQL search engine.

Browse to the Stores > Configuration > Catalog > Catalog Search section to do so:

Engine configuration

As an alternative, you can use the Magento CLI to change the default search engine:

bin/magento config:set catalog/search/engine "elastic_appsearch"

Reindexing content

To finish the install, you need to clean your cache and reindex your content into App Search:

bin/magento cache:clean
bin/magento indexer:reindex catalogsearch_fulltext

Known issues

The module is in its first round of beta. This first round is intended to act as a technical preview, which aims to integrate App Search as a Magento search adapter interface.

There are a few caveats with the current implementation:

  • The maximum number of fields allowed by App Search (currently 64) does not allow you to index catalogs with too many products attributes (#37)

  • We will need to rework how product prices are stored into App Search to allow sites with a large number of customer groups to be indexed (#38)

  • Search relevance is still being tuned.

Development

We ❤️ developers and want everyone to be able to contribute to the module.

We have built a fully dockerized development environment using Magento sample data to help you in testing the module and contributing to the code.

Full documentation to setup your environment is available here.

FAQ 🔮

Where do I report issues with the client?

If something is not working as expected, please open an issue.

Where can I find the full App Search API documentation ?

Your best bet is to read the documentation.

Where else can I go to get help?

You can checkout the Elastic community discuss forums.

Contribute 🚀

We welcome contributors to the project. Before you begin, a couple notes...

License 📗

Open Software License ("OSL") v.3.0 © Elastic

Thank you to all the contributors!