Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Resolve production issue for Iowa Liquor Sales dataset #520

Merged
merged 3 commits into from Oct 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,5 +1,5 @@
/**
* Copyright 2021 Google LLC
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion datasets/iowa_liquor_sales/infra/provider.tf
@@ -1,5 +1,5 @@
/**
* Copyright 2021 Google LLC
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
13 changes: 4 additions & 9 deletions datasets/iowa_liquor_sales/infra/sales_pipeline.tf
@@ -1,5 +1,5 @@
/**
* Copyright 2021 Google LLC
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,15 +16,10 @@


resource "google_bigquery_table" "iowa_liquor_sales_sales" {
project = var.project_id
dataset_id = "iowa_liquor_sales"
table_id = "sales"

project = var.project_id
dataset_id = "iowa_liquor_sales"
table_id = "sales"
description = "Sales Dataset"




depends_on = [
google_bigquery_dataset.iowa_liquor_sales
]
Expand Down
5 changes: 4 additions & 1 deletion datasets/iowa_liquor_sales/infra/variables.tf
@@ -1,5 +1,5 @@
/**
* Copyright 2021 Google LLC
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -20,4 +20,7 @@ variable "bucket_name_prefix" {}
variable "impersonating_acct" {}
variable "region" {}
variable "env" {}
variable "iam_policies" {
default = {}
}

Expand Up @@ -12,142 +12,106 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import json
import logging
import os
import pathlib
import subprocess
import typing
from datetime import datetime

import pandas as pd
import requests
from google.cloud import storage


def main(
source_url: str,
source_file: pathlib.Path,
target_file: pathlib.Path,
download_location: str,
target_file: str,
chunksize: str,
target_gcs_bucket: str,
source_gcs_path: str,
target_gcs_path: str,
headers: typing.List[str],
rename_mappings: dict,
) -> None:
logging.info(" Sales pipeline process started")
logging.info("Creating 'files' folder")
pathlib.Path("./files").mkdir(parents=True, exist_ok=True)

logging.info(f"Downloading file {source_url}")
download_file(source_url, source_file)

chunksz = int(chunksize)
logging.info(f"Reading csv file {source_url}")
with pd.read_csv(
source_file,
engine="python",
encoding="utf-8",
quotechar='"',
chunksize=chunksz,
) as reader:
for chunk_number, chunk in enumerate(reader):
logging.info(f"Processing batch {chunk_number}")
target_file_batch = str(target_file).replace(
".csv", "-" + str(chunk_number) + ".csv"
)
df = pd.DataFrame()
df = pd.concat([df, chunk])
processChunk(df, target_file_batch)

logging.info(f"Appending batch {chunk_number} to {target_file}")
if chunk_number == 0:
subprocess.run(["cp", target_file_batch, target_file])
else:
subprocess.check_call(f"sed -i '1d' {target_file_batch}", shell=True)
subprocess.check_call(
f"cat {target_file_batch} >> {target_file}", shell=True
)
subprocess.run(["rm", target_file_batch])

logging.info(
f"Uploading output file to.. gs://{target_gcs_bucket}/{target_gcs_path}"
source_files = list_files(
source_bucket=target_gcs_bucket, source_gcs_path=source_gcs_path
)
upload_file_to_gcs(target_file, target_gcs_bucket, target_gcs_path)


def processChunk(df: pd.DataFrame, target_file_batch: str) -> None:

logging.info("Renaming Headers")
rename_headers(df)

file_number = 0
for source_file in source_files:
download_file(
source_url + source_file, download_location + source_file, target_gcs_bucket
)
chunksz = int(chunksize)
temp_store = target_file
target_file = target_file + "_" + str(file_number) + ".csv"
logging.info("Reading csv file")
csvfile = download_location + source_file
with pd.read_csv(
csvfile,
engine="python",
encoding="utf-8",
quotechar='"',
chunksize=chunksz,
) as reader:
for chunk_number, chunk in enumerate(reader):
logging.info(f"Processing batch {chunk_number}")
target_file_batch = str(target_file).replace(
".csv", "-" + str(chunk_number) + ".csv"
)
df = pd.DataFrame()
df = pd.concat([df, chunk])
processChunk(df, target_file_batch, headers, rename_mappings)
logging.info(f"Appending batch {chunk_number} to {target_file}")
if chunk_number == 0:
subprocess.run(["cp", target_file_batch, target_file])
else:
subprocess.check_call(
f"sed -i '1d' {target_file_batch}", shell=True
)
subprocess.check_call(
f"cat {target_file_batch} >> {target_file}", shell=True
)
subprocess.run(["rm", target_file_batch])
upload_file_to_gcs(
target_file, target_gcs_bucket, target_gcs_path, str(file_number)
)
subprocess.run(["rm", target_file])
logging.info("Proceed to next file, if any =======>")
print()
file_number += 1
target_file = temp_store


def list_files(source_bucket, source_gcs_path):
client = storage.Client()
blobs = client.list_blobs(source_bucket, prefix=source_gcs_path + "split")
files = []
for blob in blobs:
files.append(blob.name.split("/")[-1])
return files


def processChunk(
df: pd.DataFrame, target_file_batch: str, headers, rename_mappings
) -> None:
rename_headers_(df, rename_mappings)
logging.info("Convert Date Format")
df["date"] = df["date"].apply(convert_dt_format)

logging.info("Reordering headers..")
df = df[
[
"invoice_and_item_number",
"date",
"store_number",
"store_name",
"address",
"city",
"zip_code",
"store_location",
"county_number",
"county",
"category",
"category_name",
"vendor_number",
"vendor_name",
"item_number",
"item_description",
"pack",
"bottle_volume_ml",
"state_bottle_cost",
"state_bottle_retail",
"bottles_sold",
"sale_dollars",
"volume_sold_liters",
"volume_sold_gallons",
]
]

df = df[headers]
df["county_number"] = df["county_number"].astype("Int64")

logging.info(f"Saving to output file.. {target_file_batch}")
try:
save_to_new_file(df, file_path=str(target_file_batch))
except Exception as e:
logging.error(f"Error saving output file: {e}.")
logging.info("..Done!")


def rename_headers(df: pd.DataFrame) -> None:
header_names = {
"Invoice/Item Number": "invoice_and_item_number",
"Date": "date",
"Store Number": "store_number",
"Store Name": "store_name",
"Address": "address",
"City": "city",
"Zip Code": "zip_code",
"Store Location": "store_location",
"County Number": "county_number",
"County": "county",
"Category": "category",
"Category Name": "category_name",
"Vendor Number": "vendor_number",
"Vendor Name": "vendor_name",
"Item Number": "item_number",
"Item Description": "item_description",
"Pack": "pack",
"Bottle Volume (ml)": "bottle_volume_ml",
"State Bottle Cost": "state_bottle_cost",
"State Bottle Retail": "state_bottle_retail",
"Bottles Sold": "bottles_sold",
"Sale (Dollars)": "sale_dollars",
"Volume Sold (Liters)": "volume_sold_liters",
"Volume Sold (Gallons)": "volume_sold_gallons",
}
df = df.rename(columns=header_names, inplace=True)
def rename_headers_(df: pd.DataFrame, rename_mappings) -> None:
logging.info("Renaming Headers")
df = df.rename(columns=rename_mappings, inplace=True)


def convert_dt_format(dt_str: str) -> str:
Expand All @@ -159,35 +123,39 @@ def convert_dt_format(dt_str: str) -> str:


def save_to_new_file(df, file_path) -> None:
logging.info(f"Saving to output file.. {file_path}")
df.to_csv(file_path, index=False)


def download_file(source_url: str, source_file: pathlib.Path) -> None:
logging.info(f"Downloading {source_url} into {source_file}")
r = requests.get(source_url, stream=True)
if r.status_code == 200:
with open(source_file, "wb") as f:
for chunk in r:
f.write(chunk)
else:
logging.error(f"Couldn't download {source_url}: {r.text}")
def download_file(source_url: str, download_location: str, source_bucket: str) -> None:
logging.info(f"Downloading {source_url} into {download_location}")
client = storage.Client()
bucket = client.bucket(source_bucket)
blob = bucket.blob(source_url)
blob.download_to_filename(download_location)


def upload_file_to_gcs(file_path: pathlib.Path, gcs_bucket: str, gcs_path: str) -> None:
def upload_file_to_gcs(
file_path: pathlib.Path, gcs_bucket: str, gcs_path: str, file_number: str
) -> None:
logging.info(f"Uploading output file to {gcs_path}")
storage_client = storage.Client()
bucket = storage_client.bucket(gcs_bucket)
blob = bucket.blob(gcs_path)
filename = gcs_path + file_number + ".csv"
blob = bucket.blob(filename)
blob.upload_from_filename(file_path)


if __name__ == "__main__":
logging.getLogger().setLevel(logging.INFO)

main(
source_url=os.environ["SOURCE_URL"],
source_file=pathlib.Path(os.environ["SOURCE_FILE"]).expanduser(),
target_file=pathlib.Path(os.environ["TARGET_FILE"]).expanduser(),
download_location=os.environ["DOWNLOAD_LOCATION"],
target_file=os.environ["TARGET_FILE"],
chunksize=os.environ["CHUNKSIZE"],
target_gcs_bucket=os.environ["TARGET_GCS_BUCKET"],
source_gcs_path=os.environ["SOURCE_GCS_PATH"],
target_gcs_path=os.environ["TARGET_GCS_PATH"],
headers=json.loads(os.environ["HEADERS"]),
rename_mappings=json.loads(os.environ["RENAME_MAPPINGS"]),
)