Skip to main content

Python client library for Staroid cloud platform

Project description



Open data studio python library

Install

pip install ods

Usage

Initialization

import ods

# in cluster initialization. (or from ~/.ods/config)
ods.init()

# initialization with staroid access token
ods.init(staroid_access_token="", staroid_org_name="", staroid_cluster_name="", )

Get Spark cluster

from pyspark.sql import SparkSession
import pyspark

spark_conf = pyspark.SparkConf()
spark = ods.spark(
    cluster_name="",
    worker_instance_type="standard-4",
    worker_num="2:2:10", # initial:min:max
    spark_conf=spark_conf # optional spark conf
)

Get Dask cluster (planned)

cluster = ods.dask(
    cluster_name="",
    worker_num=10
)

from dask.distributed import Client
client = Client(cluster)

Get Ray cluster (planned)

ods.ray(
    cluster_name=""
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ods-0.0.1.tar.gz (6.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page