-
Notifications
You must be signed in to change notification settings - Fork 5
fix: ML processing that is causing jobs to fail for medium-large jobs (issue #782) #934
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
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python Debugger: Remote Attach", | ||
"type": "debugpy", | ||
"request": "attach", | ||
"connect": { | ||
"host": "localhost", | ||
"port": 5678 | ||
}, | ||
"pathMappings": [ | ||
{ | ||
"localRoot": "${workspaceFolder}", | ||
"remoteRoot": "." | ||
} | ||
] | ||
} | ||
] | ||
} | ||
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 |
---|---|---|
|
@@ -404,6 +404,7 @@ def run(cls, job: "Job"): | |
chunk_size = config.get("request_source_image_batch_size", 1) | ||
chunks = [images[i : i + chunk_size] for i in range(0, image_count, chunk_size)] # noqa | ||
request_failed_images = [] | ||
job.logger.info(f"Processing {image_count} images in {len(chunks)} batches of up to {chunk_size}") | ||
|
||
for i, chunk in enumerate(chunks): | ||
request_sent = time.time() | ||
|
@@ -946,11 +947,15 @@ def default_progress(cls) -> JobProgress: | |
|
||
@property | ||
def logger(self) -> logging.Logger: | ||
logger = logging.getLogger(f"ami.jobs.{self.pk}") | ||
# Also log output to a field on thie model instance | ||
logger.addHandler(JobLogHandler(self)) | ||
logger.propagate = False | ||
return logger | ||
_logger = logging.getLogger(f"ami.jobs.{self.pk}") | ||
|
||
# Only add JobLogHandler if not already present | ||
if not any(isinstance(h, JobLogHandler) for h in _logger.handlers): | ||
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. I see the culprit! what a catch. |
||
# Also log output to a field on thie model instance | ||
logger.info("Adding JobLogHandler to logger for job %s", self.pk) | ||
mihow marked this conversation as resolved.
Show resolved
Hide resolved
|
||
_logger.addHandler(JobLogHandler(self)) | ||
_logger.propagate = False | ||
return _logger | ||
|
||
class Meta: | ||
ordering = ["-created_at"] | ||
|
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 +1,2 @@ | ||
-r base.txt | ||
debugpy # For remote debugging with debugpy |
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.
Uh oh!
There was an error while loading. Please reload this page.