Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: website and docs query_engines links #1367

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ For general configuration, [click here](docs_website/docs/configurations/general
- MySQL
- Sqlite
- PostgreSQL
- [and many more...](https://www.querybook.org/docs/setup_guide/connect_to_query_engines#all-query-engines)
- [and many more...](https://www.querybook.org/docs/setup_guide/query_engines)

### Authentication

Expand Down
2 changes: 1 addition & 1 deletion docs_website/docs/configurations/infra_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If you install the required packages, these integrations will be automatically s
- Redshift (via `-r engine/redshift.txt`)
- Snowflake (via `-r engine/snowflake.txt`)
- Trino (via `-r engine/trino.txt`)
- And [any sqlalchemy supported engines](../setup_guide/connect_to_query_engines.md)
- And [any sqlalchemy supported engines](../setup_guide/query_engines.md)
- Metastore:
- Hive Metastore (via `-r metastore/hms.txt`)
- Hive Metastore with Thrift (install Hive Metastore and Hive)
Expand Down
2 changes: 1 addition & 1 deletion docs_website/docs/setup_guide/connect_to_a_query_engine.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Here we'll guide you through the process of adding a query engine for **PostgreS
touch requirements/local.txt
```

2. Check the [engine list](https://www.querybook.org/docs/setup_guide/connect_to_query_engines#all-query-engines) and find the package it depends on.
2. Check the [engine list](https://www.querybook.org/docs/setup_guide/query_engines) and find the package it depends on.
3. If the required package is not included by default, add it to the `local.txt` file. For `PostgreSQL`, no additional package is needed. Here is an example for `Amazon Redshift`:

```bash
Expand Down
2 changes: 1 addition & 1 deletion docs_website/docs/setup_guide/prod_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Once further scalability is desired you can start each service individually in d
#### Step 1: Choose and Build Docker image

The [public docker image](https://hub.docker.com/r/querybook/querybook) provided only contains a subset of all integrations possible with Querybook.
To intergrate with your tech stack, please check the [Infra Installations Guide](../configurations/infra_installation.md) and [Query Engines Guide](./connect_to_query_engines.md)
To intergrate with your tech stack, please check the [Infra Installations Guide](../configurations/infra_installation.md) and [Query Engines Guide](./connect_to_a_query_engine.md)
to see how to install and use different integrations such as Presto, OAuth, AWS and more.

#### Step 2: Setup Infrastructure
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default () => {
<br />
<p className="flex-center">
View the full list of supported databases&nbsp;
<Link to="/docs/setup_guide/connect_to_query_engines">
<Link to="/docs/setup_guide/query_engines">
here
</Link>
.
Expand Down
2 changes: 1 addition & 1 deletion querybook/webapp/components/AppAdmin/AdminQueryEngine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ export const AdminQueryEngine: React.FunctionComponent<IProps> = ({
supports more, click{' '}
<Link
newTab
to="https://www.querybook.org/docs/setup_guide/connect_to_query_engines/"
to="https://www.querybook.org/docs/setup_guide/query_engines/"
>
here
</Link>{' '}
Expand Down
Loading