https://github.com/boopi7/shopify-aws
An hourly AWS CloudWatch monitor - checking for SKUs getting out-of-stock/added-to-stock on Shopify
https://github.com/boopi7/shopify-aws
Last synced: about 16 hours ago
JSON representation
An hourly AWS CloudWatch monitor - checking for SKUs getting out-of-stock/added-to-stock on Shopify
- Host: GitHub
- URL: https://github.com/boopi7/shopify-aws
- Owner: Boopi7
- Created: 2025-11-20T21:18:24.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-11-20T21:35:40.000Z (8 months ago)
- Last Synced: 2026-02-17T20:51:45.559Z (5 months ago)
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a notifier developed for Unilever BD, alerting on Out-of-Stock (OOS) and Addition-to-Stock (ATS) situations.
Tech Stack (Amazon Web Services - AWS): ```DynamoDB``` ```Lambda``` ```CloudWatch``` ```Python Boto3``` ```smtplib```
### Output Notifications
### Why DynamoDB?
- Key-Value Storage Design helped perform simple, de-duplicated insertions (+ updates) of SKUs.
- Flexible Schema helped handle offers, discounts - since not all SKUs have them live always.
- TTL (Time-to-Live) helped (periodically) delete outdated SKU's data, plus optimize resource utilization.
- CloudWatch Log Stream Monitoring triggered the Lambda Function, to notify (email) OOS/ATS-events.
- Enabling Global Secondary Index (GSI) helped query faster on timestamp (not primary key), to identify OOS.