Skip to content
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

Start resources on demand #118

Merged
merged 5 commits into from
Aug 9, 2023
Merged

Start resources on demand #118

merged 5 commits into from
Aug 9, 2023

Commits on Aug 8, 2023

  1. Configuration menu
    Copy the full SHA
    cbd4c9e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    79804fc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a6c0f30 View commit details
    Browse the repository at this point in the history
  4. priority_queue: we don't use the queuetask object

    Drop the unused class for now, and add some TODO items.  With those many
    use-cases we have for PriorityQueue, we should have better method naming
    and typechecking.
    praiskup committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    096b009 View commit details
    Browse the repository at this point in the history
  5. On demand resources, started via on-demand tags

    On-demand tickets need to be prioritized over the normal tickets
    (priority queue), otherwise we risk that normal tickets take "on demand"
    resources.
    
    If we want to prefer one "on demand" pool over the other "on demand"
    (e.g. spot AWS over normal instances), we need to sort them through a
    priority queue based on tag priority.  The fallback for spawn failures
    (e.g. if SPOT instances don't start) isn't resolved yet, though.
    
    Fixes: #24
    praiskup committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    1a6a729 View commit details
    Browse the repository at this point in the history