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
s3_sync: start from any checkpoint in object store
* `sync.start_from_checkpoint` takes either a UUID to a checkpoint
or `latest` which just pulls the latest checkpoint
* checkpoints now include state.json inside the checkpoint directory
as well
* syncs individual pipelines to object store, as now they are
self contained
Signed-off-by: Abhinav Gyawali <22275402+abhizer@users.noreply.github.com>
|`endpoint`|`string`| The S3-compatible object store endpoint (e.g., for MinIO, AWS). |
36
-
|`bucket`\*|`string`| The bucket name and optional prefix to store checkpoints (e.g., `mybucket/checkpoints`). |
37
-
|`provider`\*|`string`| The S3 provider identifier. Must match [rclone's list](https://rclone.org/s3/#providers). Case-sensitive. Use `"Other"` if unsure. |
38
-
|`access_key`|`string`| Your S3 access key. Not required if using environment-based authentication (e.g., IRSA). |
39
-
|`secret_key`|`string`| Your S3 secret key. Same rules as `access_key`. |
40
-
|`start_from_checkpoint`\*|`boolean`|If `true`, Feldera will restore the latest checkpoint from the object store on startup. |
39
+
|`endpoint`|`string`| The S3-compatible object store endpoint (e.g., for MinIO, AWS). |
40
+
|`bucket`\*|`string`| The bucket name and optional prefix to store checkpoints (e.g., `mybucket/checkpoints`). |
41
+
|`provider`\*|`string`| The S3 provider identifier. Must match [rclone's list](https://rclone.org/s3/#providers). Case-sensitive. Use `"Other"` if unsure. |
42
+
|`access_key`|`string`| Your S3 access key. Not required if using environment-based authentication (e.g., IRSA). |
43
+
|`secret_key`|`string`| Your S3 secret key. Same rules as `access_key`. |
44
+
|`start_from_checkpoint`|`string`| Provide a checkpoint UUID to resume from it, or use `latest` to restore from the latest one. The provided UUID must exist in object store.|
0 commit comments