
## Crawl on-premises ThoughtSpot

URL: https://docs.atlan.com/apps/connectors/business-intelligence/thoughtspot/how-tos/crawl-on-premises-thoughtspot

> Extract metadata from on-premises ThoughtSpot to catalog pinboards, answers, and liveboards. Discover and govern your BI assets after configuring extractor tool.

:::danger **Deprecated**
This job execution mode was deprecated on June 30, 2026 and is no longer supported or maintained, including bug fixes. Existing workflows may break/be disabled without warning. For all implementations, switch to [Self-deployed runtime](https://docs.atlan.com/llms/platform/self-deployed-runtime/llms.txt).
:::

Extract metadata from your [on-premises ThoughtSpot](https://docs.atlan.com/llms/connectors/thoughtspot/set-up-on-premises-thoughtspot-access/llms.txt) instances into Atlan to catalog pinboards, answers, and liveboards. After setting up the thoughtspot-extractor tool, you can extract metadata by completing the following steps.

## Run thoughtspot-extractor

### Crawl all ThoughtSpot connections

To crawl all ThoughtSpot connections using the thoughtspot-extractor tool:

1. Log into the server with Docker Compose installed.
2. Change to the directory containing the compose file.
3. Run Docker Compose: `sudo docker-compose up`

### Crawl a specific connection

To crawl a specific ThoughtSpot connection using the thoughtspot-extractor tool:

1. Log into the server with Docker Compose installed.
2. Change to the directory containing the compose file.
3. Run Docker Compose: `sudo docker-compose up <connection-name>`

(Replace `<connection-name>` with the name of the connection from the `services` section of the compose file.)

## (Optional) Review generated files

The thoughtspot-extractor tool will generate many folders with JSON files for each `service`. For example:

- `tags`
- `answers`
- `liveboards`
- `answer-sql-queries`
- `liveboard-sql-queries`

You can inspect the metadata and make sure it is acceptable for providing metadata to Atlan.

## Upload generated files to S3

To provide Atlan access to the extracted metadata, you will need to upload the metadata to an S3 bucket.

:::info **Did you know?** 
 We recommend uploading to the same S3 bucket as Atlan uses to avoid access issues. Reach out to your Data Success Manager to get the details of your Atlan bucket. To create your own bucket, refer to the [Create your own S3 bucket](https://docs.atlan.com/llms/connectors/dbt/set-up-dbt-core/llms.txt) section of the dbt documentation. (The steps will be exactly the same.)

:::

To upload the metadata to S3:

1. Ensure that all files for a particular connection have the same prefix. For example, `output/thoughtspot-example/filter/answers/result-0.json`, `output/thoughtspot-example/filter/liveboards/result-0.json`, `output/thoughtspot-example/filter/answer-sql-queries/result-0.json`, and so on.
2. [Upload the files to the S3 bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/upload-objects.html) using your preferred method.

For example, to upload all files using the [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html):

```
aws s3 cp output/thoughtspot-example/filter s3://my-bucket/metadata/thoughtspot-example --recursive
```

## Crawl metadata in Atlan

Once you have extracted metadata on-premises and uploaded the results to S3, you can crawl the metadata into Atlan:

- [How to crawl ThoughtSpot](https://docs.atlan.com/llms/connectors/thoughtspot/crawl-thoughtspot/llms.txt)

Be sure to select **Offline** for the _Extraction method_.

---
