ClickHouse/docs/en/engines/table-engines/integrations/index.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
690 B
Markdown
Raw Normal View History

2020-04-09 18:06:07 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/engines/table-engines/integrations/
sidebar_position: 40
sidebar_label: Integrations
2020-04-09 18:06:07 +00:00
---
2022-06-02 10:55:18 +00:00
# Table Engines for Integrations
2023-06-10 22:20:39 +00:00
ClickHouse provides various means for integrating with external systems, including table engines. Like with all other table engines, the configuration is done using `CREATE TABLE` or `ALTER TABLE` queries. Then from a user perspective, the configured integration looks like a normal table, but queries to it are proxied to the external system. This transparent querying is one of the key advantages of this approach over alternative integration methods, like dictionaries or table functions, which require the use of custom query methods on each use.