High Level Design For Mapping Non Esb Orders
Components and Flow:
Cron Job:
Purpose: Triggers the daily job to fetch non-Eshop orders from the
channel_payment_report
(CPR) table.Trigger Time: Configured to run at a set time each day (e.g., midnight).
Actor: AppEngine Service
Data Retrieval:
The cron job will fetch all records from the
channel_payment_report
whereorder_item_id
is empty or null.These non-Eshop orders are identified using the
order_id
andsku
fields.
Order Mapping Logic:
Service Layer (AppEngine):
The fetched non-Eshop orders are mapped to the
sale_order_report_v2
BigQuery table using theorder_id
(mapped tocustomer_order_id
) andsku
columns.The system will retrieve relevant order details, including missing information like
order_item_id
and other fields.The mapping process will match and fill missing data for orders.
Data Validation:
The service will validate that the mapped data is accurate and matches the expected structure.
If there are any unmatched records, errors will be logged via SLF4J for further analysis.
Data Update:
Delete Operation: Once the mapping is complete, the matched records will be deleted from the CPR table (non-Eshop orders) to clean up the table.
Insert Operation: The mapped data will then be inserted back into the
channel_payment_report
table.
Error Logging:
Any exceptions or errors encountered during the process, such as unmatched orders or database issues, will be logged using SLF4J.
Database Layer:
The system interacts with the BigQuery
sale_order_report_v2
table and the SQLchannel_payment_report
table for data retrieval and updates.
Key Technologies Involved:
Google AppEngine Service: The main service handling the business logic.
BigQuery: To store and retrieve order details.
SQL Database (CPR table): Where the payment details and non-Eshop orders are stored and updated.
SLF4J: For logging errors and exceptions.
HLD Diagram (Description):
Cron Job (AppEngine): Starts the daily process of fetching non-Eshop orders.
Order Mapping Logic: Maps the fetched data from CPR to BigQuery.
Data Validation: Ensures that the mapping is correct.
Data Update: Deletes the non-Eshop orders from CPR and inserts the mapped data.
Error Logging (SLF4J): Logs any issues during the process.