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

# Plugins

Some Atoti features require large additional libraries and might not be useful in every project.
To keep the core library as light as possible, these features are packaged into separate plugins that can be installed when needed.

## Available plugins

### Atoti Intelligence

* [`atoti_ai`](../api/atoti_ai)
* [`atoti_ai_amazon_bedrock`](../api/atoti_ai_amazon_bedrock)
* [`atoti_ai_openai`](../api/atoti_ai_openai)

### Data loading

* [`atoti_jdbc`](../api/atoti_jdbc)
* [`atoti_kafka`](../api/atoti_kafka)
* [`atoti_parquet`](../api/atoti_parquet)

#### Cloud storage

* [`atoti_storage_aws`](../api/atoti_storage_aws)
* [`atoti_storage_azure`](../api/atoti_storage_azure)
* [`atoti_storage_gcp`](../api/atoti_storage_gcp)

These connectors open tens of HTTP connections to the cloud storage in order to transfer the data in parallel.
They then transparently reassemble the blocks directly in memory.
They can load up to 300 GB in about 5 minutes.
Some parameters can impact the overall download speed:

* Bandwidth of the network interface.
* Speed of the CPU cores since HTTPS connections and client side-encryption consume CPU resources.
* File size: small files will not have good download speed (\< 60 MB/s).
* Type (hot/cold) of the storage: hot storage is faster.
* Data locality: best when the host running Atoti and the data are in the same cloud region.

### DirectQuery

See [Using DirectQuery](../guides/using_directquery).

* [`atoti_directquery_bigquery`](../api/atoti_directquery_bigquery)
* [`atoti_directquery_clickhouse`](../api/atoti_directquery_clickhouse)
* [`atoti_directquery_databricks`](../api/atoti_directquery_databricks)
* [`atoti_directquery_jdbc`](../api/atoti_directquery_jdbc)
* [`atoti_directquery_mssql`](../api/atoti_directquery_mssql)
* [`atoti_directquery_redshift`](../api/atoti_directquery_redshift)
* [`atoti_directquery_snowflake`](../api/atoti_directquery_snowflake)
* [`atoti_directquery_synapse`](../api/atoti_directquery_synapse)

### Administration & Monitoring

* [`atoti_limits`](../api/atoti_limits)
* [`atoti_observability`](../api/atoti_observability)
* [`atoti_spring_boot_admin`](../api/atoti_spring_boot_admin)

## Installation

The plugins can be installed as Python packages.
For instance, to install the DirectQuery JDBC plugin:

With [uv](https://docs.astral.sh/uv):

```bash theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
uv add "atoti[directquery-jdbc]"
```

Or with [pip](https://pip.pypa.io):

```bash theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
pip install "atoti[directquery-jdbc]"
```

Multiple plugins can be installed with the "extras" syntax:

```bash theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
uv add "atoti[directquery-jdbc,jupyterlab,spring-boot-admin]"
```
