You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/oss/javascript/integrations/vectorstores/clickhouse.mdx
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,12 @@ description: "Integrate with the ClickHouse vector store using LangChain JavaScr
9
9
Only available on Node.js.
10
10
</Tip>
11
11
12
-
[ClickHouse](https://clickhouse.com/) is a robust and open-source columnar database that is used for handling analytical queries and efficient storage, ClickHouse is designed to provide a powerful combination of vector search and analytics.
12
+
[ClickHouse](https://clickhouse.com/) is an open-source columnar database for analytics that also supports vector search. For background on ClickHouse vector search (including approximate indexes), see [Exact and Approximate Vector Search](https://clickhouse.com/docs/engines/table-engines/mergetree-family/annindexes).
13
13
14
14
## Setup
15
15
16
-
1. Launch a ClickHouse cluster. Refer to the [ClickHouse Installation Guide](https://clickhouse.com/docs/en/getting-started/install/) for details.
17
-
2. After launching a ClickHouse cluster, retrieve the `Connection Details` from the cluster's `Actions` menu. You will need the host, port, username, and password.
16
+
1. Launch a ClickHouse cluster. Refer to the [ClickHouse installation guide](https://clickhouse.com/docs/getting-started/install/) for details.
17
+
2. After launching a ClickHouse cluster, retrieve the connection details. You will need the host, port, username, and password.
18
18
3. Install the required Node.js peer dependency for ClickHouse in your workspace.
19
19
20
20
You will need to install the following peer dependencies:
Copy file name to clipboardExpand all lines: src/oss/python/integrations/vectorstores/clickhouse.mdx
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,16 +3,16 @@ title: "ClickHouse integration"
3
3
description: "Integrate with the ClickHouse vector store using LangChain Python."
4
4
---
5
5
6
-
> [ClickHouse](https://clickhouse.com/) is the fastest and most resource efficient open-source database for real-time apps and analytics with full SQL support and a wide range of functions to assist users in writing analytical queries. Lately added data structures and distance search functions (like `L2Distance`) as well as [approximate nearest neighbor search indexes](https://clickhouse.com/docs/en/engines/table-engines/mergetree-family/annindexes) enable ClickHouse to be used as a high performance and scalable vector database to store and search vectors with SQL.
6
+
> [ClickHouse](https://clickhouse.com/) is an open-source database for real-time apps and analytics with full SQL support. ClickHouse supports exact vector search (for example, using distance functions like `L2Distance`) and approximate vector search using vector similarity indexes (available in ClickHouse 25.8+). For details, see [Exact and Approximate Vector Search](https://clickhouse.com/docs/engines/table-engines/mergetree-family/annindexes).
7
7
8
-
This notebook shows how to use functionality related to the `ClickHouse` vector store.
8
+
This page shows how to use functionality related to the `ClickHouse` vector store.
9
9
10
10
## Setup
11
11
12
12
First set up a local clickhouse server with docker:
0 commit comments