Creating a local distributed table

A distributed table in Manticore Search doesn't hold any data. Instead it acts as a 'master node' to proxy the demanded query to other tables and provide merged results from the responses it receives from the 'node' tables. A distributed table can connect to local tables or tables located on other servers. The simplest example of a distributed table looks so:

‹›
  • Configuration file
  • RT mode
  • PHP
  • Python
  • javascript
  • Java
📋
table index_dist {
  type  = distributed
  local = index1
  local = index2
  ...
 }