Servidor Couchbase

Cómo migrar de índices equivalentes a réplicas de índices

Lectura de 2 minutos

In the previous post, we saw the benefits of using index replicas over equivalent indexes.  Let’s say you are on Couchbase Server 4.x and have the following 3 equivalent indexes spread across 3 nodes; and with Couchbase 5.0 Beta available, you want to migrate these equivalent indexes to Index Replicas.

//old 4.x equivalent indexes
create index eq_index1 on bucket(field1); 

create index eq_index2 on bucket(field1); 

create index eq_index3 on bucket(field1);

Note: If you want to use the same nodes to create the replicas, do make sure that they have the required memory and compute resources for the both the index replicas and equivalent indexes to coexist.

Step 1: Fire the following query with the num_replica parameter being 2, as we earlier had 3 copies of the index and want to maintain the same topology of indexes.

create index eq_index on bucket(field1) with {“num_replica”:2}

If you are bringing in a new set of 3 index nodes, then you might as well specify the ‘create index’ statement with the ‘nodes’ parameter set; for example:

create index eq_index on bucket(field1) with {“nodes” [“10.10.10.1:9001", "10.10.10.2:9002", "10.10.10.3:9003”]}

Step 2: Once Step1 completes and all the index replicas are created and online(i.e, index build completed), drop the old 4.x equivalent indexes present.

drop index eq_index1; 
drop index eq_index2; 
drop index eq_index3;

Voila!! Your N1QL queries are all set to use the index replicas, and there was no application downtime during the process as well. If you had used ‘USE INDEX’ directive in your N1QL query, then the same needs to be updated with the new index name.

Equivalent indexes are still supported in Couchbase Server 5.0 and a mix of equivalent and replica indexes also works, i.e.,  N1QL queries would load balance between equivalent and replica indexes; but for efficient manageability, index replicas are recommended over equivalent indexes.

If you haven’t already, click here to download Couchbase Server 5.0 and play around with Index Replicas. 

Compartir este artículo

Autor

Venkat dabbles in product development and product management and has been developing data/analytics platforms & products. Significant chunk of his experience has been with Oracle, where he transitioned from being an Engineer in Oracle’s Enterprise Manager team to Product Manager for Oracle’s BI/Analytics suite of products. He has worked in startups in the past helping develop machine-learning/NLP products and distributed decisioning systems. He lurks around at @venkasub.

2 respuestas

  1. Avatar de Hemant Masta
    Hemant Masta

    Nice blog Venkat. Can I increase the num_replica in 5.1 without recreating index ?

    1. Avatar de Venkat Subramanian, Product Manager
      Venkat Subramanian, Gerente de Producto

      Thanks Hemant. As of now, it is not possible. ALTER INDEX(introduced in 5.5) allows you to change index placements.

Deja un comentario

¿Listo para comenzar con Couchbase Capella?

Comenzar a construir

Visita nuestro portal para desarrolladores para explorar NoSQL, consultar recursos y comenzar con los tutoriales.

Usa Capella gratis

Empieza a usar Couchbase en tan solo unos clics. Capella DBaaS es la forma más fácil y rápida de comenzar.

Ponte en contacto

¿Quieres saber más sobre las ofertas de Couchbase? Permítenos ayudarte.