Checkpoints and Recover questions #19
-
Hi, thank you very much for developing this project. It mimics the Langgraph project well, but in Java, it is excellent. I have some questions regarding Checkpoints and recovery, which are more related to a missing piece I don't get in Langgraph philosophy than to a missing feature or some questions. So I've got a simple graph with two states. I inject the Then, with the Graph compiled, my first question is: Is thread-safe? So I can put in a server and send multiple parallel requests to the Graph? And related to my first question, I cannot reuse the Graph because it is not thread-safe, then I need to compile for each request (so it is request-scoped), which is ok, but if it is thread-safe, then the This is one part; the second part, which I couldn't find an example, is ok. I have all the checkpoints, and in the middle of execution in one node, I got an exception, which I captured and so on; how can I replay from this node down to the graph? (If it is possible to do it), after I fixed the problem? Thank you very much for your work on the library and sorry for this extensive issue. Hope I can contribute to the project in the near future either with code or with examples. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @lordofthejars, I'll try to answer to your questions as best II can:
Let me know if I have clarified your points in |
Beta Was this translation helpful? Give feedback.
Hi @lordofthejars, I'll try to answer to your questions as best II can: