Skip to main content

Python client for Rabbit BigQuery Job Optimizer API

Project description

Rabbit BigQuery Job Optimizer Python Client

This is the official Python client library for the Rabbit BigQuery Job Optimizer API.

Installation

pip install rabbit-bq-job-optimizer

Usage

from rabbit_bq_job_optimizer import RabbitBQJobOptimizer, OptimizationConfig

# Initialize the client
client = RabbitBQJobOptimizer(
    api_key="your-api-key",
    base_url="your-base-url"  
)

# Optimize a BigQuery job configuration
job_config = {
    "configuration": {
        "query": {
            "query": "SELECT * FROM my_table",
            "useLegacySql": False,
            "priority": "INTERACTIVE"
        }
    }
}

optimization_config = OptimizationConfig(
    type="reservation_assignment",
    config={
        "defaultPricingMode": "on_demand",
        "reservationIds": [
            "my-project:US.my-reservation-us",
            "my-project:EU.my-reservation-eu"
        ]
    }
)

# Optimize the job
result = client.optimize_job(
    configuration=job_config,
    enabledOptimizations=[optimization_config]
)

# Access the optimized configuration
optimized_config = result.optimizedJob

# Access optimization results
for optimization in result.optimizationResults:
    print(f"Type: {optimization.type}")
    print(f"Applied: {optimization.performed}")
    print(f"Estimated Savings: {optimization.estimatedSavings}")

Error Handling

The client raises exceptions for API errors:

from rabbit_bq_job_optimizer import RabbitBQJobOptimizerError

try:
    result = client.optimize_job(job_config)
except RabbitBQJobOptimizerError as e:
    print(f"Error: {e.message}")
    print(f"Status Code: {e.status_code}")

Authentication

The API key and base URL are required to use the client. These can be obtained from the Rabbit team by contacting success@followrabbit.ai.

There are two ways to configure authentication:

  1. Pass directly to the constructor:
from rabbit_bq_job_optimizer import RabbitBQJobOptimizer

client = RabbitBQJobOptimizer(
    api_key="your-api-key",
    base_url="your-base-url"
)
  1. Set environment variables:
export RABBIT_API_KEY="your-api-key"
export RABBIT_API_BASE_URL="your-base-url"

Then initialize the client without parameters:

from rabbit_bq_job_optimizer import RabbitBQJobOptimizer

client = RabbitBQJobOptimizer()  # Will automatically use environment variables

The environment variables are:

  • RABBIT_API_KEY: Your Rabbit API key
  • RABBIT_API_BASE_URL: The base URL for the Rabbit API

Development

To install the package in development mode:

pip install -e .

License

Apache License 2.0

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

rabbit_bq_job_optimizer-0.1.11.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rabbit_bq_job_optimizer-0.1.11-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file rabbit_bq_job_optimizer-0.1.11.tar.gz.

File metadata

File hashes

Hashes for rabbit_bq_job_optimizer-0.1.11.tar.gz
Algorithm Hash digest
SHA256 658319068d4da288940b0892f70636a7d968216978bc97dab84b754f6123f0d3
MD5 6ad0127516411db32e79acfde8bd410f
BLAKE2b-256 506258f139ba7464a862e30946c8ee43a640ce8caea7252e28c8d1b2739a788a

See more details on using hashes here.

File details

Details for the file rabbit_bq_job_optimizer-0.1.11-py3-none-any.whl.

File metadata

File hashes

Hashes for rabbit_bq_job_optimizer-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 e49672f47956e487d0173de0c32dd08f4e721bcbe857ecb0b2b1baab53078c55
MD5 128fa729eda8af485a0aa9d6fd0b7d84
BLAKE2b-256 f2081011b46e4b64cedd06a3037941cd6adf17a5a0d2f448b85c68c90b183380

See more details on using hashes here.

Supported by

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