Back to Agno

Database Integration

cookbook/06_storage/README.md

3.0.0a34.4 KB
Original Source

Database Integration

This directory contains examples demonstrating how to integrate various databases with Agno agents, teams, and workflows for persistent storage.

Setup

shell
# Install required database drivers based on your choice
uv pip install psycopg2-binary  # PostgreSQL
uv pip install pymongo         # MongoDB
uv pip install mysql-connector-python  # MySQL
uv pip install redis           # Redis
uv pip install valkey-glide-sync  # Valkey
uv pip install google-cloud-firestore  # Firestore
uv pip install boto3           # DynamoDB
uv pip install singlestoredb   # SingleStore
uv pip install google-cloud-storage  # GCS

Navigate to the specific integration directory for detailed documentation and examples.

Basic Integration

python
from agno.agent import Agent
from agno.db.postgres import PostgresDb

db = PostgresDb(db_url="postgresql+psycopg://user:password@localhost:5432/dbname")

agent = Agent(
    db=db,
    add_history_to_context=True,
)

Supported Databases

  • postgres - PostgreSQL relational database integration
  • sqlite - SQLite lightweight database integration
  • mongo - MongoDB document database integration
  • mysql - MySQL relational database integration
  • redis - Redis in-memory data structure store integration
  • valkey - Valkey in-memory data structure store integration
  • singlestore - SingleStore distributed SQL database integration
  • firestore - Google Cloud Firestore NoSQL database integration
  • dynamodb - AWS DynamoDB NoSQL database integration
  • json_db - JSON file-based storage integration
  • gcs - Google Cloud Storage JSON blob integration
  • in_memory - In-memory storage with optional persistence hooks

Session Management

Media Storage

Offload media content (images, audio, video, files) to external storage and keep only lightweight references in the database.

The S3 and GCS backends need their optional dependencies:

shell
uv pip install 'agno[s3]'   # S3 (boto3 + aioboto3)
uv pip install 'agno[gcs]'  # GCS (google-cloud-storage)

Enable this only after the whole fleet is upgraded

Turning media storage on is a one-way door. There is no schema change — no new table, no new column, no migration — but the shape of the media inside the existing column changes: an offloaded image carries a media_reference and no content.

A reader that predates this feature validates that media has one of url, filepath, or content, and an offloaded image has none of the three. It does not skip that image, it raises — so one offloaded row makes get_sessions() fail for the whole session list, including clean sessions written before the upgrade.

New code reads old rows fine, so the upgrade direction is safe. The rollback direction is not. Roll the release out everywhere first, then enable media_storage — and expect that once rows carry references, going back to an older build leaves that media unreadable until you return.