{"id":20029997,"url":"https://github.com/powerdatahub/airflow_redshift_plugin","last_synced_at":"2025-08-20T23:10:27.428Z","repository":{"id":98168921,"uuid":"196874543","full_name":"PowerDataHub/airflow_redshift_plugin","owner":"PowerDataHub","description":"Move data from Amazon Redshift to other sources like Amazon S3, Apache Druid and more","archived":false,"fork":false,"pushed_at":"2019-07-15T01:30:43.000Z","size":24,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-13T07:55:34.696Z","etag":null,"topics":["airflow","airflow-plugin","apache-airflow","apache-druid","hacktoberfest","redshift"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PowerDataHub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-14T19:20:16.000Z","updated_at":"2020-10-26T13:16:19.000Z","dependencies_parsed_at":"2023-05-02T00:02:12.469Z","dependency_job_id":null,"html_url":"https://github.com/PowerDataHub/airflow_redshift_plugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PowerDataHub/airflow_redshift_plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDataHub%2Fairflow_redshift_plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDataHub%2Fairflow_redshift_plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDataHub%2Fairflow_redshift_plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDataHub%2Fairflow_redshift_plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PowerDataHub","download_url":"https://codeload.github.com/PowerDataHub/airflow_redshift_plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDataHub%2Fairflow_redshift_plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271400259,"owners_count":24752830,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airflow","airflow-plugin","apache-airflow","apache-druid","hacktoberfest","redshift"],"created_at":"2024-11-13T09:24:04.524Z","updated_at":"2025-08-20T23:10:27.411Z","avatar_url":"https://github.com/PowerDataHub.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maintained by Powerdatahub.com](https://img.shields.io/badge/maintained%20by-powerdatahub.com-%233D4DFE.svg?style=for-the-badge)](https://powerdatahub.com/?ref=repo_aws_airflow) [![Tested with Apache Airflow 1.10.3](https://img.shields.io/badge/Tested%20with%20Apache%20Airflow-1.10.3-3D4DFE.svg?style=for-the-badge)](https://github.com/apache/airflow/)\n\n# Airflow Plugin - Redshift\n\nMove data from [Amazon Redshift](https://aws.amazon.com/pt/redshift/) to other sources like Amazon S3, Apache Druid and more\n\n## Operators\n\n### RedshiftToDruidOperator\n\nExecutes an UNLOAD command to s3 and load into Apache Druid\n\n```\n:param s3_bucket: reference to a specific S3 bucket\n:type s3_bucket: str\n:param s3_key: reference to a specific S3 key\n:type s3_key: str\n:param schema: reference to a specific schema in redshift database\n:type schema: str\n:param table: reference to a specific table in redshift database\n:type table: str\n:param sql: Custom SQL statement to execute\n:type sql: str\n:param druid_ingest_spec: druid ingestion json spec\n:type druid_ingest_spec: json\n:param unload_options: reference to a list of UNLOAD options\n:type unload_options: list\n:param include_header: Should include headers in the final file?\n:type include_header: bool\n:param autocommit: if True perform autocommit\n:type autocommit: bool\n:param aws_conn_id: reference to a specific S3 connection\n:type aws_conn_id: str\n:param redshift_conn_id: reference to a specific redshift database\n:type redshift_conn_id: str\n:param druid_conn_id: reference to a specific Druid overlord connection\n:type druid_conn_id: str\n```\n### RedshiftToS3CustomOperador\n\nExecutes an UNLOAD command to s3 as a CSV with headers\n\n```\n:param schema: reference to a specific schema in redshift database\n:type schema: str\n:param table: reference to a specific table in redshift database\n:type table: str\n:param s3_bucket: reference to a specific S3 bucket\n:type s3_bucket: str\n:param s3_key: reference to a specific S3 key\n:type s3_key: str\n:param sql: Custom SQL statement to execute\n:type sql: str\n:param redshift_conn_id: reference to a specific redshift database\n:type redshift_conn_id: str\n:param aws_conn_id: reference to a specific S3 connection\n:type aws_conn_id: str\n:param verify: Whether or not to verify SSL certificates for S3 connection.\n    By default SSL certificates are verified.\n    You can provide the following values:\n\n    - ``False``: do not validate SSL certificates. SSL will still be used\n             (unless use_ssl is False), but SSL certificates will not be\n             verified.\n    - ``path/to/cert/bundle.pem``: A filename of the CA cert bundle to uses.\n             You can specify this argument if you want to use a different\n             CA cert bundle than the one used by botocore.\n:type verify: bool or str\n:param unload_options: reference to a list of UNLOAD options\n:type unload_options: list\n```\n\n### S3ToRedshiftOperator\n\nExecutes an COPY command to load a S3 file into Redshift\n\n---\n[![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com) [![forthebadge](https://forthebadge.com/images/badges/contains-cat-gifs.svg)](https://forthebadge.com) [![forthebadge](https://forthebadge.com/images/badges/60-percent-of-the-time-works-every-time.svg)](https://forthebadge.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerdatahub%2Fairflow_redshift_plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpowerdatahub%2Fairflow_redshift_plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerdatahub%2Fairflow_redshift_plugin/lists"}