Getting Started with Easysearch Java SDK 2.0.x
The easysearch-client library has been updated to version 2.0.2, featuring a complete rewrite that removes legacy constraints and introduces a modern, type-safe API. This guide demonstrates how to integrate and use the new client effectively.
Key Imporvements
Lightweight & Fast: Unnecessary dependencies have been removed, resulting in a sm ...
Posted on Tue, 14 Jul 2026 17:14:59 +0000 by janm2009
ZSTD Compression in Easysearch: Achieving Near 5x Query Throughput with High Compression
In search engine architectures, compression algorithm selection presents a fundamental tradeoff dilemma:
High compression ratios (e.g., best_compression/DEFLATE) reduce storage but slow query decompression
Fast encoding schemes (e.g., default LZ4) accelerate queries but increase disk footprint
Easysearch introduces a solution leveraging JDK 2 ...
Posted on Sun, 05 Jul 2026 16:20:27 +0000 by Brink Kale
Building an Internal Knowledge System with Easysearch and Large Language Models
Introduction to Enterprise Knowledge Retrieval Challenges
Modern enterprises often accumulate vast amounts of internal documentation, ranging from product specifications and compliance guidelines to operational procedures and technical manuals. New employees frequently encounter a deluge of information, often struggling to locate specific detai ...
Posted on Sat, 04 Jul 2026 17:15:31 +0000 by Stagnate
Resolving Field Invisibility in Easysearch: The Conflict Between source_reuse and ignore_above
The Problem: Searchable but Invisible Data
When utilizing advanced data compression features in Easysearch, such as source_reuse combined with ZSTD, developers may encounter a perplexing issue: a field is successfully indexed and can be found via search queries, yet the actual content is missing or "invisible" in the search results.
C ...
Posted on Sat, 04 Jul 2026 16:52:51 +0000 by dirkie
Easysearch: A Lightweight, ES-Compatible Distributed Search Engine
Distributed search infrastructure has evolved significantly over the past two decades, largely driven by advancements in the Lucene ecosystem. However, shifting open-source licensing models and the growing requirement for localized, highly optimized search stacks have accelerated the development of alternative solutions. Easysearch emerges as a ...
Posted on Fri, 19 Jun 2026 16:35:14 +0000 by bouba
Managing High Ingestion Throughput with Easysearch Throttling Controls
In high-volume data ingestion scenarios, insufficiant capacity planning often leads to cluster instability. Common issues include:
Excessive memory consumption causing Out-Of-Memory (OOM) errors and node disconnections.
High CPU and memory usage degrading the performance of search queries.
Increased disk I/O and network saturation affecting cl ...
Posted on Sat, 13 Jun 2026 16:30:51 +0000 by hasanpor
Effortless Local Setup: Managing INFINI Console and Easysearch with the start-local Script
Previous Overview and Introduction
In our series on setting up the INFINI local environment:
The first article, "Setting Up a Persistent INFINI Console and Easysearch Container Environment," explored how to use basic docker run commands to build the Console and Easysearch services step by step, with a focus on solving data persistenc ...
Posted on Tue, 09 Jun 2026 17:41:10 +0000 by Innovative_Andy
Verifying Elasticsearch Data Integrity with INFINI Gateway
After migrating data between clusters, verifying document counts is often insufficient to guarantee data integrity. To perform a robust, content-level comparison betwean two Elasticsearch, Easysearch, or OpenSearch clusters, ENFINI Gateway provides a highly efficient solution for verifying that every document is identical across source and dest ...
Posted on Sat, 30 May 2026 19:27:32 +0000 by smeee_b
Implementing Cross-Cluster Replication in Easysearch: A Practical Guide
Prerequisites
Before configuring replication, ensure the following conditions are met on both the source and target clusters:
Both clusters must have the cross-cluster-replication and index-management plugins installed.
If the easysearch.yml configuration file on the target cluster defines custom node.roles, it must expilcitly include the remo ...
Posted on Fri, 29 May 2026 17:42:32 +0000 by melefire
Deploying Easysearch on AWS EKS: A Complete Implementation Guide
Modern enterprises increasingly require powerful search and analytics capabilities to handle growing data volumes. Easysearch emerges as an enterprise-grade search engine that enables organizations to build high-performance, scalable data retrieval systems. In today's cloud computing landscape, containerization has become the standard approach ...
Posted on Tue, 26 May 2026 00:06:25 +0000 by frigidman