Getting Started
Quickstart:
Run
pip install Burla
Run
burla install
Run
burla login
to open your new cluster dashboard.Hit the ⏻ Start button to turn the cluster on.
Run the code below!
from burla import remote_parallel_map
def my_function(my_input):
print("I'm running on remote computer in the cloud!")
remote_parallel_map(my_function, [1, 2, 3])
Installation (self-hosted)
1. Ensure gcloud
is setup and installed:
gcloud
is setup and installed:If you haven't, install the gcloud CLI, and login using application-default credentials.
Ensure gcloud
is pointing at the project you wish to install Burla inside:
To view your current gcloud project run:
gcloud config get project
To change your current gcloud project run:
gcloud config set project <NEW-PROJECT-ID>
2. Run the burla install
command:
burla install
command:Run pip install burla
then run burla install
.
3. Start a machine and run the quickstart!
Open your new cluster dashboard!
Run the command:
burla login
This command will open your dashboard in the default browser. Please login using the same account you used to authenticategcloud
, this restriction ensures only you the installer can access your new dashboard.
Hit the ⏻ Start button in the dashboard to turn the cluster on. By default this starts one 4-CPU node. If inactive for >5 minutes this node will shut itself off.
Run the example!
from burla import remote_parallel_map
def my_function(my_input):
print("I'm running on remote computer in the cloud!")
remote_parallel_map(my_function, [1, 2, 3])
Installation (fully-managed)
How to use Burla without a Google Cloud account.
Instructions:
E-Mail [email protected] or schedule a meeting here: cal.com/jakez
I'll reply as quickly as possible with further instructions!
FAQ:
Security:
Managed Burla deployments are created in separate projects each in a separate VPC. By default Burla deployments allow access only to those in the authorized-user list in your settings tab, which means we can't actually observe your instance without explicitly manually modifying your database.
How do I pay?
We piggyback off of existing Google Cloud billing infrastructure to track costs coming from your instance (Google Cloud project) and simply foreward you the bill through Stripe Billing.
How much does it cost?
We charge a simple 2x multiple whatever charges originate from your instance according to Google Cloud billing, this equates to about $0.08 per cpu-hour.
Questions? Schedule a call with us, or email [email protected]. We're always happy to talk.
Last updated