From 4f3bbda421547a2b99dfce93001ed6fe84b895da Mon Sep 17 00:00:00 2001 From: "Marcos G. Zimmermann" Date: Mon, 18 Sep 2023 13:00:04 -0300 Subject: [PATCH] remove index group from readme. It is not implemented yet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5fd7580..d5b9ce1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The main idea of the gem is to be compatible with any type of datasource. It mea * **Index**: The index is the main component. It's responsible for defining the index settings, mappings, and other index-level configurations. It also provides a DSL to define the next two components. * **Repository**: The repository is responsible for loading the data. One index may have more than one repo. Each repo must implement a collection. Collection is an Enumerable that iterate over the data in chunks. It may receive a given context for filtering the data that can be used in the next component. -* **Document**: Each repo's collection must have a respective Document. The document is responsible for defining the document itself. It's a simple Ruby object that can be used to define the document id, routing, index group, doc attributes. +* **Document**: Each repo's collection must have a respective Document. The document is responsible for defining the document itself. It's a simple Ruby object that can be used to define the document id, routing, doc attributes. This architecture provides a powerful ETL (Extract, Transform, Load) solution for your elasticsearch/opensearch indices.