{"id":23238257,"url":"https://github.com/zkan/running-bigquery-query-from-airflow-using-bigqueryexecuteoperator","last_synced_at":"2026-05-10T16:44:17.713Z","repository":{"id":144820756,"uuid":"391078444","full_name":"zkan/running-bigquery-query-from-airflow-using-bigqueryexecuteoperator","owner":"zkan","description":"Running BigQuery Query from Airflow using BigQueryExecuteOperator","archived":false,"fork":false,"pushed_at":"2021-07-30T15:09:11.000Z","size":17,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-12T01:40:21.303Z","etag":null,"topics":["airflow","bigquery","sql"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zkan.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":"2021-07-30T13:42:19.000Z","updated_at":"2021-08-25T15:48:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"80561d9c-e96e-47b3-a787-8ecc5888e2a1","html_url":"https://github.com/zkan/running-bigquery-query-from-airflow-using-bigqueryexecuteoperator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkan%2Frunning-bigquery-query-from-airflow-using-bigqueryexecuteoperator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkan%2Frunning-bigquery-query-from-airflow-using-bigqueryexecuteoperator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkan%2Frunning-bigquery-query-from-airflow-using-bigqueryexecuteoperator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkan%2Frunning-bigquery-query-from-airflow-using-bigqueryexecuteoperator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zkan","download_url":"https://codeload.github.com/zkan/running-bigquery-query-from-airflow-using-bigqueryexecuteoperator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247403720,"owners_count":20933505,"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","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","bigquery","sql"],"created_at":"2024-12-19T04:17:18.976Z","updated_at":"2026-05-10T16:44:17.662Z","avatar_url":"https://github.com/zkan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Running BigQuery Query from Airflow using BigQueryExecuteOperator\n\n```py\nfrom airflow.providers.google.cloud.operators.bigquery import BigQueryExecuteQueryOperator\n\n\nfind_top_five_coffee_brands = BigQueryExecuteQueryOperator(\n    task_id=\"find_top_five_coffee_brands\",\n    sql=\"\"\"\n    SELECT\n      Brand,\n      COUNT(Brand) AS BrandCount\n    FROM\n      `dataength.personal.me_and_coffee`\n    GROUP BY\n      Brand\n    ORDER BY\n      BrandCount DESC\n    LIMIT 5\n    \"\"\",\n    destination_dataset_table=f\"dataength.personal.top_five_coffee_brands\",\n    write_disposition=\"WRITE_TRUNCATE\",\n    gcp_conn_id=\"my_bigquery_connection\",\n    use_legacy_sql=False,\n)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzkan%2Frunning-bigquery-query-from-airflow-using-bigqueryexecuteoperator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzkan%2Frunning-bigquery-query-from-airflow-using-bigqueryexecuteoperator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzkan%2Frunning-bigquery-query-from-airflow-using-bigqueryexecuteoperator/lists"}