Skip to main content

langchain-gridgain

langchain-gridgain is a Python library that provides seamless integration between GridGain/Apache Ignite and LangChain. This library offers a set of storage adapters that allow LangChain components to efficiently use GridGain as a backend for various data storage needs.

Table of Contents

  1. Features
  2. Prerequisites
  3. Installation
  4. GridGain Setup
  5. Detailed Component Explanations
  6. Entry Expiry (TTL)
  7. Upgrading to 2.0.0
  8. Performance
  9. Documentation
  10. Example

Features

This library implements key LangChain and LangGraph interfaces for GridGain:

  1. GridGainStore: A key-value store implementation.
  2. GridGainDocumentLoader: A document loader for retrieving documents from GridGain caches.
  3. GridGainChatMessageHistory: A chat message history store using GridGain.
  4. GridGainCache: A caching mechanism for Language Models using GridGain.
  5. GridGainSemanticCache: A semantic caching mechanism for Language Models using GridGain.
  6. GridGainVectorStore: A vector store implementation using GridGain for storing and querying embeddings.
  7. GridGainByteStore: A binary key-value store, e.g. for caching embeddings via CacheBackedEmbeddings.
  8. GridGainCheckpointSaver: A LangGraph checkpointer for agent state persistence (resume, human-in-the-loop, time-travel).
  9. GridGainMemoryStore: A LangGraph store for cross-thread agent memory, with native TTL.

