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
Configuring a Source Code Environment for ElasticSearch 7.10 Analysis
Examining the internals of a large-scale open-source sysstem requires a properly configured workspace. The primary objectives for such an environment typically follow a hierarchy of utility. First and foremost, the IDE must support seamless symbol navigation and cross-referencing. Second, the ability to execute the project's existing test suite ...
Posted on Thu, 30 Jul 2026 16:21:54 +0000 by 7724
Declarative Local Stack: INFINI Console and Easysearch with Docker Compose
After manually spinning up INFINI Console (1.29.6) and Easysearch (1.13.0) containers in the previous walkthrough, the next logical step is to replace the long docker run incantations with a single, version-controlled YAML file. Docker Compose turns the whole setup into a reproducible, one-command operation while keeping every byte of state on ...
Posted on Tue, 28 Jul 2026 16:20:25 +0000 by andybrooke
Building a Logging System with Docker, Elasticsearch, Logstash, and Kibana
Overview
This guide walks through setting up a centralized logging system using the ELK stack (Elasticsearch, Logstash, Kibana) with Docker Compose. The configuration collects appliaction logs, processes them via Logstash, stores them in Elasticsearch, and visualizes them in Kibana.
1. Define the docker-compose.yaml File
Create a docker-compose ...
Posted on Tue, 28 Jul 2026 16:10:51 +0000 by XiaoRulez