-
Notifications
You must be signed in to change notification settings - Fork 905
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(agents-api): Fix blob store, ifelse branch, temporal postgres (#882)
<!-- ELLIPSIS_HIDDEN --> > [!IMPORTANT] > Fixes blob store handling, improves retry logic, and updates configurations for agents API, memory store, and scheduler. > > - **Blob Store Handling**: > - In `execute_system.py`, added logic to load arguments from blob store if they contain `bucket` and `key`. > - In `storage_handler.py`, updated `load_from_blob_store_if_remote()` to handle dicts with `bucket` and `key`. > - **Retry Logic**: > - In `models/utils.py`, increased retry attempts from 2 to 4 in `is_resource_busy()`. > - Updated error handling in `cozo_query()` to check both `e` and `e.resp` for 'busy' status. > - **Workflow Execution**: > - In `helpers.py`, modified `execute_if_else_branch()` to handle `None` else_branch by setting a default `EvaluateStep`. > - **Configuration Updates**: > - In `memory-store/docker-compose.yml`, added `develop` section for file watching and rebuild actions. > - In `memory-store/options`, increased `max_background_jobs` to 32 and `max_subcompactions` to 8. > - In `scheduler/docker-compose.yml`, set `temporal-db-data` volume to external. > > <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=julep-ai%2Fjulep&utm_source=github&utm_medium=referral)<sup> for fa011a9. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN --> --------- Co-authored-by: Julep Developers <[email protected]> Co-authored-by: whiterabbit1983 <[email protected]>
- Loading branch information
1 parent
7810756
commit 4113fab
Showing
7 changed files
with
31 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,3 +107,4 @@ services: | |
|
||
volumes: | ||
temporal-db-data: | ||
external: true |