Deleting a table

Deleting a table is performed in 2 steps internally:

  1. Table is cleared (similar to TRUNCATE)
  2. All table files are removed from the table folder. All the external table files that were used by the table (such as wordforms, extensions or stopwords) are also deleted. Note that these external files are copied to the table folder when CREATE TABLE is used, so the original files specified in CREATE TABLE will not be deleted.

Deleting a table is possible only when the server is running in the RT mode. It is possible to delete RT tables, PQ tables and distributed tables.

  • SQL
  • JSON
  • PHP
  • Python
  • javascript
  • Java

SQL JSON PHP Python javascript Java

  1. DROP TABLE products;
  1. POST /cli -d "DROP TABLE products"
  1. $params = [ 'index' => 'products' ];
  2. $response = $client->indices()->drop($params);
  1. utilsApi.sql('DROP TABLE products')
  1. res = await utilsApi.sql('DROP TABLE products');
  1. sqlresult = utilsApi.sql("DROP TABLE products");

Response

  1. Query OK, 0 rows affected (0.02 sec)
  1. {
  2. "total":0,
  3. "error":"",
  4. "warning":""
  5. }
  1. Array
  2. (
  3. [total] => 0
  4. [error] =>
  5. [warning] =>
  6. )
  1. {u'error': u'', u'total': 0, u'warning': u''}
  1. {"total":0,"error":"","warning":""}
  1. {total=0, error=, warning=}

Here is the syntax of the DROP TABLE statement in SQL:

  1. DROP TABLE [IF EXISTS] index_name

When deleting a table via SQL, adding IF EXISTS can be used to delete the table only if it exists. If you try to delete a non-existing table with the IF EXISTS option, nothing happens.

When deleting a table via PHP, you can add an optional silent parameter which works the same as IF EXISTS.

  • SQL
  • JSON
  • PHP
  • Python
  • javascript
  • Java

SQL JSON PHP Python javascript Java

  1. DROP TABLE IF EXISTS products;
  1. POST /cli -d "DROP TABLE IF EXISTS products"
  1. $params =
  2. [
  3. 'index' => 'products',
  4. 'body' => ['silent' => true]
  5. ];
  6. $client->indices()->drop($params);
  1. utilsApi.sql('DROP TABLE IF EXISTS products')
  1. res = await utilsApi.sql('DROP TABLE IF EXISTS products');
  1. sqlresult = utilsApi.sql("DROP TABLE IF EXISTS products");

Response

  1. {u'error': u'', u'total': 0, u'warning': u''}
  1. {"total":0,"error":"","warning":""}
  1. {total=0, error=, warning=}

Emptying a table

The table can be emptied with a TRUNCATE TABLE SQL statement or with a truncate() PHP client function.

Here is the syntax for the SQL statement:

  1. TRUNCATE TABLE index_name [WITH RECONFIGURE]

When this statement is executed, it clears the RT table completely. It disposes the in-memory data, unlinks all the table data files, and releases the associated binary logs.

A table can also be emptied with DELETE FROM index WHERE id>0, but it’s not recommended as it’s much slower than TRUNCATE.

  • SQL
  • JSON
  • PHP
  • Python
  • javascript
  • Java

SQL JSON PHP Python javascript Java

  1. TRUNCATE TABLE products;
  1. POST /cli -d "TRUNCATE TABLE products"
  1. $params = [ 'index' => 'products' ];
  2. $response = $client->indices()->truncate($params);
  1. utilsApi.sql('TRUNCATE TABLE products')
  1. res = await utilsApi.sql('TRUNCATE TABLE products');
  1. utilsApi.sql("TRUNCATE TABLE products");

Response

  1. Query OK, 0 rows affected (0.02 sec)
  1. {
  2. "total":0,
  3. "error":"",
  4. "warning":""
  5. }
  1. Array(
  2. [total] => 0
  3. [error] =>
  4. [warning] =>
  5. )
  1. {u'error': u'', u'total': 0, u'warning': u''}
  1. {"total":0,"error":"","warning":""}
  1. {total=0, error=, warning=}

One of the possible uses of this command is before attaching a table.

When RECONFIGURE option is used new tokenization, morphology, and other text processing settings specified in the config take effect after the table gets cleared. In case the schema declaration in config is different from the table schema the new schema from config got applied after table get cleared.

With this option clearing and reconfiguring a table becomes one atomic operation.

  • SQL
  • HTTP
  • PHP
  • Python
  • javascript
  • Java

SQL HTTP PHP Python javascript Java

  1. TRUNCATE TABLE products with reconfigure;
  1. POST /cli -d "TRUNCATE TABLE products with reconfigure"
  1. $params = [ 'index' => 'products', 'with' => 'reconfigure' ];
  2. $response = $client->indices()->truncate($params);
  1. utilsApi.sql('TRUNCATE TABLE products WITH RECONFIGURE')
  1. res = await utilsApi.sql('TRUNCATE TABLE products WITH RECONFIGURE');
  1. utilsApi.sql("TRUNCATE TABLE products WITH RECONFIGURE");

Response

  1. Query OK, 0 rows affected (0.02 sec)
  1. {
  2. "total":0,
  3. "error":"",
  4. "warning":""
  5. }
  1. Array(
  2. [total] => 0
  3. [error] =>
  4. [warning] =>
  5. )
  1. {u'error': u'', u'total': 0, u'warning': u''}
  1. {"total":0,"error":"","warning":""}
  1. {total=0, error=, warning=}

Manticore cluster

Manticore Search is a highly distributed system and consists of all the needed components to allow you build a highly available and scalable setup of a database for search:

Manticore Search is extremely flexible in terms of how you setup your cluster, there’s no limitations and it’s up to you how you design it. Just learn the tools mentioned above and use them to achieve your goal.