Advanced search made easy. The curated experience of Elastic App Search brings the focus of Elasticsearch to a complete set of apis and intuitive dashboards. It’s easy to build a leading search experience with seamless scalability, adjustable correlation controls, detailed documentation, well-maintained clients, and powerful analytics capabilities.

In today’s post, we’ll walk you through how to build a complete Elastic App Search application step by step.

 

Elastic App Search display

What is Elastic App Search?

Simply put, Elastic App Search is a powerful set of apis and developer tools designed to build rich, user-oriented Search applications for developers. Some features out of the box include:

  • Optimized relevance to search use cases
  • Tolerate incorrect input
  • Correlation fine tuning
  • First-party API clients and powerful apis
  • Detailed API logs and search analysis
  • Automatic capacity expansion and operation support
  • The Search UI library

Elastic App Search architecture

The architecture diagram is as follows:

 

The installation

Install the Elasticsearch

Install Elasticsearch on Linux, MacOS and Windows by referring to my previous article “How to install Elasticsearch on Windows”

Install Kibana

Let’s install Kibana next. We can refer to my previous article “How to Install Kibana in an Elastic stack on Linux, MacOS, and Windows” for our installation.

Java installation

You need to install Java. Version in Java 8 or Java 11.

App search installation

We in the address www.elastic.co/downloads/a… Find the version we need and download it. And in accordance with the corresponding instructions to proceed according to. If you want to on your previous versions for installation, please refer to the address www.elastic.co/downloads/p… .

If we don’t do anything about Elasticsearch or app-Search, we’ll get the following error message:

As requested, we also need to change the configuration of our Elasticsearch. For Elasticsearch, open the config/ elasticSearch. yml file in the root directory of Elasticsearch and add the following configuration:

action.auto_create_index: ".app-search-*-logs-*,-.app-search-*,+*"
Copy the code

After that, we can restart Elasticsearch:

./bin/elasticsearch
Copy the code

I opened the confing/app-search.yml file in the App Search installation directory and added the following configuration:

allow_es_settings_modification: true
Copy the code

We save the configuration file and restart app-Search:

./bin/app-search
Copy the code

If we configure it correctly, this time our App Search startup will be successful.

For first-time developers, you may not be able to find the user interface for App Search. You type the address http://localhost:3002 into your browser. You should see something like this:

 

Import data

Click the Continue to Dashboard button above:

 

Download the best video game data set to your local computer’s hard drive. The name of this data is games-array.json. If for some reason you cannot download this file, please go to github.com/liu-xiao-gu… To download.

In Engine Name, we type Video-games and click the Continue button above:

So our video-games engine has been successfully built. We can load our data by following the Upload a JSON file button above. But in today’s exercise, we’ll show you how to import our data into Elasticsearch using the API interface. Let’s click on the Use the API hyperlink in the image above:

We’ll find out how to import our data into Elasticsearch via the API. In today’s demo, we’ll use Ruby to import data. You can also import data in your preferred language. We create a file called upload.rb:

upload.rb

Require 'elastic-app-search' require 'json' require 'progress_bar' API_ENDPOINT = '' API_KEY = '' ENGINE_NAME = '' client = Elastic::AppSearch::Client.new(:api_key => API_KEY, :api_endpoint => API_ENDPOINT) file = File.read('./games-array.json') data = JSON.parse(file) bar = ProgressBar.new(data.count / 100) data.each_slice(100) do |slice| client.index_document(ENGINE_NAME, slice) bar.increment! endCopy the code

Above, we need to fill in our App Search configuration:

  • API_ENDPOINT: this can be in the screenshot above we can see: http://localhost:3002/api/as/v1/
  • API_KEY: This is the key we use to access the App Search server. You can see it in the Authorization section of the API interface above: private-YS6ESBKP127i2GSEYHV9TR1n
  • ENGINE_NAME: This is the name of the engine we defined earlier, propagation-games

We fill the above information into upload.rb. Before running the above Ruby application, we need to install the three required libraries:

sudo gem install progress_bar
sudo gem install elastic-app-search
sudo gem install json
Copy the code

The files in our working directory are:

$ pwd
/Users/liuxg/data/appsearch
liuxg:appsearch liuxg$ ls
games-array.json upload.rb
Copy the code

Then enter the following command in terminal:

ruby upload.rb
Copy the code

The command output is as follows:

