-
Notifications
You must be signed in to change notification settings - Fork 20
Change scheduler to apscheduler #1024
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
7 commits
Select commit
Hold shift + click to select a range
e369afb
Change scheduler to apscheduler
tjeerddie f9fda66
Improve Filtering scheduled tasks and update documentation
tjeerddie f4fcd81
Improve scheduled task sorting
tjeerddie 38be324
add scheduler shutdown and engine.dispose to scheduler cli commands
tjeerddie c1f3007
Move db engine dispose into a function
tjeerddie 6eabbdb
Change scheduler run command to use blocking scheduler and improve docs
tjeerddie 7685271
bumpversion to 4.4.0rc1
tjeerddie 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
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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import structlog | ||
|
||
from orchestrator.db.filters import Filter | ||
from orchestrator.db.sorting import Sort | ||
from orchestrator.graphql.pagination import Connection | ||
from orchestrator.graphql.schemas.scheduled_task import ScheduledTaskGraphql | ||
from orchestrator.graphql.types import GraphqlFilter, GraphqlSort, OrchestratorInfo | ||
from orchestrator.graphql.utils import create_resolver_error_handler, to_graphql_result_page | ||
from orchestrator.graphql.utils.is_query_detailed import is_querying_page_data | ||
from orchestrator.schedules.scheduler import get_scheduler_tasks, scheduled_task_filter_keys, scheduled_task_sort_keys | ||
|
||
logger = structlog.get_logger(__name__) | ||
|
||
|
||
async def resolve_scheduled_tasks( | ||
info: OrchestratorInfo, | ||
filter_by: list[GraphqlFilter] | None = None, | ||
sort_by: list[GraphqlSort] | None = None, | ||
first: int = 10, | ||
after: int = 0, | ||
) -> Connection[ScheduledTaskGraphql]: | ||
_error_handler = create_resolver_error_handler(info) | ||
|
||
pydantic_filter_by: list[Filter] = [item.to_pydantic() for item in filter_by] if filter_by else [] | ||
pydantic_sort_by: list[Sort] = [item.to_pydantic() for item in sort_by] if sort_by else [] | ||
scheduled_tasks, total = get_scheduler_tasks( | ||
first=first, after=after, filter_by=pydantic_filter_by, sort_by=pydantic_sort_by, error_handler=_error_handler | ||
) | ||
|
||
graphql_scheduled_tasks = [] | ||
if is_querying_page_data(info): | ||
graphql_scheduled_tasks = [ScheduledTaskGraphql.from_pydantic(p) for p in scheduled_tasks] | ||
|
||
return to_graphql_result_page( | ||
graphql_scheduled_tasks, first, after, total, scheduled_task_filter_keys, scheduled_task_sort_keys | ||
) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import strawberry | ||
|
||
from orchestrator.schedules.scheduler import ScheduledTask | ||
|
||
|
||
@strawberry.experimental.pydantic.type(model=ScheduledTask, all_fields=True) | ||
class ScheduledTaskGraphql: | ||
pass |
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
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.
Uh oh!
There was an error while loading. Please reload this page.