Performance Benchmark: Elasticsearch vs Easysearch
Virtual Machine Specifications
Using Alibaba Cloud instance type: ecs.u1-c1m4.4xlarge, PL2: Single disk IOPS performance limit 100,000 (applicable cloud disk capacity range: 461GiB - 64TiB)
vCPU
Memory (GiB)
Disk (GB)
Bandwidth (Gbit/s)
Quantity
16
64
500
5000
24
Easysearch Configuration
7-node cluster, version: 1.9.0
Instance Name ...
Posted on Sat, 15 Aug 2026 16:02:11 +0000 by Archangel915
Elasticsearch Aggregation Techniques and Patterns
Basic Aggregation Operations
Elasticsearch provides powerful aggregation capabilities for data analysis. Let's explore fundamental aggregation patetrns with practical examples.
Terms Aggregation with Null Value Handling
The following example demonstrates how to perform term-based aggregations while simultaneously counting documents with missing ...
Posted on Thu, 13 Aug 2026 16:41:58 +0000 by RonHam
Restricting Wide-Date-Range Queries in INFINI Gateway
Problem Statement
A common data architecture involves creating a new Elasticsearch index for each day's data, often with a date-based suffix. While this simplifies data lifecycle management, it can lead to performance issues when applications execute queries that span multiple days, causing significant load on the cluster. To mitigate this, we ...
Posted on Sat, 08 Aug 2026 16:37:12 +0000 by cjconnor24
Deploying SkyWalking Using Docker Compose
Docker Installation
Reefrence: https://www.cnblogs.com/a120608yby/p/9883175.html2. Docker Compose Installation
Reference: https://www.cnblogs.com/a120608yby/p/14582853.html3. Service Configuraton
# edit docker-compose.yml
version: '3.8'
services:
es:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.4.2
container_name: es
...
Posted on Wed, 05 Aug 2026 16:45:43 +0000 by glory452
Understanding Elasticsearch Mapping
Mapping in Elasticsearch
Mapping serves as the schema definition for an index, similar to table structures in relational databases. Its primary responsibilities include:
Declaring field names within the index
Specifying data types for each field
Configuring inverted index settings
When documents are indexed, Elasticsearch transforms the JSON ...
Posted on Wed, 05 Aug 2026 16:14:27 +0000 by jeev
Deploying ELK Stack with Docker for Log Management
Docker Installation of Elasticsearch
For most production environments, Elasticsearch is pre-installed on servers. If you need to set it up yourself, Docker provides the easiest method.
Pull the Docker image:
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.5.2
Create and start the container:
docker run -d --name elasticsearch-node - ...
Posted on Sun, 02 Aug 2026 16:50:54 +0000 by wayz1229
Java Integration with Elasticsearch for Document Insertion
Document Insertion in Java with Elasticsearch
Overview
The process of inserting a document into Elasticsearch using Java involves several key steps that establish a connection, create a index, prepare the data, and perform the insertion.
Step-by-Step Guide
1. Establishing a Connection
To interact with Elasticsearch, a client must be initialized ...
Posted on Sun, 02 Aug 2026 16:14:27 +0000 by Solemn
Setting Up Python 3.7.2 and Related Services on CentOS 7
Install System Dependencies
Update the system and install required development libraries and tools:
yum -y update
yum -y install gcc openssl-devel zlib-devel readline-devel libffi-devel
bzip2-devel mysql-devel python-devel java wget
git redis nginx supervisor
Enable services to start automatically after a reboot:
syst ...
Posted on Sat, 01 Aug 2026 16:54:54 +0000 by charp
MySQL to Elasticsearch Data Synchronization Using Logstash
Environment Setup
Download Logstash version matching your Elasticsearch installation (example uses 7.17.6):
Logstash: Official Download Page
MySQL Connector/J: Available from Maven repository or MySQL official site
Configure system environment variable LS_JAVA_HOME pointing to JDK 8 or 11. For Logstash 7.x, this variable is required instead o ...
Posted on Fri, 31 Jul 2026 16:06:16 +0000 by elearnindia
Building a Microservices E-Commerce Platform with Spring Cloud and Alibaba
Project Architecture Overview
The system adopts a microservices architecture, decomposing business capabilities into independently deployable services communicating over lightweight HTTP APIs. Each service handles its own data storage and can be developed with dedicated technology stacks. The architecture diagram splits the monolith into servic ...
Posted on Thu, 30 Jul 2026 16:55:42 +0000 by adamlacombe