You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to automatically synchronize source/target cloud storages (e.g. S3) with the labelstudio project? I didn't find any options in the settings nor did find info in issues.
The text was updated successfully, but these errors were encountered:
Currently, Label Studio does not include a built‐in option to automatically synchronize your source or target cloud storages (such as S3) with your project. In other words, once you configure a storage connection, you need to initiate the sync manually via the UI (by clicking the “Sync” button) or programmatically via the API.
For example, after you set up an S3 bucket as your source storage, Label Studio creates references to the objects in that bucket rather than importing them automatically. This design gives you full control over which data is added to your project. Similarly, for target storages (where annotations are pushed) a manual sync operation is required.
If you need an automated workflow, you could implement your own solution by scheduling periodic API calls to the relevant sync endpoint. This way, a background process (or cron job) would trigger the sync operation for you. For instance, you could use the following basic approach:
This method lets you mimic automatic synchronization by having your system call the sync endpoint on a schedule.
Let me know if you need further guidance or help setting up a scheduled sync process.
Is there a way to automatically synchronize source/target cloud storages (e.g. S3) with the labelstudio project? I didn't find any options in the settings nor did find info in issues.
The text was updated successfully, but these errors were encountered: