> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useautumn.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Connecting

> Attach ClickHouse to your Autumn Lakehouse catalog.

<Warning>
  **Available on request** — The Autumn Lakehouse is provisioned per customer. Contact us at [hey@useautumn.com](mailto:hey@useautumn.com) to get access.
</Warning>

When your Lakehouse is provisioned, Autumn privately sends you:

* Your **catalog** and **namespace** names (the namespace is where your `v2_3_*` tables live).
* A **scoped access key and secret** for the underlying object storage.
* The **region**: `us-east-2`.

Keep these credentials private. Then connect your engine below.

<Tabs>
  <Tab title="ClickHouse">
    <Steps>
      <Step>
        #### Add a Data Lake Catalog

        In ClickHouse Cloud, go to **Data Sources → Add → Data Lake Catalog → AWS Glue**.

        <Frame>
          <img src="https://mintcdn.com/autumn-b9b4c0fb/upS3Dj1rCWylIZHt/assets/lakehouse/ch-add-data-source.png?fit=max&auto=format&n=upS3Dj1rCWylIZHt&q=85&s=71b36c431f01135f13ad4a7c43723d1c" alt="ClickHouse Cloud Data Sources page with the Add button" width="738" height="762" data-path="assets/lakehouse/ch-add-data-source.png" />
        </Frame>
      </Step>

      <Step>
        #### Configure the catalog

        Set the **region** to `us-east-2`, then paste the **access key** and **secret** Autumn sent you.

        <Frame>
          <img src="https://mintcdn.com/autumn-b9b4c0fb/upS3Dj1rCWylIZHt/assets/lakehouse/ch-add-catalog.png?fit=max&auto=format&n=upS3Dj1rCWylIZHt&q=85&s=bffd82298d60e7a67d93e36496d4d61d" alt="Selecting Data Lake Catalog then AWS Glue as the source type" width="1450" height="1746" data-path="assets/lakehouse/ch-add-catalog.png" />
        </Frame>
      </Step>

      <Step>
        #### Save and browse

        Save the connection. The catalog mounts as a database, and your tables appear as `` `<catalog>`.`<namespace>.v2_3_<object>` ``.

        <Frame>
          <img src="https://mintcdn.com/autumn-b9b4c0fb/upS3Dj1rCWylIZHt/assets/lakehouse/ch-catalog-tree.png?fit=max&auto=format&n=upS3Dj1rCWylIZHt&q=85&s=e44b69e5ae80a067548f4a6340420402" alt="Mounted catalog tree showing the v2_3_* tables" width="586" height="944" data-path="assets/lakehouse/ch-catalog-tree.png" />
        </Frame>

        <Note>
          The whole `<namespace>.v2_3_<object>` is the **table name** — the dot is literal, not a database separator. You must backtick both parts when querying. See [Querying](/documentation/lakehouse/querying#identifier-syntax).
        </Note>
      </Step>
    </Steps>
  </Tab>
</Tabs>

## Test the connection

Run a quick count against any table to confirm everything is wired up:

```sql theme={null}
SELECT count() FROM <your v2_3_customers table>;
```

<Frame>
  <img src="https://mintcdn.com/autumn-b9b4c0fb/upS3Dj1rCWylIZHt/assets/lakehouse/test-connection.png?fit=max&auto=format&n=upS3Dj1rCWylIZHt&q=85&s=510431dafb9e2f053fc565c70d13602d" alt="Successful row-count result in the query console" width="1950" height="752" data-path="assets/lakehouse/test-connection.png" />
</Frame>

Once that returns, head to the [Schema Reference](/documentation/lakehouse/schema) to see what's available, then [Querying](/documentation/lakehouse/querying) for examples.
If you notice the number seems lower than expected, it's because it may take a few minutes to a few hours for your data warehouse to catch up.
