© 2023 Hashnode
#elasticsearch
In this article, we will explore how to set up the elastic search as a DB, in a few simple steps. You can go and set up a default application via start.spring.io Once you have set up your project, you can add the following dependencies to y…
Introduction As you may have noticed, since the end of 2022 and the beginning of 2023, everyone has been talking about ChatGPT. People who have tried it, including me, have been amazed. I started usin…
Think about a situation where you have numerous nodes in a production environment and you want to know which node has a high CPU consumption over a certain period. Since it is challenging to manually monitor this, there should be a means fo…
Consider the following scenario, that you want to know when a specific document is added to Elasticsearch. In initial versions of Elasticsearch, each document contained a meta field named @timestamp that contained information about the date…
Consider the scenario when you want to extend an existing instance's synonyms list. Let's say you wish to provide a list of English language synonyms. You may get a list of synonyms for multiple languages using this Git repository. Use the …
Think of a situation where you've used an index template to implement an ILM policy. Your fw-00001 index is currently in the warm phase, and fw-00002 is the new write index. Due to some changes in the data set, you can run into a situation …
Are you looking to build a search UI with charts capabilities for your SaaS product? We will talk about creating programmatic charts with the ReactiveSearch UI library in this post. We will use Elasti…
In this article, I am covering how to install, the basics of Elasticsearch and how to integrate it with python. So let’s get started… Elasticsearch: Elasticsearch [ES] is an open-source, RESTful, distributed search and analytics engine buil…
Objective: Adding a full-text search in Django Rest Framework using elastic search. What is Elastic Search? Elasticsearch is a distributed, open-source search and analytics engine designed for handling large volumes of data. It is built on …
Let's continue from the previous article and write yet another watcher. In my previous experience, this watcher has helped to keep track of the status of my server without logging into Kibana every day. Here is the watcher that is triggered…