A unified cloud db package for AWS, Azure, and GCP for Queue Service
Project description
Cloud DB Connector
This package provides a flexible and secure way to establish connections to various database types, including AWS RDS, Azure SQL, Google Cloud MySQL, and local databases. It includes factory functions and connection classes, as well as helper functions to execute queries and handle database interactions with retry logic.
Package Structure
- db_manager.py # Factory function to create DB connection based on the service type
- db_connection.py # Interface to get DB connection
- aws_db.py # AWS RDS MySQL connection class
- azure_db.py # Azure SQL Database connection class
- gcp_db.py # Google Cloud MySQL connection class
- local_db.py # Local MySQL database connection class
- rds_execute.py # Utility to execute SQL queries on the databases
Installation
Ensure all necessary dependencies are installed:
pip install clouddatabridge
Additional Requirements for Azure SQL Database
To connect to an Azure SQL Database, an ODBC driver is required. Install the appropriate driver for your operating system:
- macOS: Microsoft ODBC Driver for SQL Server on macOS
- Linux: Microsoft ODBC Driver for SQL Server on Linux
- Windows: Microsoft ODBC Driver for SQL Server on Windows
Follow the official installation instructions on the linked pages for your OS.
Usage
Setting Up a Database Connection
The db_manager.py file contains a factory function, create_db_connection, to create a connection based on the chosen service (local, aws, azure, gcp). You can also use the get_db_connection function in db_connection.py for easier configuration management.
from clouddatabridge.rds_execute import rds_execute
query = "SELECT * FROM person"
local_result = rds_execute(
service="gcp",
query=query,
is_proxy=False,
host="your-azure-sql-hostname",
user="your-username",
password="your-password",
database="your-database",
port=3306
)
print(local_result)
Components Overview
db_manager.py
This module provides a factory function create_db_connection that creates the appropriate database connection object based on the specified service parameter.
- Supported Services:
local,aws,azure,gcp - Parameters:
is_proxy,host,user,password,database,port,region(for AWS)
db_connection.py
Contains the get_db_connection function, which uses create_db_connection to return the correct connection object and handles errors gracefully.
Database-Specific Connection Classes
Each database type has its own connection class with retry logic and automatic connection handling.
-
AWSRDSConnection(aws_db.py)Manages a connection to an AWS RDS MySQL database and generates an authentication token for secure access.
-
AzureSQLConnection(azure_db.py)Handles connections to Azure SQL Database, supporting automatic retries. Ensure you install the ODBC driver to connect successfully.
-
GCPMySQLConnection(gcp_db.py)Supports MySQL connections on Google Cloud with similar retry and connection management logic.
-
LocalDBConnection(local_db.py)Provides connections to a local MySQL database.
rds_execute.py
Provides a high-level rds_execute function that executes queries across supported databases. It detects the SQL operation type and handles transactions for INSERT, UPDATE, and DELETE operations, committing changes automatically.
- Operations Supported:
SELECT,INSERT,UPDATE,DELETE - Parameters:
service: Type of database service (local,aws,azure,gcp)query: SQL query to executeparams: Parameters for parameterized query (tuple or list of tuples for batch execution)
Error Handling
- Connection Errors: Retries connection attempts with configurable retry delays for increased robustness.
- Operational Errors: Prints specific messages on failure and re-raises the error if maximum retries are exceeded.
License
This package is licensed under the MIT License.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file queue_service-0.1.6.tar.gz.
File metadata
- Download URL: queue_service-0.1.6.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d63d1f6b5465438a2d5000a91d37bedfdb041c262ef61d59537b8d6076ff4bf
|
|
| MD5 |
7af772ab85788c01dd3a54bc63263225
|
|
| BLAKE2b-256 |
9939e0bba0e0ca8603e4d00c3f195ed2f04ef8d479db144cf263b3e1b96b5d1b
|
File details
Details for the file queue_service-0.1.6-py3-none-any.whl.
File metadata
- Download URL: queue_service-0.1.6-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5058e268594eac777d34955f648f58946a3212fb56637ab20d58fe48d578b1b
|
|
| MD5 |
6441279f0a0fa0715d1e7136cc1cf415
|
|
| BLAKE2b-256 |
8d1d8b8a8f0155c2ce50b2a57053bf7c7f0a2133a250fff44dab7b1404345ee0
|