Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: use OFS as the default shared filesystem #493

Merged
merged 3 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ Types of changes

# Latch SDK Changelog

## v2.53.0 - 2024-09-28

### Changed

* Make OFS the default storage option for Nextflow workflows
* Bump the `nextflow` base image to `v2.1.2`

## 2.52.5 - 2024-09-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion latch_cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class LatchConstants:
base_image: str = (
"812206152185.dkr.ecr.us-west-2.amazonaws.com/latch-base:fe0b-main"
)
nextflow_latest_version: str = "v2.0.0"
nextflow_latest_version: str = "v2.1.2"

file_max_size: int = 4 * Units.MiB
file_chunk_size: int = 64 * Units.MiB
Expand Down
2 changes: 1 addition & 1 deletion latch_cli/nextflow/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def initialize() -> str:

print("Provisioning shared storage volume... ", end="")
resp = requests.post(
"http://nf-dispatcher-service.flyte.svc.cluster.local/provision-storage",
"http://nf-dispatcher-service.flyte.svc.cluster.local/provision-storage-ofs",
headers=headers,
json={{
"storage_expiration_hours": {storage_expiration_hours},
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="latch",
version="v2.52.5",
version="v2.53.0",
author_email="kenny@latch.bio",
description="The Latch SDK",
packages=find_packages(),
Expand Down
Loading