Skip to main content

Overview

Komodo supports reading/writing to cloud object storage buckets on your machines/jobs/services. The following object storage providers are currently supported:
  • Amazon S3
  • Google Cloud Storage (GCS)
  • Azure Blob Storage
To use these providers, you will first need to connect your cloud account
There are 2 modes for using storage buckets:
  1. COPY - copies the contents of the bucket to a specific location on the instance. This is helpful for datasets where you need fast read access. Any files written here will NOT be uploaded back to the bucket.
  2. MOUNT - mounts the bucket as a file system on the instance. This is helpful for having a perisistent storage location, where you can store your model checkpoints and access them even after your tasks finish. Any files written here will be uploaded back to the bucket.
Here is an example of what you’d need to include in your task config to effectively use cloud storage buckets: Here is how you can use cloud storage from different providers:

Picking a storage mode