Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkaflik/n8n-nodes-clickhouse
It lets you use ClickHouse in your n8n workflows.
https://github.com/jkaflik/n8n-nodes-clickhouse
Last synced: 26 days ago
JSON representation
It lets you use ClickHouse in your n8n workflows.
- Host: GitHub
- URL: https://github.com/jkaflik/n8n-nodes-clickhouse
- Owner: jkaflik
- License: mit
- Created: 2023-03-15T09:11:23.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-15T19:37:37.000Z (almost 2 years ago)
- Last Synced: 2024-11-27T21:17:59.184Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 30.3 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![Banner image](docs/banner.png)
# n8n-nodes-clickhouse
This is an n8n community node. It lets you use [ClickHouse](https://clickhouse.com/) in your n8n workflows.
ClickHouse is a fast open-source column-oriented database management system that allows generating analytical data reports in real-time using SQL queries.
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
[Installation](#installation)
[Operations](#operations)
[Credentials](#credentials)
[Compatibility](#compatibility)
[Resources](#resources)## Installation
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
## Operations
### Query
Query SQL has to be provided. Rows are return as items.
### Insert
Items are insert batch into user-specified table.
## Credentials
In order to connect to ClickHouse, you have to configure credentials with HTTP URL (only HTTP protocol is supported) and user credentials.
## Compatibility
Tested with 0.219.x.
## Resources
* [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
* [ClickHouse](https://clickhouse.com/)
* [ClickHouse HTTP interface](https://clickhouse.com/docs/en/interfaces/http/)## TODOs
- [ ] [ClickHouse settings](https://clickhouse.com/docs/en/operations/settings/settings/) ([it's possible to set settings for SELECT query](https://clickhouse.com/docs/en/sql-reference/statements/select/#settings-in-select-query))
- [ ] [query parameters](https://clickhouse.com/docs/en/interfaces/http/#cli-queries-with-parameters)