docs(integrations): add Database Memory Service#1662
Merged
koverholt merged 2 commits intoApr 21, 2026
Conversation
Add a new integration entry for adk-database-memory, a drop-in durable BaseMemoryService for the Python ADK backed by any async SQLAlchemy dialect (SQLite, PostgreSQL, MySQL/MariaDB). Repo: https://github.com/anmolg1997/adk-database-memory Package: adk-database-memory on PyPI (Apache 2.0) This fills the gap between InMemoryMemoryService (ephemeral, for dev) and VertexAiMemoryBankService (managed GCP) for self-hosted durable memory on the database the user already runs.
✅ Deploy Preview for adk-docs-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
koverholt
approved these changes
Apr 21, 2026
koverholt
left a comment
Collaborator
There was a problem hiding this comment.
Thanks for the PR and contributing this integration / package! I made some edits to the page copy for clarity and consistency with the other integration pages, and renamed the file so it sorts better in the catalog. Everything LGTM! Merging.
Collaborator
|
My mistake, I forgot to git add the new page after I renamed it. Opened #1664 to add it! |
Contributor
Author
|
Thanks @koverholt, appreciate the copy edits and the file rename. Page reads much cleaner. |
koverholt
added a commit
to sabrenner/google-adk-docs
that referenced
this pull request
Apr 28, 2026
* docs(integrations): add Database Memory Service Add a new integration entry for adk-database-memory, a drop-in durable BaseMemoryService for the Python ADK backed by any async SQLAlchemy dialect (SQLite, PostgreSQL, MySQL/MariaDB). Repo: https://github.com/anmolg1997/adk-database-memory Package: adk-database-memory on PyPI (Apache 2.0) This fills the gap between InMemoryMemoryService (ephemeral, for dev) and VertexAiMemoryBankService (managed GCP) for self-hosted durable memory on the database the user already runs. * Update formatting and wording --------- Co-authored-by: Kristopher Overholt <koverholt@google.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new entry to the integrations catalog for
adk-database-memory, an Apache 2.0 Python package that implementsBaseMemoryServiceover any async SQLAlchemy dialect (SQLite, PostgreSQL, MySQL/MariaDB).This fills the gap between
InMemoryMemoryService(ephemeral, for development) andVertexAiMemoryBankService(managed, GCP-only) for users who want durable memory on their own database: self-hosted deployments, non-GCP clouds, or local dev that survives restarts.Context
Originally proposed as a core contribution in
google/adk-python#5339. The maintainer (@rohityan) recommended releasing it as a standalone package listed here: google/adk-python#5339 (comment)... . This PR follows that guidance.What's included
docs/integrations/adk-database-memory.mdwith the standard frontmatter (catalog_title,catalog_description,catalog_icon,catalog_tags: ["data"]), Python language tag, use cases, prerequisites, install instructions for SQLite / Postgres / MySQL extras, a working ADK usage example, a supported-backends table, and API notes.docs/integrations/assets/adk-database-memory.pngicon (512x512, consistent with other data-category integrations).Package details
google.adk.memory.base_memory_service.BaseMemoryService, same keyword-extraction approach used byInMemoryMemoryServiceandFirestoreMemoryService.Related
google/adk-python: feat(memory): add DatabaseMemoryService with SQLAlchemy async backend adk-python#5339Checklist
docs/integrations/adk-database-memory.md.docs/integrations/assets/adk-database-memory.png.catalog_title,catalog_description,catalog_icon,catalog_tags.