mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
49c864fa18
updated vectorstores/ notebooks; added new integrations into ecosystem/integrations/ @dev2049 @rlancemartin, @eyurtsev
22 lines
760 B
Plaintext
22 lines
760 B
Plaintext
# StarRocks
|
|
|
|
>[StarRocks](https://www.starrocks.io/) is a High-Performance Analytical Database.
|
|
`StarRocks` is a next-gen sub-second MPP database for full analytics scenarios, including multi-dimensional analytics, real-time analytics and ad-hoc query.
|
|
|
|
>Usually `StarRocks` is categorized into OLAP, and it has showed excellent performance in [ClickBench — a Benchmark For Analytical DBMS](https://benchmark.clickhouse.com/). Since it has a super-fast vectorized execution engine, it could also be used as a fast vectordb.
|
|
|
|
## Installation and Setup
|
|
|
|
|
|
```bash
|
|
pip install pymysql
|
|
```
|
|
|
|
## Vector Store
|
|
|
|
See a [usage example](/docs/modules/data_connection/vectorstores/integrations/starrocks.html).
|
|
|
|
```python
|
|
from langchain.vectorstores import StarRocks
|
|
```
|