Solutions to common problems using Elasticsearch

Solutions to common problems using Elasticsearch

1. Using it with redis will cause Netty startup conflicts, so you need to add a method in the ***Application entry file:

@PostConstruct
public void init() {
  // see Netty4Utils.setAvailableProcessors()
  System.setProperty("es.set.netty.runtime.available.processors", "false");
}

2. NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{V4jtTT-tQQqULCNjSNSfgg}{192.168.116.128}{192.168.116.128:9300}]

Solution:

Replace the elasticsearch version that corresponds to your spring-boot-starter-data-elasticsearch.

3. OpenJDK 64-Bit Server VM warning: $ Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.

Solution:

Modify the contents of the jvm.options file to:

-XX:+UseConcMarkSweepGC is changed to -XX:+UseG1GC

4. Deleting Users

Before deleting a user, you need to kill the user's process

pkill or kill -9 <pid>

Example: Delete user user

userdel user

Example: Delete user user and delete his working directory at the same time

userdel –r user

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Summary of common problems based on Elasticsearch 5.4
  • Solve the problem of Docker starting Elasticsearch7.x and reporting an error
  • Elasticsearch common error examples

<<:  Vue dynamic menu, dynamic route loading and refresh pitfalls

>>:  MySQL fuzzy query usage (regular, wildcard, built-in function)

Recommend

Use of Linux ifconfig command

1. Command Introduction The ifconfig (configure a...

React useMemo and useCallback usage scenarios

Table of contents useMemo useCallback useMemo We ...

Html Select option How to make the default selection

Adding the attribute selected = "selected&quo...

Getting Started Tutorial for Beginners⑧: Easily Create an Article Site

In my last post I talked about how to make a web p...

How to find out uncommitted transaction information in MySQL

A while ago, I wrote a blog post titled "Can...

Velocity.js implements page scrolling switching effect

Today I will introduce a small Javascript animati...

Vue3+TypeScript encapsulates axios and implements request calls

No way, no way, it turns out that there are peopl...

js to achieve 3D carousel effect

This article shares the specific code for impleme...

How to install setup.py program in linux

First execute the command: [root@mini61 setuptool...

Linux common text processing commands and vim text editor

Today, let's introduce several common text pr...

MySQL slow query optimization: the advantages of limit from theory and practice

Many times, we expect the query result to be at m...

Detailed explanation of Linux server status and performance related commands

Server Status Analysis View Linux server CPU deta...

30 free high-quality English ribbon fonts

30 free high-quality English ribbon fonts for down...

My personal summary of mysql 5.7 database installation steps

1.mysql-5.7.19-winx64.zip (this is the free insta...