2023-05-31 11:35:17 +00:00
---
2023-06-16 21:22:47 +00:00
slug: /en/engines/table-engines/integrations/redis
2023-06-23 13:16:22 +00:00
sidebar_position: 175
2023-05-31 11:35:17 +00:00
sidebar_label: Redis
---
# Redis
2023-06-13 01:33:38 +00:00
This engine allows integrating ClickHouse with [Redis ](https://redis.io/ ). For Redis takes kv model, we strongly recommend you only query it in a point way, such as `where k=xx` or `where k in (xx, xx)` .
2023-05-31 11:35:17 +00:00
## Creating a Table {#creating-a-table}
``` sql
CREATE TABLE [IF NOT EXISTS] [db.]table_name
(
name1 [type1],
name2 [type2],
...
2023-12-06 23:38:33 +00:00
) ENGINE = Redis({host:port[, db_index[, password[, pool_size]]] | named_collection[, option=value [,..]] })
PRIMARY KEY(primary_key_name);
2023-05-31 11:35:17 +00:00
```
**Engine Parameters**
- `host:port` — Redis server address, you can ignore port and default Redis port 6379 will be used.
- `db_index` — Redis db index range from 0 to 15, default is 0.
- `password` — User password, default is blank string.
- `pool_size` — Redis max connection pool size, default is 16.
- `primary_key_name` - any column name in the column list.
2023-12-06 23:38:33 +00:00
:::note Serialization
`PRIMARY KEY` supports only one column. The primary key will be serialized in binary as a Redis key.
Columns other than the primary key will be serialized in binary as Redis value in corresponding order.
:::
2023-05-31 11:35:17 +00:00
2023-12-06 23:38:33 +00:00
Arguments also can be passed using [named collections ](/docs/en/operations/named-collections.md ). In this case `host` and `port` should be specified separately. This approach is recommended for production environment. At this moment, all parameters passed using named collections to redis are required.
2023-06-16 21:22:47 +00:00
2023-12-06 23:38:33 +00:00
:::note Filtering
Queries with `key equals` or `in filtering` will be optimized to multi keys lookup from Redis. If queries without filtering key full table scan will happen which is a heavy operation.
:::
2023-05-31 11:35:17 +00:00
## Usage Example {#usage-example}
2023-12-06 23:38:33 +00:00
Create a table in ClickHouse using `Redis` engine with plain arguments:
2023-05-31 11:35:17 +00:00
``` sql
CREATE TABLE redis_table
(
2023-06-29 02:04:36 +00:00
`key` String,
`v1` UInt32,
`v2` String,
`v3` Float32
2023-05-31 11:35:17 +00:00
)
2023-06-29 02:09:27 +00:00
ENGINE = Redis('redis1:6379') PRIMARY KEY(key);
2023-05-31 11:35:17 +00:00
```
2023-12-06 23:38:33 +00:00
Or using [named collections ](/docs/en/operations/named-collections.md ):
```
< named_collections >
< redis_creds >
< host > localhost< / host >
< port > 6379< / port >
< password > ****< / password >
< pool_size > 16< / pool_size >
< db_index > s0< / db_index >
< / redis_creds >
< / named_collections >
```
```sql
CREATE TABLE redis_table
(
`key` String,
`v1` UInt32,
`v2` String,
`v3` Float32
)
ENGINE = Redis(redis_creds) PRIMARY KEY(key);
```
2023-05-31 11:35:17 +00:00
Insert:
```sql
INSERT INTO redis_table Values('1', 1, '1', 1.0), ('2', 2, '2', 2.0);
```
Query:
``` sql
SELECT COUNT(*) FROM redis_table;
```
``` text
┌─count()─┐
│ 2 │
└─────────┘
```
``` sql
SELECT * FROM redis_table WHERE key='1';
```
```text
┌─key─┬─v1─┬─v2─┬─v3─┐
│ 1 │ 1 │ 1 │ 1 │
└─────┴────┴────┴────┘
```
``` sql
SELECT * FROM redis_table WHERE v1=2;
```
```text
┌─key─┬─v1─┬─v2─┬─v3─┐
│ 2 │ 2 │ 2 │ 2 │
└─────┴────┴────┴────┘
```
Update:
Note that the primary key cannot be updated.
```sql
ALTER TABLE redis_table UPDATE v1=2 WHERE key='1';
```
Delete:
```sql
ALTER TABLE redis_table DELETE WHERE key='1';
```
Truncate:
2023-06-01 06:36:03 +00:00
Flush Redis db asynchronously. Also `Truncate` support SYNC mode.
2023-05-31 11:35:17 +00:00
```sql
2023-06-01 06:36:03 +00:00
TRUNCATE TABLE redis_table SYNC;
2023-05-31 11:35:17 +00:00
```
2023-06-13 01:33:38 +00:00
2023-06-29 02:04:36 +00:00
Join:
Join with other tables.
```
2023-06-29 04:53:23 +00:00
SELECT * FROM redis_table JOIN merge_tree_table ON merge_tree_table.key=redis_table.key;
2023-06-29 02:04:36 +00:00
```
2023-06-13 01:33:38 +00:00
## Limitations {#limitations}
2023-06-14 01:00:50 +00:00
Redis engine also supports scanning queries, such as `where k > xx` , but it has some limitations:
2023-06-29 02:04:36 +00:00
1. Scanning query may produce some duplicated keys in a very rare case when it is rehashing. See details in [Redis Scan ](https://github.com/redis/redis/blob/e4d183afd33e0b2e6e8d1c79a832f678a04a7886/src/dict.c#L1186-L1269 ).
2023-06-14 01:00:50 +00:00
2. During the scanning, keys could be created and deleted, so the resulting dataset can not represent a valid point in time.