Prerequisites

  1. Python 3.10 or above (3.11, 3.12 and 3.13 are tested)

    • You can use pyenv to manage multiple Python versions (optional):
      1. Install pyenv: brew install pyenv (or your system's package manager)
      2. Create and activate the environment:
        pyenv virtualenv 3.11.7 langchain-env
        source $HOME/.pyenv/versions/langchain-env/bin/activate 
        
    • Alternatively, ensure supported Python version is installed directly.
  2. A running GridGain node, at least 8.9.17 (release notes). Which edition you need depends on what you use:

    • Community Edition is enough for GridGainCheckpointSaver, GridGainMemoryStore, GridGainCache, GridGainStore, GridGainByteStore, GridGainChatMessageHistory and GridGainDocumentLoader — they are key-value and SQL only.
    • Enterprise or Ultimate with a vector-search licence is required for GridGainVectorStore and GridGainSemanticCache.

Installation

Install the package using pip:

pip install langchain-gridgain

GridGain Setup

In order to use GridGain powered langchain components, you need to have a running GridGain cluster with vector search enabled.

1. Connecting to Gridgain

from pygridgain import Client

def connect_to_gridgain(host: str, port: int) -> Client:
    try:
        client = Client()
        client.connect(host, port)
        print("Connected to Ignite successfully.")
        return client
    except Exception as e:
        print(f"Failed to connect to Ignite: {e}")
        raise

Usage:

client = connect_to_gridgain("localhost", 10800)

Detailed Component Explanations

1. GridGainStore

GridGainStore is a key-value store implementation that uses GridGain as its backend. It provides a simple and efficient way to store and retrieve data using key-value pairs.

Usage example:

from langchain_gridgain.storage import GridGainStore

def initialize_keyvalue_store(client) -> GridGainStore:
    try:
        key_value_store = GridGainStore(
            cache_name="laptop_specs",
            client=client
        )
        print("GridGainStore initialized successfully.")
        return key_value_store
    except Exception as e:
        print(f"Failed to initialize GridGainStore: {e}")
        raise

# Usage
client = connect_to_ignite("localhost", 10800)
key_value_store = initialize_keyvalue_store(client)

# Store a value
key_value_store.mset([("laptop1", "16GB RAM, NVIDIA RTX 3060, Intel i7 11th Gen")])

# Retrieve a value
specs = key_value_store.mget(["laptop1"])[0]

2. GridGainDocumentLoader

GridGainDocumentLoader is designed to load documents from GridGain caches. It's particularly useful for scenarios where you need to retrieve and process large amounts of textual data stored in GridGain.

Usage example:

from langchain_gridgain.document_loaders import GridGainDocumentLoader

def initialize_doc_loader(client) -> GridGainDocumentLoader:
    try:
        doc_loader = GridGainDocumentLoader(
            cache_name="review_cache",
            client=client,
            create_cache_if_not_exists=True
        )
        print("GridGainDocumentLoader initialized successfully.")
        return doc_loader
    except Exception as e:
        print(f"Failed to initialize GridGainDocumentLoader: {e}")
        raise

# Usage
client = connect_to_ignite("localhost", 10800)
doc_loader = initialize_doc_loader(client)

# Populate the cache
reviews = {
    "laptop1": "Great performance for coding and video editing. The 16GB RAM and dedicated GPU make multitasking a breeze."
}
doc_loader.populate_cache(reviews)

# Load documents
documents = doc_loader.load()

3. GridGainChatMessageHistory

GridGainChatMessageHistory provides a way to store and retrieve chat message history using GridGain. This is crucial for maintaining context in conversational AI applications.

Usage example:

from langchain_gridgain.chat_message_histories import GridGainChatMessageHistory

def initialize_chathistory_store(client) -> GridGainChatMessageHistory:
    try:
        chat_history = GridGainChatMessageHistory(
            session_id="user_session",
            cache_name="chat_history",
            client=client
        )
        print("GridGainChatMessageHistory initialized successfully.")
        return chat_history
    except Exception as e:
        print(f"Failed to initialize GridGainChatMessageHistory: {e}")
        raise

# Usage
client = connect_to_ignite("localhost", 10800)
chat_history = initialize_chathistory_store(client)

# Add a message to the history
chat_history.add_user_message("Hello, I need help choosing a laptop.")

# Retrieve the conversation history
messages = chat_history.messages

4. GridGainCache

GridGainCache provides a caching mechanism for the responses received from LLMs using GridGain. This can significantly improve response times for exact queries by storing and retrieving pre-computed results.

Usage example:

from langchain_gridgain.llm_cache import GridGainCache

def initialize_llm_cache(client)-> GridGainCache:
    try:
        llm_cache = GridGainCache(
            cache_name="llm_cache",
            client=client
        )
        logger.info("GridGainCache initialized successfully.")
        return llm_cache
    except Exception as e:
        logger.error(f"Failed to initialize GridGainCache: {e}")
        raise

5. GridGainSemanticCache

GridGainSemanticCache provides a semantic caching mechanism for the responses received from LLMs using GridGain. This can significantly improve response times for similar queries by storing and retrieving pre-computed results.

Usage example:

from langchain_gridgain.llm_cache import GridGainCache
from langchain_gridgain.llm_cache import GridGainSemanticCache


def initialize_semantic_llm_cache(client, embedding)-> GridGainSemanticCache:
    try:
        llm_cache = GridGainCache(
            cache_name="llm_cache",
            client=client
        )
        semantic_cache = GridGainSemanticCache(
            llm_cache=llm_cache,
            cache_name="semantic_llm_cache",
            client=client,
            embedding=embedding,
            similarity_threshold=0.85
        )
        logger.info("GridGainSemanticCache initialized successfully.")
        return semantic_cache
    except Exception as e:
        logger.error(f"Failed to initialize GridGainSemanticCache: {e}")
        raise

### 6. GridGainVectorStore

GridGainVectorStore is a vector store implementation using GridGain for storing and querying embeddings. It allows efficient similarity search operations on high-dimensional vector data, and implements the standard LangChain `VectorStore` surface  it passes the `langchain-tests` conformance suite.

Usage example:
```python
from langchain_gridgain.vectorstores import GridGainVectorStore

vector_store = GridGainVectorStore(
    cache_name="tech_reviews",
    embedding=embedding_model,
    client=client,
)

texts = [
    "The latest MacBook Pro offers exceptional performance for video editing.",
    "ASUS ROG Zephyrus G14 provides a balance of portability and gaming performance.",
]

# Ids are optional: pass the standard `ids` parameter, put an "id" in metadata,
# or let the store generate them. Metadata is stored and returned untouched.
ids = vector_store.add_texts(
    texts,
    metadatas=[{"category": "laptop"}, {"category": "laptop"}],
    ids=["review-1", "review-2"],
)

# Similarity search, with or without scores
docs = vector_store.similarity_search("What's a good laptop for video editing?", k=2)
scored = vector_store.similarity_search_with_score("video editing", k=2)

# Maximal Marginal Relevance — trade relevance against diversity
diverse = vector_store.max_marginal_relevance_search(
    "laptops", k=2, fetch_k=10, lambda_mult=0.5
)

# Fetch and delete by id
vector_store.get_by_ids(["review-1"])
vector_store.delete(["review-1"])   # delete everything with delete()

Notes:

  • Scores are cosine distances (0.0 identical, larger is less similar). The vector query returns matches without their similarity values, so the distance is recomputed from each match's stored vector — the index ranks by cosine, so this is consistent with the server's own ordering. similarity_search_with_relevance_scores and the similarity_score_threshold retriever therefore work as usual; note that relevance is 1 - distance, so genuinely opposed vectors score below 0 and LangChain warns about it.
  • Metadata filtering is not supported. The vector query has no metadata predicate, so a filter could only be applied after the server had already chosen the top k — silently returning fewer results than asked for. A non-empty filter therefore raises NotImplementedError rather than being ignored. Partition the data (one store per tenant or collection) if you need it.
  • score_threshold is applied server-side, on the engine's own similarity scale.
  • Async methods come from VectorStore's defaults, which run the sync implementation in a thread pool. That is safe, but unlike GridGainCheckpointSaver and GridGainMemoryStore it is not true non-blocking I/O.
  • Deleting a document also removes it from the vector index, since the index is derived from the cache rows.
  • This is the one component that requires a vector-enabled GridGain build and a vector-search license.

7. GridGainByteStore

GridGainByteStore is a binary key-value store (BaseStore[str, bytes]) backed by GridGain. Its main use is caching computed embeddings with LangChain's CacheBackedEmbeddings, so each text is embedded only once.

Usage example:

from langchain_classic.embeddings import CacheBackedEmbeddings
from langchain_gridgain.storage import GridGainByteStore

byte_store = GridGainByteStore(
    cache_name="embeddings_cache",
    client=client
)

cached_embedder = CacheBackedEmbeddings.from_bytes_store(
    underlying_embeddings,
    byte_store,
    namespace="my-embedding-model",
    key_encoder="sha256",  # the default is SHA-1, which is not collision-resistant
)

# First call computes and caches; repeated calls hit GridGain.
vectors = cached_embedder.embed_documents(["Hello world"])

8. GridGainCheckpointSaver (LangGraph)

GridGainCheckpointSaver is a LangGraph checkpointer (BaseCheckpointSaver) that persists agent state in GridGain, enabling resume, human-in-the-loop, and time-travel. It stores each checkpoint, its payload and its intermediate writes in three SQL-backed caches — lg_checkpoints, lg_checkpoint_blobs and lg_checkpoint_writes — created automatically on first use. The payload is deliberately kept out of lg_checkpoints, which is the table every "latest checkpoint" query orders by; see Upgrading. Unlike the vector components, it uses only SQL, so it runs on any GridGain/Apache Ignite node (no vector license required).

Usage example:

from pygridgain import Client
from langchain_gridgain.checkpoint import GridGainCheckpointSaver

client = Client()
client.connect("127.0.0.1", 10800)

checkpointer = GridGainCheckpointSaver(client)

graph = builder.compile(checkpointer=checkpointer)
config = {"configurable": {"thread_id": "conversation-1"}}
result = graph.invoke(inputs, config)

# Resume later on the same thread; inspect the latest state.
snapshot = graph.get_state(config)

For native async graphs (ainvoke / astream), pass a connected AioClient so the checkpointer uses non-blocking I/O:

from pygridgain import AioClient

aio_client = AioClient()
await aio_client.connect("127.0.0.1", 10800)

checkpointer = GridGainCheckpointSaver(aio_client=aio_client)

Pass both client and aio_client to serve sync and async graphs from one instance. A sync-only saver still works with ainvoke — it runs the sync path on a worker thread.

9. GridGainMemoryStore (LangGraph)

GridGainMemoryStore is a LangGraph store (BaseStore) for memory that outlives a single thread — user preferences, extracted facts, anything an agent should recall across conversations. Items live in namespaces and support structured search, so this is the counterpart to the checkpointer's per-thread state.

It stores items in one cache (lg_store, created when the store is constructed) and, like the checkpointer, needs no vector license — it uses the key-value and SQL APIs only.

Usage example:

from pygridgain import Client
from langchain_gridgain.store import GridGainMemoryStore

client = Client()
client.connect("127.0.0.1", 10800)

store = GridGainMemoryStore(client)

# Namespaced items
store.put(("users", "u1"), "prefs", {"theme": "dark", "score": 5})
store.get(("users", "u1"), "prefs").value          # {"theme": "dark", "score": 5}

# Search a namespace and everything nested under it
store.search(("users",), filter={"theme": "dark"})
store.search(("users",), filter={"score": {"$gte": 5}}, limit=10, offset=0)

# Explore the namespace hierarchy
store.list_namespaces(prefix=("users",))
store.list_namespaces(max_depth=1)

store.delete(("users", "u1"), "prefs")

graph = builder.compile(store=store)  # cross-thread memory for an agent

Filters support exact matches plus $eq, $ne, $gt, $gte, $lt, $lte, and are applied to the item's JSON value.

TTL is native. Unlike the Postgres/SQLite stores, expiry is enforced by the server rather than an expires_at column. Pass a per-item ttl (in minutes) and/or store-wide defaults, and by default reads refresh the expiry:

store = GridGainMemoryStore(
    client,
    ttl_config={"default_ttl": 60, "refresh_on_read": True},  # minutes
)

store.put(("users", "u1"), "session", {"step": 3}, ttl=10)  # expires in 10 minutes
store.get(("users", "u1"), "session")                       # ...and that resets the clock
store.get(("users", "u1"), "session", refresh_ttl=False)    # read without refreshing

For native async graphs, pass a connected AioClient (optionally alongside the sync client, to serve both):

from pygridgain import AioClient

aio_client = AioClient()
await aio_client.connect("127.0.0.1", 10800)

store = GridGainMemoryStore(aio_client=aio_client)
await store.aput(("users", "u1"), "prefs", {"theme": "dark"})

Semantic search is not implemented yet. search(..., query="...") is accepted but the query is ignored (with a warning) and the structured-filter path runs; vector-backed search depends on the GridGain vector engine and lands separately.

Entry Expiry (TTL)

GridGainCache, GridGainSemanticCache, GridGainVectorStore, GridGainStore and GridGainByteStore accept an optional ttl argument (seconds or a datetime.timedelta). Entries written through the component expire that long after creation or update; None (the default) keeps entries forever.

from datetime import timedelta
from langchain_gridgain.llm_cache import GridGainCache, GridGainSemanticCache

llm_cache = GridGainCache(cache_name="llm_cache", client=client, ttl=timedelta(hours=1))

semantic_cache = GridGainSemanticCache(
    llm_cache=llm_cache,          # give it the same ttl so both sides expire in lockstep
    cache_name="semantic_llm_cache",
    client=client,
    embedding=embedding,
    ttl=timedelta(hours=1),
)

For the semantic cache, ttl applies to its vector entries; pass the same ttl to the wrapped GridGainCache so the exact-match entries expire in lockstep.

Upgrading to 2.0.0

Coming from any 1.0.x release. A version-by-version summary lives in CHANGELOG.md; this section covers what you have to do.

The dependency floor moved (breaking). 1.0.x pinned the langchain umbrella exactly (langchain == 0.3.21, plus langchain-community~=0.3.20 and pygridgain == 1.5.0). 2.0.0 depends on langchain-core >= 1.4.7, < 2 instead, drops langchain-community entirely, and needs pygridgain >= 1.6. The old pin held LangGraph two major lines behind, which is untenable for a package whose purpose is LangGraph integration. Because the requirement is a hard floor, pip will simply keep resolving you to 1.0.3 until your environment is on langchain-core 1.x.

Cache keys changed (breaking). GridGainCache entries are now keyed by prompt and LLM (previously the LLM was ignored, so the same prompt sent to different models collided on one entry). After upgrading, entries written by 1.0.x are unreachable under the new keys: the cache starts cold, and — since 1.0.x had no TTL — the old entries never expire on their own. Run clear() once per GridGainCache/GridGainSemanticCache after upgrading to reclaim that space:

llm_cache.clear()        # exact-match cache
semantic_cache.clear()   # vector entries + its exact-match cache

Embedding-cache keys changed if you followed the old CacheBackedEmbeddings example (breaking). That example previously relied on LangChain's default key_encoder, which is SHA-1; it now passes key_encoder="sha256". The key encoder is the cache key, so entries written under the old default become unreachable and, with no TTL on the example's GridGainByteStore, never expire. Either keep the old behaviour explicitly (key_encoder="sha1") or clear the byte store once after upgrading — it is a ByteStore, so there is no clear(); use byte_store.mdelete(list(byte_store.yield_keys())). Nothing is lost either way — the entries are recomputable — but the first run after the switch re-embeds everything.

Semantic cache error handling (now documented). GridGainSemanticCache.lookup() and update() degrade gracefully: a backend failure is logged and treated as a cache miss / skipped write, so a chain keeps working through GridGain hiccups and a computed generation is never lost to a cache-write error. clear() raises on failure. The exact-match GridGainCache propagates errors on all operations, as before.

The checkpointer's schema changed, and migrates itself. GridGainCheckpointSaver used to inline the serialized checkpoint into lg_checkpoints. It now keeps that payload in a separate lg_checkpoint_blobs table, because Ignite materializes whole rows during an ordered index scan — so a payload column in the table we ORDER BY made "fetch the latest checkpoint" cost time proportional to the whole thread's size. On a thread of 1000 64 KB checkpoints that was 8x slower than it needed to be.

Nothing is required of you in the ordinary case: the first saver constructed with a sync client against an old table copies the payloads across and drops the legacy columns, once, logging at INFO. It is idempotent and safe to run concurrently. asetup() does not migrate, so a saver given only an aio_client needs one sync construction against the same cluster to convert a legacy table. This only arises for deployments that ran the checkpointer from source before 2.0.0 — no published version has the pre-split schema. If the column drop fails (an index on it, say) you get a WARNING with the exact ALTER TABLE to run — reads are correct either way, they just stay slow until the columns are gone. The cost of the split is a second round trip per put; see benchmarks/RESULTS.md for what that trades against.

GridGainMemoryStore creates an index. A (prefix, itemKey) index is created on the store cache at construction (CREATE INDEX IF NOT EXISTS, so existing caches pick it up too). It backs the namespace scope, list_namespaces, and the ORDER BY that makes a paged search a page rather than a sort of the whole subtree.

Client support. The vector-based components (GridGainVectorStore, GridGainSemanticCache) require a pygridgain client — pyignite has no vector API. The key-value components (GridGainStore, GridGainByteStore, GridGainCache, GridGainChatMessageHistory, GridGainDocumentLoader) work with either client.

Thread-safety. The sync thin client is not thread-safe on its own — one socket, no locking — so every component built on a given client shares a single re-entrant lock and serializes its access to it. Sharing a client across components and threads is therefore safe and needs no external locking; the trade-off is that operations on one client run one at a time, so shard across several clients if you need client-side parallelism. The default async methods run their sync counterparts in a thread pool (safe for the same reason, but not true non-blocking I/O); GridGainCheckpointSaver and GridGainMemoryStore do real async I/O when given an AioClient. Note that read-modify-write sequences across separate calls (e.g. GridGainChatMessageHistory.add_message, which reads the history then writes it back) are still not atomic: the lock serializes each individual operation, not a multi-call sequence.

Performance

Benchmarks live in benchmarks/: pytest-benchmark microbenchmarks of the pure-Python hot paths, and a macro sweep that drives the checkpointer, store and caches against a real node next to two baselines — LangGraph's InMemorySaver (the floor) and langgraph-checkpoint-postgres (the peer). Both write JSON artifacts; a nightly workflow tracks the trend.

The one number worth knowing before you deploy: the synchronous thin client is a single socket, so components sharing one client serialize (see Thread-safety above). If you need client-side parallelism, shard across clients — the sweep reports both shapes side by side.

Documentation

This README is the documentation for 2.x. The GridGain docs site still describes these components under their old langchain_community.* import paths, which this package has never used and which 2.0.0 cannot satisfy at all — langchain-community is no longer a dependency. It is deliberately not linked here until it is updated.

Example

For a comprehensive, real-world example of how to use this package, please refer to the following GitHub repository:

GG Langchain Demo

gg8_langchain_demo is a demonstration project that showcases the integration of GridGain/Apache Ignite with LangChain, using the custom langchain-gridgain package. This project provides examples of how to use GridGain as a backend for various LangChain components, focusing on a laptop recommendation system.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langchain_gridgain-2.0.0.tar.gz (150.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langchain_gridgain-2.0.0-py3-none-any.whl (66.9 kB view details)

Uploaded Python 3

File details

Details for the file langchain_gridgain-2.0.0.tar.gz.

File metadata

  • Download URL: langchain_gridgain-2.0.0.tar.gz
  • Upload date:
  • Size: 150.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for langchain_gridgain-2.0.0.tar.gz
Algorithm Hash digest
SHA256 5c3d00c337925e9ed30763a8766f664b8e981b7f5454cf964731933895e4ea68
MD5 d8e7b966a84918660b59a184561c18fb
BLAKE2b-256 1c6bb3781b2fab65033e614ffc68fcce140070aab1f5b761b406a23d1400fa08

See more details on using hashes here.

File details

Details for the file langchain_gridgain-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_gridgain-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 52fa6e5e0acb7338c08c96dea387d4a4b92544fc0969e80f9f03cd2eeebde518
MD5 3a54c6b657b57dec0877864eb61d32d3
BLAKE2b-256 d2840e4e65839391b257279e85e90685cc4ee0e6af7f4d5e3a7df1d7b4e8175f

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.0 This release

2 files

1.0.3

2 files

1.0.2

1 file

1.0.1

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page