Elastic Search
Magento 2 - Useful Elasticsearch Commands

In this document, we will cover the elastic search commands that we generally used in the context of Magento debugging. Related Tutorials To get the Indices Details List all indices Sample Output List all aliases Delete All Indices Sample Output To Fetch the Data directly from Elasticsearch Get Records Count To fetch the total no […]

Read more
Elastic Search
Magento 2 - Elastic Search Concepts for a Magento Developer

Related Articles Elastic Search is a powerful search and analytics engine. It is known for its distributed nature, speed, and scalability. This document covers the important concepts of elastic search that would require for a magento developer The Elasticsearch Instance Once Elasticsearch is installed and running you have the instance of the Elasticsearch also known […]

Read more
Elastic Search
Magento 2 - How data is fetched from Elasticserach

Related Articles Overview Once we have the product data pushed to Elasticsearch we can now use ES API's to fetch data. The data from ES helps to Identify the products ids that are relevant for the specific search query. Filter Navigation / Aggregation Once we have the products ids, The relevant product data such as […]

Read more
Elastic Search
How Product Data is Pushed to Elasticsearch from Magento

Related Articles To serve data from elastic search we first need to push data to elastic search, This is done through the catalog search fulltext indexing. Lets explore more in to this through the below sections. Identity the Relevant Products to Push to Elasticsearch The products that are enabled, visibility = catalog search will be […]

Read more
Elastic Search
Elastic Search for Magento Developer

As of Magento 2.4 Magento does not support MySql as a Search Engine. Now, you must install and configure Elasticsearch as your search engine before upgrading to 2.4. The below are the two primary actions involved with magento integration with elastic search which we will see in detail. Push Data The product data from Magento […]

Read more
Tutorials
Magento2 Content Staging

In this Tutorial we will cover the below topics What is Content Staging How Content Staging Works Content Staging Cron What is Content Staging As a Merchant, say you want to provide discount 20% to all the products on Black Friday. So what you can do is, On Black Friday Early Morning login to the […]

Read more