-
Notifications
You must be signed in to change notification settings - Fork 92
feat(compression-coordinator): Complete S3 compression job handle implementation. #2420
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
Merged
LinZhihao-723
merged 12 commits into
y-scope:main
from
Bill-hbrhbr:compression-coordinator-job-handle-impl
Jul 29, 2026
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b07a473
impl
Bill-hbrhbr 47d677b
Merge branch 'main' into compression-coordinator-job-handle-impl
junhaoliao 0ef11ac
Include dispatch_time column.
LinZhihao-723 8a6be0a
Revert "Include dispatch_time column."
LinZhihao-723 1a2a2ec
Review and polish .
LinZhihao-723 107d3cb
Review the rest.
LinZhihao-723 75f236c
Symbol reordering.
LinZhihao-723 72e8c5a
Merge oss-main.
LinZhihao-723 abf8912
Fix logging.
LinZhihao-723 93aee60
Remove redundant compression_jobs schema setup from initialize-orches…
LinZhihao-723 b2cee3a
Revert database config.
LinZhihao-723 8ca1e9a
Remove empty line.
LinZhihao-723 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,11 +1,46 @@ | ||
| //! The crate-level error type for the compression coordinator. | ||
|
|
||
| use clp_rust_utils::{job_config::ingestion::JobId as IngestionJobId, s3::S3ObjectMetadataId}; | ||
|
|
||
| /// Errors returned by the compression coordinator. | ||
| #[derive(Debug, thiserror::Error)] | ||
| pub enum Error { | ||
| #[error( | ||
| "duplicate S3 object metadata IDs {ids:?} requested for ingestion job {ingestion_job_id}" | ||
| )] | ||
| DuplicateS3ObjectMetadata { | ||
| ingestion_job_id: IngestionJobId, | ||
| ids: Vec<S3ObjectMetadataId>, | ||
| }, | ||
|
|
||
| #[error("S3 object metadata {id} has an empty `{field}`")] | ||
| EmptyS3ObjectMetadataField { | ||
| id: S3ObjectMetadataId, | ||
| field: &'static str, | ||
| }, | ||
|
|
||
| #[error("invalid dataset: {0}")] | ||
| InvalidDataset(String), | ||
|
|
||
| #[error("failed to create metadata table `{table}`: {source}")] | ||
| MetadataTableCreation { | ||
| table: String, | ||
| #[source] | ||
| source: sqlx::Error, | ||
| }, | ||
|
|
||
| #[error("missing S3 object metadata {id} for ingestion job {ingestion_job_id}")] | ||
| MissingS3ObjectMetadata { | ||
| ingestion_job_id: IngestionJobId, | ||
| id: S3ObjectMetadataId, | ||
|
Comment on lines
+34
to
+35
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use |
||
| }, | ||
|
|
||
| #[error("no S3 object metadata was requested for ingestion job {0}")] | ||
| NoS3ObjectMetadata(IngestionJobId), | ||
|
|
||
| #[error("no S3 objects were partitioned into compression task inputs")] | ||
| NoTaskInputs, | ||
|
|
||
| #[error("S3 bucket mismatch: expected `{0}`, but got `{1}`")] | ||
| S3BucketMismatch(String, String), | ||
|
|
||
|
|
@@ -26,6 +61,9 @@ pub enum Error { | |
| #[error("failed to serialize a task input: {0}")] | ||
| TaskInputSerialization(#[from] rmp_serde::encode::Error), | ||
|
|
||
| #[error("number of compression tasks {0} exceeds `i32::MAX`")] | ||
| TooManyCompressionTasks(usize), | ||
|
|
||
| #[error("unsupported input config")] | ||
| UnsupportedInputConfig, | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Label
fieldas a simple.