SkyPilot: An intercloud broker for the clouds
Project description
SkyPilot is a framework for easily running machine learning[1] workloads on any cloud through a unified interface. No knowledge of cloud offerings is required or expected – you simply define the workload and its resource requirements, and SkyPilot will automatically execute it on AWS, Google Cloud Platform or Microsoft Azure.
Key features
- Run existing projects on the cloud with zero code changes
- No cloud lock-in – seamlessly run your code across different cloud providers (AWS, Azure or GCP)
- Minimize costs by leveraging spot instances and automatically stopping idle clusters
- Automatic recovery from spot instance failures
- Automatic fail-over to find resources across regions and clouds
- Store datasets on the cloud and access them like you would on a local file system
- Easily manage job queues across multiple clusters
Getting Started
You can find our documentation here.
Example SkyPilot Task
Tasks in SkyPilot are specified as a YAML file containing the resource requirements, data to be synced, setup commands and the task commands. Here is an example.
# my-task.yaml
resources:
# 1x NVIDIA V100 GPU
accelerators: V100:1
# Number of VMs to launch in the cluster
num_nodes: 1
# Working directory (optional) containing the project codebase.
# Its contents are synced to ~/sky_workdir/ on the cluster.
workdir: .
# Commands to be run before executing the job
# Typical use: pip install -r requirements.txt, git clone, etc.
setup: |
echo "Running setup."
# Commands to run as a job
# Typical use: make use of resources, such as running training.
run: |
echo "Hello, SkyPilot!"
conda env list
This task can be launched on the cloud with the sky launch
command.
$ sky launch my-task.yaml
SkyPilot will perform multiple functions for you:
- Find the lowest priced VM instance type across different clouds
- Provision the VM
- Copy the local contents of
workdir
to the VM - Run the task's
setup
commands to prepare the VM for running the task - Run the task's
run
commands
Please refer to Quickstart for more on how to use SkyPilot.
Issues, feature requests and questions
We are excited to hear your feedback! SkyPilot has two channels for engaging with the community - GitHub Issues and GitHub Discussions.
- For bug reports and issues, please open an issue.
- For feature requests or general questions, please join us on GitHub Discussions.
Contributing
We welcome and value all contributions to the project! Please refer to the contribution guide for more on how to get involved.
[1]: SkyPilot is primarily targeted at machine learning workloads, but it can also support many general workloads. We're excited to hear about your use case and would love to hear more about how we can better support your requirements - please join us in this discussion!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file skypilot-0.1.1.tar.gz
.
File metadata
- Download URL: skypilot-0.1.1.tar.gz
- Upload date:
- Size: 278.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ccab1e6e7b89eb344c426b1c6b4032631041e0ee51c2c66237d7d33beb37354 |
|
MD5 | b2ba93d1a5e69a1eecf92bd35a7bb804 |
|
BLAKE2b-256 | a30d9c2b0d7d4589d1ac15cb553189e71f3d1308d123300bd1df93508be88496 |
File details
Details for the file skypilot-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: skypilot-0.1.1-py3-none-any.whl
- Upload date:
- Size: 324.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eba91e829cc870251d7b5ebaccb3094c7ef20f9fca4a226a8907771393715961 |
|
MD5 | bfc4a03dd42ad05c80fa09baebee0d5c |
|
BLAKE2b-256 | d55317b976ad9de787496014ec29fefd72873f8955128279e6d17730c52bb921 |