[PR #1426] [CLOSED] Feat/ElasticSearch Introduce ElasticSearch checkpointer #1453

Closed
opened 2026-02-15 20:15:49 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1426
Author: @KDKHD
Created: 7/21/2025
Status: Closed

Base: mainHead: checkpointer/elasticsearch


📝 Commits (6)

  • 65d4746 Introduce elasticsearch checkpointer
  • 0d0d148 changeset
  • 308ac77 serialize checkpoints, metadatas and checkpointWrites since their types are unknown
  • 7677293 Merge branch 'main' into checkpointer/elasticsearch
  • 41d4e60 lint
  • 4be3c41 Merge branch 'checkpointer/elasticsearch' of github.com:KDKHD/langgraphjs into checkpointer/elasticsearch

📊 Changes

18 files changed (+1336 additions, -1 deletions)

View changed files

.changeset/short-deer-sin.md (+5 -0)
libs/checkpoint-elasticsearch/.env.example (+6 -0)
libs/checkpoint-elasticsearch/.eslintrc.cjs (+68 -0)
libs/checkpoint-elasticsearch/.gitignore (+7 -0)
libs/checkpoint-elasticsearch/.prettierrc (+19 -0)
libs/checkpoint-elasticsearch/.release-it.json (+13 -0)
libs/checkpoint-elasticsearch/LICENSE (+21 -0)
libs/checkpoint-elasticsearch/README.md (+84 -0)
libs/checkpoint-elasticsearch/docker-compose.yml (+33 -0)
libs/checkpoint-elasticsearch/langchain.config.js (+21 -0)
libs/checkpoint-elasticsearch/package.json (+85 -0)
libs/checkpoint-elasticsearch/src/index.ts (+466 -0)
libs/checkpoint-elasticsearch/src/tests/checkpoints.int.test.ts (+168 -0)
libs/checkpoint-elasticsearch/tsconfig.cjs.json (+9 -0)
libs/checkpoint-elasticsearch/tsconfig.json (+24 -0)
libs/checkpoint-elasticsearch/turbo.json (+12 -0)
libs/checkpoint-elasticsearch/vitest.config.js (+36 -0)
📝 yarn.lock (+259 -1)

📄 Description

Introduces a new checkpointer that uses ElasticSearch as the backing database.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraphjs/pull/1426 **Author:** [@KDKHD](https://github.com/KDKHD) **Created:** 7/21/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `checkpointer/elasticsearch` --- ### 📝 Commits (6) - [`65d4746`](https://github.com/langchain-ai/langgraphjs/commit/65d4746f5e527466aade7ffea5b9f9885f7b2f17) Introduce elasticsearch checkpointer - [`0d0d148`](https://github.com/langchain-ai/langgraphjs/commit/0d0d1481516d992061d9f7c4826a781e77bd9486) changeset - [`308ac77`](https://github.com/langchain-ai/langgraphjs/commit/308ac774d91db67690996c70c5c099ddffac3a9f) serialize checkpoints, metadatas and checkpointWrites since their types are unknown - [`7677293`](https://github.com/langchain-ai/langgraphjs/commit/767729397a3368325448d0c8779e6eba763db098) Merge branch 'main' into checkpointer/elasticsearch - [`41d4e60`](https://github.com/langchain-ai/langgraphjs/commit/41d4e6030ccfd8dbd3bb805ed501c68fdd8eb5bd) lint - [`4be3c41`](https://github.com/langchain-ai/langgraphjs/commit/4be3c418cbe3493522bdf761b541bf51a1f9faf6) Merge branch 'checkpointer/elasticsearch' of github.com:KDKHD/langgraphjs into checkpointer/elasticsearch ### 📊 Changes **18 files changed** (+1336 additions, -1 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/short-deer-sin.md` (+5 -0) ➕ `libs/checkpoint-elasticsearch/.env.example` (+6 -0) ➕ `libs/checkpoint-elasticsearch/.eslintrc.cjs` (+68 -0) ➕ `libs/checkpoint-elasticsearch/.gitignore` (+7 -0) ➕ `libs/checkpoint-elasticsearch/.prettierrc` (+19 -0) ➕ `libs/checkpoint-elasticsearch/.release-it.json` (+13 -0) ➕ `libs/checkpoint-elasticsearch/LICENSE` (+21 -0) ➕ `libs/checkpoint-elasticsearch/README.md` (+84 -0) ➕ `libs/checkpoint-elasticsearch/docker-compose.yml` (+33 -0) ➕ `libs/checkpoint-elasticsearch/langchain.config.js` (+21 -0) ➕ `libs/checkpoint-elasticsearch/package.json` (+85 -0) ➕ `libs/checkpoint-elasticsearch/src/index.ts` (+466 -0) ➕ `libs/checkpoint-elasticsearch/src/tests/checkpoints.int.test.ts` (+168 -0) ➕ `libs/checkpoint-elasticsearch/tsconfig.cjs.json` (+9 -0) ➕ `libs/checkpoint-elasticsearch/tsconfig.json` (+24 -0) ➕ `libs/checkpoint-elasticsearch/turbo.json` (+12 -0) ➕ `libs/checkpoint-elasticsearch/vitest.config.js` (+36 -0) 📝 `yarn.lock` (+259 -1) </details> ### 📄 Description <!-- Thank you for contributing to LangGraph.js! Your PR will appear in our next release under the title you set above. Please make sure it highlights your valuable contribution. To help streamline the review process, please make sure you read our contribution guidelines: https://github.com/langchain-ai/langgraphjs/blob/main/CONTRIBUTING.md Replace this block with a description of the change, the issue it fixes (if applicable), and relevant context. Finally, we'd love to show appreciation for your contribution - if you'd like us to shout you out on Twitter, please also include your handle below! --> <!-- Remove if not applicable --> Introduces a new checkpointer that uses ElasticSearch as the backing database. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 20:15:49 -05:00
yindo closed this issue 2026-02-15 20:15:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#1453