A package to upload Pandas DataFrame to Redshift
Project description
df_to_rs
df_to_rs is a Python package that provides efficient methods to upload, upsert and manage Pandas DataFrames in Amazon Redshift using S3 as an intermediary.
Key Features
- Direct DataFrame to Redshift upload
- Upsert functionality (update + insert)
- Delete and insert operations
- Large dataset handling with chunking
- Support for JSON/dict/list columns (Redshift SUPER)
- AWS IAM Role support for secure authentication
- Automatic cleanup of temporary S3 files
Installation
pip install df_to_rs
Usage
1. Initialize with AWS Credentials
from df_to_rs import df_to_rs
import psycopg2
# Connect to Redshift
redshift_conn = psycopg2.connect(
dbname='your_db',
host='your-cluster.region.redshift.amazonaws.com',
port=1433,
user='your_user',
password='your_password'
)
redshift_conn.set_session(autocommit=True)
# Initialize with explicit credentials
uploader = df_to_rs(
region_name='ap-south-1',
s3_bucket='your-s3-bucket',
aws_access_key_id='your-access-key-id',
aws_secret_access_key='your-secret-access-key',
redshift_c=redshift_conn
)
2. Initialize using EC2 Instance Role (Recommended)
# No AWS credentials needed when using instance role
uploader = df_to_rs(
region_name='ap-south-1',
s3_bucket='your-s3-bucket',
redshift_c=redshift_conn
)
3. Basic Upload
Upload a DataFrame to a Redshift table:
# Simple upload
uploader.upload_to_redshift(
df=your_dataframe,
dest='schema.table_name'
)
4. Upsert Operation
Update existing records and insert new ones based on key columns:
# Upsert based on specific columns
uploader.upsert_to_redshift(
df=your_dataframe,
dest_table='schema.table_name',
upsert_columns=['id', 'unique_key'], # Columns to match existing records
clear_dest_table=False # Set True to truncate table before insert
)
5. Delete and Insert
Delete records matching a condition and insert new data:
# Delete and insert with condition
uploader.delete_and_insert_to_redshift(
df=your_dataframe,
dest_table='schema.table_name',
filter_cond="date >= CURRENT_DATE - 7" # SQL condition for deletion
)
Special Data Types
JSON/Dictionary Columns
The package automatically handles JSON/dict/list columns for Redshift SUPER type:
# DataFrame with JSON column
df = pd.DataFrame({
'id': [1, 2],
'json_data': [{'key': 'value'}, {'other': 'data'}]
})
# Will be automatically converted for Redshift SUPER column
uploader.upload_to_redshift(df, 'schema.table_name')
Large Dataset Handling
The package automatically handles large datasets by:
- Chunking data into 1 million row segments
- Streaming to S3 in memory
- Automatic cleanup of temporary files
- Progress tracking with timestamps
Error Handling
- Automatic transaction rollback on errors
- S3 temporary file cleanup
- Detailed error messages and timestamps
- Safe staging table management for upserts
AWS IAM Role Requirements
When using instance roles, ensure your role has these permissions:
- S3: PutObject, GetObject, DeleteObject on the specified bucket
- Redshift: COPY command permissions
- IAM: AssumeRole permissions if needed
Best Practices
- Use instance roles instead of access keys when possible
- Set appropriate column types in Redshift, especially for SUPER columns
- Create tables with appropriate sort and dist keys before uploading
- Monitor the Redshift query logs for performance optimization
License
This project is licensed under the MIT License - see the LICENSE file for details.
Changelog
All notable changes to df_to_rs will be documented in this file.
[0.1.22] - 2024-01-26
Added
- Documentation Improved
[0.1.21] - 2024-01-26
Added
- Support for instance role-based authentication in AWS
- Handling of JSON/dict/list objects for Redshift SUPER columns
- Proper cleanup of S3 temporary files
Changed
- Made AWS credentials optional in constructor
- Optimized DataFrame processing with unified applymap operations
- Improved string column handling for better type safety
Fixed
- S3 resource cleanup in error scenarios
- Transaction handling in delete_and_insert_to_redshift
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
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 df_to_rs-0.1.23.tar.gz.
File metadata
- Download URL: df_to_rs-0.1.23.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf4c5c391cfad34e0757ef22989c50893352aa8a4df5fb432a6ac93584d6bee1
|
|
| MD5 |
567891379db1b3182e9afe7f94fbebb5
|
|
| BLAKE2b-256 |
2a92b95215a87afb1d1941523fabdf356c421fe7f89e8547adc28abb203e707f
|
File details
Details for the file df_to_rs-0.1.23-py3-none-any.whl.
File metadata
- Download URL: df_to_rs-0.1.23-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ddda77831f840d7b3728e2ecd21f616ea0ebe161665bc9eeb408e6314f9550e
|
|
| MD5 |
24088742f630491ecd918062decfc133
|
|
| BLAKE2b-256 |
1ff23732525471bb22f3f6bca09bc3fe7549f841954b9998732ba8e61a96884a
|