Skip to content

Commit

Permalink
update MyScaleDB's hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
lqhl committed May 7, 2024
1 parent c5ec30f commit 6a65ab2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ In conclusion, with ChatData, you can effortlessly navigate through vast amounts
Database credentials:

```toml
MYSCALE_HOST = "msc-4a9e710a.us-east-1.aws.staging.myscale.cloud"
MYSCALE_HOST = "msc-950b9f1f.us-east-1.aws.myscale.com"
MYSCALE_PORT = 443
MYSCALE_USER = "chatdata"
MYSCALE_PASSWORD = "myscale_rocks"
Expand Down Expand Up @@ -135,7 +135,7 @@ python3 -m streamlit run app.py
import clickhouse_connect

client = clickhouse_connect.get_client(
host='msc-4a9e710a.us-east-1.aws.staging.myscale.cloud',
host='msc-950b9f1f.us-east-1.aws.myscale.com',
port=443,
username='chatdata',
password='myscale_rocks'
Expand Down
4 changes: 2 additions & 2 deletions docs/vector-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ We have prepared a playground for you with more than 2 million papers ready to q

```python
from sqlalchemy import create_engine
MYSCALE_HOST = "msc-4a9e710a.us-east-1.aws.staging.myscale.cloud"
MYSCALE_HOST = "msc-950b9f1f.us-east-1.aws.myscale.com"
MYSCALE_PORT = 443
MYSCALE_USER = "chatdata"
MYSCALE_PASSWORD = "myscale_rocks"
Expand Down Expand Up @@ -232,7 +232,7 @@ Once you have installed this feature, the next step is to use it to query the da

```python
from sqlalchemy import create_engine
MYSCALE_HOST = "msc-4a9e710a.us-east-1.aws.staging.myscale.cloud"
MYSCALE_HOST = "msc-950b9f1f.us-east-1.aws.myscale.com"
MYSCALE_PORT = 443
MYSCALE_USER = "chatdata"
MYSCALE_PASSWORD = "myscale_rocks"
Expand Down

0 comments on commit 6a65ab2

Please sign in to comment.