Creating a local distributed table

A distributed table in Manticore Search acts as a "master node" that proxies the demanded query to other tables and provides merged results from the responses it receives. The table doesn't hold any data on its own. It can connect to both local tables and tables located on other servers. Here's an example of a simple distributed table:

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