Optimizing Time-Series Data Management with Easysearch Rollup
Effective handling of time-series data is critical for monitoring systems, logging infrastructure, and IoT telemetry. As data volume grows, storage expenses and administrative overhead often escalate. Rollup technology addresses these challenges by transforming fine-grained raw data into aggregated, high-level summaries, which optimizes storage ...
Posted on Thu, 21 May 2026 17:23:22 +0000 by mausie
Implementing Field-Level Custom Dictionaries in Easysearch with IK Analyzer
Dictionary Storage Structure
The system uses a default index named .analysis_ik to store dictionary entries. Users can override this with a custom index while maintaiinng the required structure:
PUT .custom_dict_index/_doc
{
"dictionary_name": "tech_terms",
"dictionary_category": "main_dicts",
" ...
Posted on Tue, 19 May 2026 07:04:14 +0000 by cdennste
Ingesting Batch Data into Easysearch Using Apache DataX
Overview
Apache DataX is an open-source framework engineered for high-throughput, stable data synchronization across heterogeneous storage systems. It supports connections to relational databases, distributed file systems, NoSQL stores, and big data warehouses. This guide details the configuration process for routing batch records into Easysear ...
Posted on Mon, 18 May 2026 16:21:45 +0000 by slamMan
Interacting with Easysearch Using Elasticsearch Python SDK
As data analysis requirements continue to grow, efficient querying and analysis of large datasets has become increasingly important. Easysearch, a powerful domestic search and analytics engine, serves as a native alternative to Elasticsearch. It supports native DSL query syntax and SQL queries, ensuring seamless migration of existing business c ...
Posted on Sun, 17 May 2026 09:18:48 +0000 by varai
Real-Time Risk Control Implementation for Banking and Insurance Industries Using Easysearch
In the finnacial sector, risk management is abundant with decision rules. Years of business experience, compliance requirements, and historical risk events have established numerous evaluation frameworks. What banking and insurance institutions truly need is a mechanism to ensure these rules operate reliably within real-time processing pipeline ...
Posted on Thu, 14 May 2026 15:08:25 +0000 by lemonpiesaregood
Resetting the Admin Password in Easysearch Clusters
Easysearch automatically creates an admin user through the user.yml configuration file during initialization. The default configuration appears as follows:
admin:
hash: "$2y$12$mA9DDk7iOBQA3u.Ebc0QSOVKsgwlkm6OJcrEcpyrTrT5M5It86usq"
reserved: true
external_roles:
- "admin"
description: "Default administrator ...
Posted on Wed, 13 May 2026 12:14:58 +0000 by youqing
Implementing S3 Backup and Restore in Easysearch
Easysearch includes native support for S3 storage, enabling users to create and restore snapshots directly to Amazon S3-compatible services without installing external plugins. This integration streamlines the backup and migration workflow for data managed within the cluster.
Prerequisite: Object Storage Setup
A compatible S3 service is require ...
Posted on Fri, 08 May 2026 13:14:46 +0000 by Naithin