$ruby upload. Rb [# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #] [5/5] [100.00%] [00:02] [00:00] [1.99 / s]Copy the code

Now our data is imported into Elasticsearch. At this time, in our App Search interface, we can find:

It shows that our data has been successfully imported into Elasticseach.

 

Search engine: Elastic App Search

Let’s click the Visit the Dashboard button above:

We can click on the Credentials on this page, and you can also find our private-key here:

We can click on the Copy icon to get the private-key we need. In the same way, we can also get the search-key.

Let’s click on Engines:

Let’s click on video-games above:

From the above, we can see the statistics of video-engine. It shows that we share 500 documents. We can also see the usage of all the apis. If you find any problems, you can click on View API Logs to see how the API is being used:

We then want to change the index schema because by default, all 11 fields are treated as text.

After completing our changes, click the Update Types button. So our index will be updated again. Let’s click Documents:

Here, we can see all the documents. I can try typing a keyword in the Filter Documents location, such as Final Fantasy. We can see all the documents that have been searched.

Adjust relevance

There are three key related functions: Synonyms, Curations, and Relevance Tuning.

Synonyms

People around the world use different words to describe things. Synonyms help you create sets of terms that are considered the same as one or a group of terms.

In the case of video Game search engines, we know that people will want to find Final Fantasy. But maybe they’ll use FF instead.

Click to enter synonyms, then select Create synonym set and enter the term:

Click Save. You can add as many synonym sets as you want.

A search for FF now carries the same weight as a search for Final Fantasy.

Curations

Curations are the most popular. What if someone searches for Final Fantasy or FF? There are a lot of games in the series – which ones will they get?

By default, the first five results look like this:

  1. Final Fantasy VIII
  2. Final Fantasy X
  3. Final Fantasy Tactics
  4. Final Fantasy IX
  5. Final Fantasy XIII

This doesn’t seem right… Final Fantasy VII is the best Final Fantasy game of all. And Final Fantasy XIII is not very good! 😜

Can we do this so that people searching for Final Fantas Y will receive Final Fantasy VII as the first result? Can we remove Final Fnatasy XIII from our search results?

We can!

Click Curations, and then enter the query: Final Fantasy.

Next, drag the “Final FantasyVII” document to the “Promoted Documents” section by grabbing the left-most handle of the form:

Then click the “Hide Result” button on the Final Fantasy XIII document (the one with the line through the eye, the third icon in the list below) :

Anyone performing a “Final Fantasy” or “FF” search will now see “Final Fantasy VII” first:

They don’t see Final Fantasy XIII at all. Ha! Ha!

We can upgrade and hide many documents. We can even sort the upgraded documents, so we have complete control over what is displayed at the top of each query.

Relevance tuning

Click Relevance Tuning in the sidebar.

We search for a text field: the name field. But what if we have multiple text fields for people to search, such as the Name field and the Description field? The Video game dataset we are using does not contain the Description segment, so let’s pretend some documents for careful consideration.

Say our document looks like this:

{ 
  "name":"Magical Quest",
  "description": "A dangerous journey through caves and such." 
},
{ 
  "name":"Dangerous Quest",
  "description": "A magical journey filled with magical magic. Highly magic." 
}
Copy the code

If someone wants to find a game Magical Quest, they’ll type that in as a query. But the first result will be Dangerous Quest:

Why is that? Because the word “Magical” appears three times in the description of Dangerous, search engines don’t know that one field is more important than another. It then ranks Dangerous Quest even higher. This is why correlation adjustment is difficult.

We can select a field and, among other things, increase the weight of its correlation:

We saw that when we increased the weights, the correct item “Magical Quest” rose to the top because the name field became more important. All we need to do is drag the slider to a higher value and click “Save”.

We have now used App Search to accomplish the following tasks:

  • Adjust the schema and change user_score and critic_score to numeric fields.
  • Fine-tuning the Relevance model.

The result is a nice “dashboard” of functionality – each with a matching API endpoint that you can use to make your program work programmatically if you are not a user of the GUI.

We can click Analyics to find out the statistics of our search:

You can see Top queries and Top queries with No Results.

Reference UI

Let’s click on the Reference UI:

And do the corresponding configuration. Click on the Generate a Preview button:

This gives us the user interface shown above. We can try entering a keyword such as Final Fantasy to search:

As you can see above in the input box, it has auto-complete. We choose Final Fantasy:

We’re about to see what we want. We have I can click on the filter and sort by shown above:

It’s been pretty cool so far. We didn’t do any development and we had a really cool interface for searching.

We click on the Download Zip Package in the upper right corner of the screen and save it in a file directory. We unzip the package:

$ pwd
/Users/liuxg/data/appsearch/app
liuxg:app liuxg$ ls
LICENSE.txt         bin                 package.json
NOTICE.txt          logo-app-search.png public
README.md           package-lock.json   src
Copy the code

Above, we can see that this is a NodeJS application. We use the following command to install:

npm install
Copy the code

Once installed, we can run it using the following command:

npm start
Copy the code

Above we can see the same interface as before.

Ok, so that’s it. We’ve created a real zero-based App Search application. I hope you enjoy it. If you want to get interested in the Elastic Search UI, or if you want to design your OWN UI and Search experience in more detail, you can read:

  • Github.com/elastic/sea…
  • How to quickly build a great React Search experience with Elastic App Search

Reference:

【 1 】 swiftype.com/documentati…

【 2 】 github.com/elastic/sea…