-
Notifications
You must be signed in to change notification settings - Fork 529
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into support-fractional-a10
- Loading branch information
Showing
38 changed files
with
832 additions
and
107 deletions.
There are no files selected for viewing
This file contains 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 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 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 @@ | ||
Developer Guides | ||
================= | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
../developers/CONTRIBUTING | ||
Guide: Adding a New Cloud <https://docs.google.com/document/d/1oWox3qb3Kz3wXXSGg9ZJWwijoa99a3PIQUHBR8UgEGs/edit?usp=sharing> |
This file contains 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 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 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 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 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 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 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 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 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,208 @@ | ||
|
||
.. _reservation: | ||
|
||
Reserved, Capacity Blocks, DWS | ||
=================================== | ||
|
||
|
||
With the recent GPU shortage, reservations from cloud providers have become a common way to ensure GPU availability for a specific duration. These reservations can be short-term (e.g., 1-30 days) capacity guarantees, or long-term (e.g., 1-3 years) contracts. | ||
|
||
This guide shows how to use SkyPilot to request resources from reservations and even combine them with on-demand/spot resources to fully | ||
utilize the capacity in your cloud accounts. | ||
|
||
.. image:: https://i.imgur.com/FA0BT0E.png | ||
:width: 95% | ||
:align: center | ||
|
||
|
||
AWS Capacity Reservations & Capacity Blocks | ||
-------------------------------------------- | ||
|
||
AWS **capacity reservations** and **capacity blocks** are ways to reserve a certain amount of compute capacity for a period of time. The latter is for high-end GPUs, such as A100s (P4d instances) and H100s (P5d instances), while the former is for all other instance types. | ||
Instead of committing to a 1-3 year long contract, you can get a capacity reservation or capacity block for as short as 1 second or 1 day, respectively. | ||
|
||
|
||
To request capacity reservations/blocks, see the official docs: | ||
|
||
* `AWS Capacity Reservations <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-capacity-reservations.html>`_ | ||
* `AWS Capacity Blocks <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-capacity-blocks.html>`_ | ||
|
||
Once you have successfully created a reservation/block, you will get an ID of the reservation/block, such as ``cr-012345678``. | ||
|
||
To use the reservation/block, you can specify two fields in ``~/.sky/config.yaml``: | ||
|
||
* ``aws.prioritize_reservations``: whether to prioritize launching clusters from capacity reservations in any region/zone over on-demand/spot clusters. This is useful to fully utilize your reserved capacity created with ``Instance eligibility: open``. | ||
* ``aws.specific_reservations``: a list of reservation IDs that can be used by SkyPilot. This is useful if you have multiple capacity reservations or blocks with ``Instance eligibility: targeted`` for different instance types in multiple regions/zones. | ||
|
||
|
||
Example: | ||
|
||
.. code-block:: yaml | ||
aws: | ||
prioritize_reservations: true | ||
specific_reservations: | ||
# 1x H100 capacity block in us-east-1 | ||
- "cr-0123456789" | ||
# 2x A100 reservation in us-east-2 | ||
- "cr-123456789a" | ||
# 2x A100 reservation in us-west-2 | ||
- "cr-23456789ab" | ||
# 2x M5a.16xlarge reservation in us-east-1 | ||
- "cr-3456789abc" | ||
For more details of the fields, see :ref:`config-yaml`. | ||
|
||
.. note:: | ||
|
||
If any of the fields are specified, SkyPilot optimizer may take around 30 seconds to retrieve the latest reservation/block status on all regions and zones from your AWS account. | ||
|
||
|
||
.. _utilizing-reservations: | ||
|
||
Utilizing Reservations | ||
~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
By specifying configurations above, SkyPilot will prioritize using any available capacity in reservation/block (i.e., consider them as zero cost) whenever you launch a cluster/job. | ||
|
||
Specifically, SkyPilot's behavior is as follows: | ||
|
||
1. Query reservations/blocks across AWS regions and zones to find all available capacity. (If the task specifies specific regions or zones to use, only those are queried.) | ||
2. For each zone, calculate its cost: any available reserved capacity is considered as zero cost, and if any on-demand/spot resource is needed to supplement the available reserved capacity to fully satisfy the request, their on-demand/spot price is included. | ||
3. :ref:`Automatically failover <auto-failover>` through these zones in increasing per-zone cost order until the requested resources are provisioned. | ||
|
||
|
||
For example, if you are launching a cluster with the following SkyPilot YAML: | ||
|
||
.. code-block:: yaml | ||
resources: | ||
cloud: aws | ||
accelerators: A100:8 | ||
num_nodes: 2 | ||
SkyPilot will utilize the capacity reservation/block as follows: | ||
|
||
1. Query reservations/blocks in ``us-east-2`` and ``us-west-2`` in reservation ``cr-123456789a`` and ``cr-23456789ab``, respectively. Assume the results are: | ||
|
||
- 1 A100 instance capacity is available in ``us-east-2``, | ||
- No available capacity in ``us-west-2``. | ||
2. SkyPilot calculates the pricing for all zones as described above. The result is ``us-east-2`` zones are cheaper than all other zones, because the former's costs are 1 on-demand node's cost for 2 nodes (by satisfying 1 node using the reserved capacity). | ||
3. SkyPilot will thus try to provision an on-demand A100 instance in ``us-east-2``. On unavailability, SkyPilot will continue to :ref:`automatically failover <auto-failover>` to other clouds/regions/zones for normal on-demand/spot instances. | ||
|
||
|
||
.. hint:: | ||
|
||
If you have a capacity block with a starting time in the future, you can run ``sky jobs launch --region us-east-1 --gpus H100:8 task.yaml`` to let SkyPilot automatically wait until the starting time is reached. Namely, you don't have to wake up at 4:30am PDT to launch your job on a newly available capacity block. | ||
|
||
|
||
GCP reservations | ||
----------------- | ||
|
||
GCP reservations are similar to AWS capacity reservations, where you can reserve a certain amount of compute capacity for any period of time. | ||
|
||
To get a reservation, see the `GCP official docs <https://cloud.google.com/compute/docs/instances/reservations-single-project>`__. | ||
|
||
Like AWS, you can specify two fields in ``~/.sky/config.yaml``: | ||
|
||
* ``gcp.prioritize_reservations``: whether to prioritize launching clusters from reservations in any region/zone over on-demand/spot clusters. This is useful to fully utilize your `automatically consumed reservations <https://cloud.google.com/compute/docs/instances/reservations-consume#consuming_instances_from_any_matching_reservation>`__. | ||
* ``gcp.specific_reservations``: a list of reservation IDs that can be used by SkyPilot. This is useful if you have multiple `specific reservations <https://cloud.google.com/compute/docs/instances/reservations-consume#consuming_instances_from_a_specific_reservation>`__ for different instance types in multiple regions/zones. | ||
|
||
Example: | ||
|
||
.. code-block:: yaml | ||
gcp: | ||
prioritize_reservations: true | ||
specific_reservations: | ||
- projects/my-project/reservations/my-reservation1 | ||
- projects/my-project/reservations/my-reservation2 | ||
SkyPilot will utilize the reservations similar to AWS reservations as described in :ref:`utilizing-reservations`. | ||
|
||
|
||
GCP Dynamic Workload Scheduler (DWS) | ||
------------------------------------- | ||
|
||
GCP `Dynamic Workload Scheduler (DWS) <https://cloud.google.com/blog/products/compute/introducing-dynamic-workload-scheduler>`__ is a resource management service that (1) receives a GPU capacity request, (2) automatically provisions the requested resources when they become available, and (3) keeps the resources running for a specified duration. | ||
|
||
.. tip:: | ||
|
||
It has been observed that using DWS can significantly increase the chance of getting a high-end GPU resource, such as A100s and H100s, compared to using on-demand or spot instances. | ||
|
||
|
||
Using DWS for VMs | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
SkyPilot allows you to launch resources via DWS by specifying the ``gcp.managed_instance_group`` field in ``~/.sky/config.yaml``: | ||
|
||
.. code-block:: yaml | ||
gcp: | ||
managed_instance_group: | ||
run_duration: 3600 | ||
provision_timeout: 900 | ||
1. ``run_duration``: duration for a created instance to be kept alive (in seconds, required). | ||
2. ``provision_timeout``: timeout for provisioning an instance with DWS (in seconds, optional). If the timeout is reached without requested resources being provisioned, SkyPilot will automatically :ref:`failover <auto-failover>` to other clouds/regions/zones to get the resources. | ||
|
||
See :ref:`config-yaml` for more details. | ||
|
||
In case you want to specify the DWS configuration for each job/cluster, you can also specify the configuration in the SkyPilot task YAML (see :ref:`here <task-yaml-experimental>`): | ||
|
||
.. code-block:: yaml | ||
experimental: | ||
config_overrides: | ||
gcp: | ||
managed_instance_group: | ||
run_duration: 3600 | ||
provision_timeout: 900 | ||
resources: | ||
cloud: gcp | ||
accelerators: A100:8 | ||
num_nodes: 4 | ||
Using DWS on GKE with Kueue | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
DWS is also supported on Google Kubernetes Engine (GKE) with Kueue. To enable DWS on GKE, you need to set up your GKE cluster with Kueue and DWS; see the `GCP official docs <https://cloud.google.com/kubernetes-engine/docs/how-to/provisioningrequest>`__. | ||
|
||
To launch a SkyPilot cluster or job on GKE with DWS, you can specify the DWS configuration in the SkyPilot task YAML: | ||
|
||
.. code-block:: yaml | ||
experimental: | ||
config_overrides: | ||
kubernetes: | ||
pod_config: | ||
metadata: | ||
annotations: | ||
provreq.kueue.x-k8s.io/maxRunDurationSeconds: "3600" | ||
provision_timeout: 900 | ||
resourcse: | ||
cloud: kubernetes | ||
accelerators: A100:8 | ||
labels: | ||
kueue.x-k8s.io/queue-name: dws-local-queue | ||
1. ``kueue.x-k8s.io/queue-name``: name of the Kueue queue to submit your resource request to. | ||
2. ``provreq.kueue.x-k8s.io/maxRunDurationSeconds``: maximum duration for a created instance to be kept alive (in seconds, required). | ||
3. ``provision_timeout``: timeout for provisioning an instance with DWS (in seconds, optional). If the timeout is reached without getting the requested resources, SkyPilot will automatically :ref:`failover <auto-failover>` to other clouds/regions/zones to get the resources. | ||
|
||
Long-term reservations | ||
---------------------- | ||
|
||
Unlike short-term reservations above, long-term reservations are typically more than one month long and can be viewed as a type of *on-prem cluster*. | ||
|
||
SkyPilot supports long-term reservations and on-premise clusters through Kubernetes, i.e., you can set up a Kubernetes cluster on top of your reserved resources and interact with them through SkyPilot. | ||
|
||
See the simple steps to set up a Kubernetes cluster on existing machines in :ref:`kubernetes-overview`. | ||
|
Oops, something went wrong.