[PR #1691] [MERGED] kafka: Implement sync orchestrator and executor classes #2233

Closed
opened 2026-02-20 17:46:36 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/1691
Author: @nfcampos
Created: 9/11/2024
Status: Merged
Merged: 9/11/2024
Merged by: @nfcampos

Base: mainHead: nc/11sep/kafka-sync


📝 Commits (1)

  • 4accc19 kafka: Implement sync orchestrator and executor classes

📊 Changes

14 files changed (+1628 additions, -49 deletions)

View changed files

📝 libs/scheduler-kafka/Makefile (+4 -2)
📝 libs/scheduler-kafka/README.md (+10 -4)
📝 libs/scheduler-kafka/langgraph/scheduler/kafka/default_async.py (+1 -8)
libs/scheduler-kafka/langgraph/scheduler/kafka/default_sync.py (+39 -0)
📝 libs/scheduler-kafka/langgraph/scheduler/kafka/executor.py (+211 -7)
📝 libs/scheduler-kafka/langgraph/scheduler/kafka/orchestrator.py (+194 -5)
📝 libs/scheduler-kafka/langgraph/scheduler/kafka/retry.py (+44 -0)
📝 libs/scheduler-kafka/langgraph/scheduler/kafka/types.py (+24 -2)
📝 libs/scheduler-kafka/tests/conftest.py (+24 -3)
📝 libs/scheduler-kafka/tests/drain.py (+92 -5)
📝 libs/scheduler-kafka/tests/test_fanout.py (+8 -8)
libs/scheduler-kafka/tests/test_fanout_sync.py (+273 -0)
📝 libs/scheduler-kafka/tests/test_subgraph.py (+5 -5)
libs/scheduler-kafka/tests/test_subgraph_sync.py (+699 -0)

📄 Description

No description provided


🔄 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/langgraph/pull/1691 **Author:** [@nfcampos](https://github.com/nfcampos) **Created:** 9/11/2024 **Status:** ✅ Merged **Merged:** 9/11/2024 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `nc/11sep/kafka-sync` --- ### 📝 Commits (1) - [`4accc19`](https://github.com/langchain-ai/langgraph/commit/4accc1973486750f723c9ff8fe8f73727a12cca3) kafka: Implement sync orchestrator and executor classes ### 📊 Changes **14 files changed** (+1628 additions, -49 deletions) <details> <summary>View changed files</summary> 📝 `libs/scheduler-kafka/Makefile` (+4 -2) 📝 `libs/scheduler-kafka/README.md` (+10 -4) 📝 `libs/scheduler-kafka/langgraph/scheduler/kafka/default_async.py` (+1 -8) ➕ `libs/scheduler-kafka/langgraph/scheduler/kafka/default_sync.py` (+39 -0) 📝 `libs/scheduler-kafka/langgraph/scheduler/kafka/executor.py` (+211 -7) 📝 `libs/scheduler-kafka/langgraph/scheduler/kafka/orchestrator.py` (+194 -5) 📝 `libs/scheduler-kafka/langgraph/scheduler/kafka/retry.py` (+44 -0) 📝 `libs/scheduler-kafka/langgraph/scheduler/kafka/types.py` (+24 -2) 📝 `libs/scheduler-kafka/tests/conftest.py` (+24 -3) 📝 `libs/scheduler-kafka/tests/drain.py` (+92 -5) 📝 `libs/scheduler-kafka/tests/test_fanout.py` (+8 -8) ➕ `libs/scheduler-kafka/tests/test_fanout_sync.py` (+273 -0) 📝 `libs/scheduler-kafka/tests/test_subgraph.py` (+5 -5) ➕ `libs/scheduler-kafka/tests/test_subgraph_sync.py` (+699 -0) </details> ### 📄 Description _No description provided_ --- <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-20 17:46:36 -05:00
yindo closed this issue 2026-02-20 17:46:36 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#2233