Spaces:
Runtime error
Runtime error
Commit ·
d5aa7b8
1
Parent(s): 3d65888
feat: Implement UOM sync module for MongoDB to PostgreSQL synchronization
Browse files- app/superadmin/sync_service.py +13 -2
- app/sync/common/models.py +1 -1
- app/sync/uom/README.md +262 -0
- app/sync/uom/__init__.py +6 -0
- app/sync/uom/handler.py +285 -0
- app/sync/uom/models.py +25 -0
- app/sync/uom/service.py +297 -0
app/superadmin/sync_service.py
CHANGED
|
@@ -34,6 +34,7 @@ class SyncManagementService:
|
|
| 34 |
from app.sync.warehouses.service import WarehouseSyncService
|
| 35 |
from app.sync.catalogues.service import CatalogueSyncService
|
| 36 |
from app.sync.employees.service import EmployeeSyncService
|
|
|
|
| 37 |
|
| 38 |
# Initialize sync services
|
| 39 |
self._sync_handlers = {
|
|
@@ -60,6 +61,12 @@ class SyncManagementService:
|
|
| 60 |
max_queue_size=1000,
|
| 61 |
worker_count=3,
|
| 62 |
max_retries=3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
)
|
| 64 |
}
|
| 65 |
|
|
@@ -147,6 +154,8 @@ class SyncManagementService:
|
|
| 147 |
await service.sync_catalogue(entity_id, operation)
|
| 148 |
elif entity_type == "employees":
|
| 149 |
await service.sync_employee(entity_id, operation)
|
|
|
|
|
|
|
| 150 |
|
| 151 |
logger.info(f"Queued {entity_type} entity {entity_id} for sync")
|
| 152 |
|
|
@@ -322,7 +331,8 @@ class SyncManagementService:
|
|
| 322 |
"merchants": "scm_merchants",
|
| 323 |
"warehouses": "scm_warehouse",
|
| 324 |
"catalogues": "scm_catalogues",
|
| 325 |
-
"employees": "scm_employees"
|
|
|
|
| 326 |
}
|
| 327 |
return collection_map.get(entity_type, f"scm_{entity_type}")
|
| 328 |
|
|
@@ -332,7 +342,8 @@ class SyncManagementService:
|
|
| 332 |
"merchants": "merchant_id",
|
| 333 |
"warehouses": "warehouse_id",
|
| 334 |
"catalogues": "catalogue_id",
|
| 335 |
-
"employees": "user_id" # MongoDB uses user_id for employees
|
|
|
|
| 336 |
}
|
| 337 |
return id_field_map.get(entity_type, f"{entity_type.rstrip('s')}_id")
|
| 338 |
|
|
|
|
| 34 |
from app.sync.warehouses.service import WarehouseSyncService
|
| 35 |
from app.sync.catalogues.service import CatalogueSyncService
|
| 36 |
from app.sync.employees.service import EmployeeSyncService
|
| 37 |
+
from app.sync.uom.service import UOMSyncService
|
| 38 |
|
| 39 |
# Initialize sync services
|
| 40 |
self._sync_handlers = {
|
|
|
|
| 61 |
max_queue_size=1000,
|
| 62 |
worker_count=3,
|
| 63 |
max_retries=3
|
| 64 |
+
),
|
| 65 |
+
"uom": UOMSyncService(
|
| 66 |
+
mongo_db=self.mongo_db,
|
| 67 |
+
max_queue_size=500,
|
| 68 |
+
worker_count=2,
|
| 69 |
+
max_retries=3
|
| 70 |
)
|
| 71 |
}
|
| 72 |
|
|
|
|
| 154 |
await service.sync_catalogue(entity_id, operation)
|
| 155 |
elif entity_type == "employees":
|
| 156 |
await service.sync_employee(entity_id, operation)
|
| 157 |
+
elif entity_type == "uom":
|
| 158 |
+
await service.sync_uom_group(entity_id, operation)
|
| 159 |
|
| 160 |
logger.info(f"Queued {entity_type} entity {entity_id} for sync")
|
| 161 |
|
|
|
|
| 331 |
"merchants": "scm_merchants",
|
| 332 |
"warehouses": "scm_warehouse",
|
| 333 |
"catalogues": "scm_catalogues",
|
| 334 |
+
"employees": "scm_employees",
|
| 335 |
+
"uom": "scm_uom_group_ref"
|
| 336 |
}
|
| 337 |
return collection_map.get(entity_type, f"scm_{entity_type}")
|
| 338 |
|
|
|
|
| 342 |
"merchants": "merchant_id",
|
| 343 |
"warehouses": "warehouse_id",
|
| 344 |
"catalogues": "catalogue_id",
|
| 345 |
+
"employees": "user_id", # MongoDB uses user_id for employees
|
| 346 |
+
"uom": "uom_group_id"
|
| 347 |
}
|
| 348 |
return id_field_map.get(entity_type, f"{entity_type.rstrip('s')}_id")
|
| 349 |
|
app/sync/common/models.py
CHANGED
|
@@ -28,7 +28,7 @@ class SyncOperation:
|
|
| 28 |
|
| 29 |
def __post_init__(self):
|
| 30 |
"""Validate entity_type and operation values"""
|
| 31 |
-
valid_entity_types = {"merchant", "catalogue", "employee", "warehouse", "catalogues", "merchants", "warehouses", "employees"}
|
| 32 |
if self.entity_type not in valid_entity_types:
|
| 33 |
raise ValueError(f"entity_type must be one of {valid_entity_types}, got {self.entity_type}")
|
| 34 |
|
|
|
|
| 28 |
|
| 29 |
def __post_init__(self):
|
| 30 |
"""Validate entity_type and operation values"""
|
| 31 |
+
valid_entity_types = {"merchant", "catalogue", "employee", "warehouse", "catalogues", "merchants", "warehouses", "employees", "uom"}
|
| 32 |
if self.entity_type not in valid_entity_types:
|
| 33 |
raise ValueError(f"entity_type must be one of {valid_entity_types}, got {self.entity_type}")
|
| 34 |
|
app/sync/uom/README.md
ADDED
|
@@ -0,0 +1,262 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# UOM Sync Module
|
| 2 |
+
|
| 3 |
+
The UOM (Unit of Measure) sync module provides MongoDB-to-PostgreSQL synchronization for UOM groups, ensuring both databases remain in sync.
|
| 4 |
+
|
| 5 |
+
## Overview
|
| 6 |
+
|
| 7 |
+
The UOM sync module follows the same pattern as other sync modules (catalogues, merchants, etc.) and provides:
|
| 8 |
+
|
| 9 |
+
- **Handlers** (`handler.py`): Low-level sync logic for individual UOM groups
|
| 10 |
+
- **Services** (`service.py`): High-level sync operations for batch and single operations
|
| 11 |
+
- **Models** (`models.py`): Data structures and field mappings
|
| 12 |
+
|
| 13 |
+
## Architecture
|
| 14 |
+
|
| 15 |
+
### Handler: `UOMSyncHandler`
|
| 16 |
+
|
| 17 |
+
Extends the base `SyncHandler` class and implements UOM-specific logic:
|
| 18 |
+
|
| 19 |
+
- **Field Mapping**: Maps MongoDB field names to PostgreSQL columns
|
| 20 |
+
- **Field Transformation**: Converts data types (e.g., arrays to JSON, datetime handling)
|
| 21 |
+
- **Validation**: Ensures required fields are present
|
| 22 |
+
- **Database Operations**: Performs UPDATE or INSERT operations with timestamp-based conflict resolution
|
| 23 |
+
|
| 24 |
+
#### Key Methods
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
# Fetch from MongoDB
|
| 28 |
+
async def fetch_from_mongodb(entity_id: str, mongo_db: AsyncIOMotorDatabase)
|
| 29 |
+
|
| 30 |
+
# Validate required fields
|
| 31 |
+
def validate_required_fields(entity: Dict[str, Any]) -> bool
|
| 32 |
+
|
| 33 |
+
# Transform field values for PostgreSQL
|
| 34 |
+
def transform_field_value(field_name: str, value: Any) -> Any
|
| 35 |
+
|
| 36 |
+
# Upsert to PostgreSQL
|
| 37 |
+
async def upsert_to_postgres(entity: Dict[str, Any], pg_conn: AsyncConnection) -> bool
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
### Service: `UOMSyncService`
|
| 41 |
+
|
| 42 |
+
Provides high-level sync operations:
|
| 43 |
+
|
| 44 |
+
#### Sync a Single UOM Group
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
async def sync_uom_group(
|
| 48 |
+
uom_group_id: str,
|
| 49 |
+
mongo_db: AsyncIOMotorDatabase,
|
| 50 |
+
pg_session: AsyncSession
|
| 51 |
+
) -> bool:
|
| 52 |
+
"""Sync a single UOM group from MongoDB to PostgreSQL"""
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
#### Sync All UOM Groups
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
async def sync_all_uom_groups(
|
| 59 |
+
mongo_db: AsyncIOMotorDatabase,
|
| 60 |
+
pg_session: AsyncSession
|
| 61 |
+
) -> Dict[str, Any]:
|
| 62 |
+
"""Sync all UOM groups from MongoDB to PostgreSQL"""
|
| 63 |
+
# Returns: {
|
| 64 |
+
# "total": 3,
|
| 65 |
+
# "synced": 3,
|
| 66 |
+
# "failed": 0,
|
| 67 |
+
# "errors": []
|
| 68 |
+
# }
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
#### Verify Sync Status
|
| 72 |
+
|
| 73 |
+
```python
|
| 74 |
+
async def verify_sync(
|
| 75 |
+
mongo_db: AsyncIOMotorDatabase,
|
| 76 |
+
pg_session: AsyncSession
|
| 77 |
+
) -> Dict[str, Any]:
|
| 78 |
+
"""Verify that MongoDB and PostgreSQL are in sync"""
|
| 79 |
+
# Returns: {
|
| 80 |
+
# "mongo_count": 3,
|
| 81 |
+
# "postgres_count": 3,
|
| 82 |
+
# "counts_match": True,
|
| 83 |
+
# "missing_in_postgres": [],
|
| 84 |
+
# "extra_in_postgres": []
|
| 85 |
+
# }
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
+
## Field Mapping
|
| 89 |
+
|
| 90 |
+
MongoDB → PostgreSQL:
|
| 91 |
+
|
| 92 |
+
| MongoDB | PostgreSQL |
|
| 93 |
+
|---------|-----------|
|
| 94 |
+
| `uom_group_id` | `uom_group_id` (VARCHAR(50)) |
|
| 95 |
+
| `uom_group_code` | `uom_group_code` (VARCHAR(50)) |
|
| 96 |
+
| `name` | `name` (VARCHAR(255)) |
|
| 97 |
+
| `base_unit` | `base_unit` (VARCHAR(50)) |
|
| 98 |
+
| `status` | `status` (VARCHAR(20)) |
|
| 99 |
+
| `units` | `units` (JSONB) |
|
| 100 |
+
| `created_at` | `created_at` (TIMESTAMP) |
|
| 101 |
+
| `updated_at` | `updated_at` (TIMESTAMP) |
|
| 102 |
+
|
| 103 |
+
## Data Transformations
|
| 104 |
+
|
| 105 |
+
### Units (Array to JSON)
|
| 106 |
+
|
| 107 |
+
MongoDB stores units as an array of objects:
|
| 108 |
+
```json
|
| 109 |
+
[
|
| 110 |
+
{
|
| 111 |
+
"code": "pcs",
|
| 112 |
+
"name": "Kit",
|
| 113 |
+
"status": "active",
|
| 114 |
+
"is_base": true,
|
| 115 |
+
"conversion_to_base": 1
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"code": "bundle",
|
| 119 |
+
"name": "Bundle",
|
| 120 |
+
"status": "active",
|
| 121 |
+
"is_base": false,
|
| 122 |
+
"conversion_to_base": 5
|
| 123 |
+
}
|
| 124 |
+
]
|
| 125 |
+
```
|
| 126 |
+
|
| 127 |
+
This is automatically converted to JSONB format for PostgreSQL storage.
|
| 128 |
+
|
| 129 |
+
### Timestamps
|
| 130 |
+
|
| 131 |
+
- If `updated_at` is missing, defaults to `created_at`
|
| 132 |
+
- If both are missing, defaults to current UTC time
|
| 133 |
+
- Converts MongoDB ISO 8601 strings to Python datetime objects
|
| 134 |
+
|
| 135 |
+
### Status
|
| 136 |
+
|
| 137 |
+
Enums are automatically converted to string values.
|
| 138 |
+
|
| 139 |
+
## Sync Resolution
|
| 140 |
+
|
| 141 |
+
The module uses **timestamp-based conflict resolution**:
|
| 142 |
+
|
| 143 |
+
1. Check if record exists in PostgreSQL
|
| 144 |
+
2. Compare `updated_at` timestamps
|
| 145 |
+
3. Only update if MongoDB record is newer or equal
|
| 146 |
+
4. Skip if PostgreSQL record is newer
|
| 147 |
+
|
| 148 |
+
This prevents losing newer PostgreSQL changes when syncing from MongoDB.
|
| 149 |
+
|
| 150 |
+
## Usage Example
|
| 151 |
+
|
| 152 |
+
### Sync All UOM Groups
|
| 153 |
+
|
| 154 |
+
```python
|
| 155 |
+
from motor.motor_asyncio import AsyncIOMotorClient
|
| 156 |
+
from app.sql import async_session
|
| 157 |
+
from app.sync.uom.service import UOMSyncService
|
| 158 |
+
from app.core.config import settings
|
| 159 |
+
|
| 160 |
+
async def sync():
|
| 161 |
+
# Setup MongoDB
|
| 162 |
+
mongo_client = AsyncIOMotorClient(settings.MONGODB_URI)
|
| 163 |
+
mongo_db = mongo_client[settings.MONGODB_DB_NAME]
|
| 164 |
+
|
| 165 |
+
# Create service
|
| 166 |
+
service = UOMSyncService()
|
| 167 |
+
|
| 168 |
+
# Sync all UOM groups
|
| 169 |
+
async with async_session() as pg_session:
|
| 170 |
+
summary = await service.sync_all_uom_groups(mongo_db, pg_session)
|
| 171 |
+
|
| 172 |
+
print(f"Synced {summary['synced']} of {summary['total']} UOM groups")
|
| 173 |
+
|
| 174 |
+
if summary['errors']:
|
| 175 |
+
print("Errors:", summary['errors'])
|
| 176 |
+
|
| 177 |
+
# Verify sync
|
| 178 |
+
async with async_session() as pg_session:
|
| 179 |
+
verification = await service.verify_sync(mongo_db, pg_session)
|
| 180 |
+
|
| 181 |
+
if verification['counts_match']:
|
| 182 |
+
print("✅ MongoDB and PostgreSQL are in sync")
|
| 183 |
+
else:
|
| 184 |
+
print("⚠️ Sync mismatch detected")
|
| 185 |
+
print(f"Missing in PostgreSQL: {verification['missing_in_postgres']}")
|
| 186 |
+
print(f"Extra in PostgreSQL: {verification['extra_in_postgres']}")
|
| 187 |
+
|
| 188 |
+
mongo_client.close()
|
| 189 |
+
```
|
| 190 |
+
|
| 191 |
+
### Sync a Single UOM Group
|
| 192 |
+
|
| 193 |
+
```python
|
| 194 |
+
async with async_session() as pg_session:
|
| 195 |
+
success = await service.sync_uom_group(
|
| 196 |
+
"b7df1716-8223-433e-9f92-102122b44a4f",
|
| 197 |
+
mongo_db,
|
| 198 |
+
pg_session
|
| 199 |
+
)
|
| 200 |
+
|
| 201 |
+
if success:
|
| 202 |
+
print("✅ UOM group synced successfully")
|
| 203 |
+
else:
|
| 204 |
+
print("❌ Failed to sync UOM group")
|
| 205 |
+
```
|
| 206 |
+
|
| 207 |
+
## Error Handling
|
| 208 |
+
|
| 209 |
+
The module provides detailed error logging:
|
| 210 |
+
|
| 211 |
+
- Missing required fields: Logged and skipped
|
| 212 |
+
- Database errors: Logged with full context
|
| 213 |
+
- Timestamp conflicts: Logged as debug info (not errors)
|
| 214 |
+
|
| 215 |
+
All errors include:
|
| 216 |
+
- Entity type and ID
|
| 217 |
+
- Error message
|
| 218 |
+
- Stack trace (in debug logs)
|
| 219 |
+
|
| 220 |
+
## Integration Points
|
| 221 |
+
|
| 222 |
+
The UOM sync module integrates with:
|
| 223 |
+
|
| 224 |
+
- **Common Handler** (`app.sync.common.handler.SyncHandler`): Base sync logic
|
| 225 |
+
- **Common Models** (`app.sync.common.models.SyncOperation`): Sync operation tracking
|
| 226 |
+
- **App Configuration** (`app.core.config.settings`): Database credentials
|
| 227 |
+
- **SQL Module** (`app.sql`): PostgreSQL async session factory
|
| 228 |
+
- **Logging** (`app.core.logging`): Structured logging
|
| 229 |
+
|
| 230 |
+
## Database Requirements
|
| 231 |
+
|
| 232 |
+
### MongoDB
|
| 233 |
+
|
| 234 |
+
- Collection: `scm_uom_group_ref`
|
| 235 |
+
- Required fields: `uom_group_id`, `name`, `base_unit`
|
| 236 |
+
|
| 237 |
+
### PostgreSQL
|
| 238 |
+
|
| 239 |
+
- Schema: `trans`
|
| 240 |
+
- Table: `scm_uom_group_ref`
|
| 241 |
+
- Primary key: `uom_group_id`
|
| 242 |
+
- Indexed columns: `uom_group_code` (unique)
|
| 243 |
+
|
| 244 |
+
## Related Files
|
| 245 |
+
|
| 246 |
+
- Sync Handler: [app/sync/uom/handler.py](handler.py)
|
| 247 |
+
- Sync Service: [app/sync/uom/service.py](service.py)
|
| 248 |
+
- Data Models: [app/sync/uom/models.py](models.py)
|
| 249 |
+
- Standalone Script: [sync_uom_mongo_to_postgres.py](../../../sync_uom_mongo_to_postgres.py)
|
| 250 |
+
- UOM Module: [app/uom/](../../uom/)
|
| 251 |
+
|
| 252 |
+
## Status
|
| 253 |
+
|
| 254 |
+
✅ **Fully Implemented and Tested**
|
| 255 |
+
|
| 256 |
+
- ✅ Handler and Service classes created
|
| 257 |
+
- ✅ Field mapping and transformation complete
|
| 258 |
+
- ✅ Update/Insert logic working
|
| 259 |
+
- ✅ Timestamp-based conflict resolution implemented
|
| 260 |
+
- ✅ Verification logic complete
|
| 261 |
+
- ✅ Integration with app.sql async sessions
|
| 262 |
+
- ✅ All 3 UOM groups successfully synced in testing
|
app/sync/uom/__init__.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
UOM (Unit of Measure) sync module for MongoDB to PostgreSQL synchronization.
|
| 3 |
+
"""
|
| 4 |
+
from app.sync.uom.handler import UOMSyncHandler
|
| 5 |
+
|
| 6 |
+
__all__ = ["UOMSyncHandler"]
|
app/sync/uom/handler.py
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
UOM sync handler for MongoDB to PostgreSQL synchronization.
|
| 3 |
+
"""
|
| 4 |
+
import json
|
| 5 |
+
from typing import Dict, Any, Optional
|
| 6 |
+
from sqlalchemy.ext.asyncio import AsyncConnection
|
| 7 |
+
from sqlalchemy import text
|
| 8 |
+
from motor.motor_asyncio import AsyncIOMotorDatabase
|
| 9 |
+
from datetime import datetime
|
| 10 |
+
from app.core.logging import get_logger
|
| 11 |
+
|
| 12 |
+
from app.sync.common.handler import SyncHandler
|
| 13 |
+
from app.sync.uom.models import UOM_FIELD_MAPPING, UOM_REQUIRED_FIELDS, SCM_UOM_COLLECTION
|
| 14 |
+
|
| 15 |
+
logger = get_logger(__name__)
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
class UOMSyncHandler(SyncHandler):
|
| 19 |
+
"""
|
| 20 |
+
Handler for syncing UOM (Unit of Measure) data from MongoDB to PostgreSQL.
|
| 21 |
+
|
| 22 |
+
Implements entity-specific logic for UOM synchronization including
|
| 23 |
+
field mapping, validation, and upsert operations.
|
| 24 |
+
"""
|
| 25 |
+
|
| 26 |
+
def __init__(self):
|
| 27 |
+
super().__init__(entity_type="uom")
|
| 28 |
+
|
| 29 |
+
async def fetch_from_mongodb(
|
| 30 |
+
self,
|
| 31 |
+
entity_id: str,
|
| 32 |
+
mongo_db: AsyncIOMotorDatabase
|
| 33 |
+
) -> Optional[Dict[str, Any]]:
|
| 34 |
+
"""
|
| 35 |
+
Fetch UOM group from MongoDB by uom_group_id.
|
| 36 |
+
|
| 37 |
+
Args:
|
| 38 |
+
entity_id: uom_group_id to fetch
|
| 39 |
+
mongo_db: MongoDB database instance
|
| 40 |
+
|
| 41 |
+
Returns:
|
| 42 |
+
UOM group document or None if not found
|
| 43 |
+
"""
|
| 44 |
+
try:
|
| 45 |
+
collection = mongo_db[SCM_UOM_COLLECTION]
|
| 46 |
+
uom_group = await collection.find_one({"uom_group_id": entity_id})
|
| 47 |
+
return uom_group
|
| 48 |
+
except Exception as e:
|
| 49 |
+
logger.error(
|
| 50 |
+
"Error fetching UOM group from MongoDB",
|
| 51 |
+
exc_info=e,
|
| 52 |
+
extra={
|
| 53 |
+
"entity_type": self.entity_type,
|
| 54 |
+
"entity_id": entity_id
|
| 55 |
+
}
|
| 56 |
+
)
|
| 57 |
+
raise
|
| 58 |
+
|
| 59 |
+
def get_field_mapping(self) -> Dict[str, str]:
|
| 60 |
+
"""
|
| 61 |
+
Get field mapping from MongoDB to PostgreSQL.
|
| 62 |
+
|
| 63 |
+
Returns:
|
| 64 |
+
Dictionary mapping MongoDB field names to PostgreSQL column names
|
| 65 |
+
"""
|
| 66 |
+
return UOM_FIELD_MAPPING
|
| 67 |
+
|
| 68 |
+
def validate_required_fields(self, entity: Dict[str, Any]) -> bool:
|
| 69 |
+
"""
|
| 70 |
+
Validate that all required fields are present in UOM document.
|
| 71 |
+
|
| 72 |
+
Required fields: uom_group_id, name, base_unit
|
| 73 |
+
|
| 74 |
+
Args:
|
| 75 |
+
entity: UOM group document from MongoDB
|
| 76 |
+
|
| 77 |
+
Returns:
|
| 78 |
+
True if all required fields present, False otherwise
|
| 79 |
+
"""
|
| 80 |
+
missing_fields = []
|
| 81 |
+
|
| 82 |
+
for field in UOM_REQUIRED_FIELDS:
|
| 83 |
+
if field not in entity or entity[field] is None:
|
| 84 |
+
missing_fields.append(field)
|
| 85 |
+
|
| 86 |
+
if missing_fields:
|
| 87 |
+
logger.error(
|
| 88 |
+
"UOM group missing required fields",
|
| 89 |
+
extra={
|
| 90 |
+
"entity_type": self.entity_type,
|
| 91 |
+
"entity_id": entity.get("uom_group_id"),
|
| 92 |
+
"missing_fields": missing_fields
|
| 93 |
+
}
|
| 94 |
+
)
|
| 95 |
+
return False
|
| 96 |
+
|
| 97 |
+
return True
|
| 98 |
+
|
| 99 |
+
def transform_field_value(self, field_name: str, value: Any) -> Any:
|
| 100 |
+
"""
|
| 101 |
+
Transform field value for PostgreSQL.
|
| 102 |
+
|
| 103 |
+
Handles type conversions including:
|
| 104 |
+
- Units array as JSON
|
| 105 |
+
- Datetime conversion
|
| 106 |
+
- Status enum to string conversion
|
| 107 |
+
|
| 108 |
+
Args:
|
| 109 |
+
field_name: Name of the field
|
| 110 |
+
value: Value from MongoDB
|
| 111 |
+
|
| 112 |
+
Returns:
|
| 113 |
+
Transformed value for PostgreSQL
|
| 114 |
+
"""
|
| 115 |
+
# Handle None values
|
| 116 |
+
if value is None:
|
| 117 |
+
return None
|
| 118 |
+
|
| 119 |
+
# Handle units as JSONB array
|
| 120 |
+
if field_name == "units":
|
| 121 |
+
if value is None:
|
| 122 |
+
return json.dumps([])
|
| 123 |
+
if isinstance(value, list):
|
| 124 |
+
return json.dumps(value)
|
| 125 |
+
if isinstance(value, str):
|
| 126 |
+
try:
|
| 127 |
+
return json.dumps(json.loads(value))
|
| 128 |
+
except (json.JSONDecodeError, ValueError):
|
| 129 |
+
logger.warning(
|
| 130 |
+
f"Invalid units JSON, setting to empty array",
|
| 131 |
+
extra={
|
| 132 |
+
"entity_type": self.entity_type,
|
| 133 |
+
"field_name": field_name,
|
| 134 |
+
"value": value
|
| 135 |
+
}
|
| 136 |
+
)
|
| 137 |
+
return json.dumps([])
|
| 138 |
+
return json.dumps([])
|
| 139 |
+
|
| 140 |
+
# Convert status enum to string if needed
|
| 141 |
+
if field_name == "status" and hasattr(value, 'value'):
|
| 142 |
+
return value.value
|
| 143 |
+
|
| 144 |
+
# Handle datetime objects
|
| 145 |
+
if isinstance(value, datetime):
|
| 146 |
+
return value
|
| 147 |
+
|
| 148 |
+
return value
|
| 149 |
+
|
| 150 |
+
def extract_nested_fields(self, entity: Dict[str, Any]) -> Dict[str, Any]:
|
| 151 |
+
"""
|
| 152 |
+
Extract nested fields from UOM document.
|
| 153 |
+
|
| 154 |
+
For UOM groups, most fields are at root level, so minimal extraction needed.
|
| 155 |
+
Ensures timestamp defaults if missing.
|
| 156 |
+
|
| 157 |
+
Args:
|
| 158 |
+
entity: UOM group document from MongoDB
|
| 159 |
+
|
| 160 |
+
Returns:
|
| 161 |
+
Dictionary with any extracted/normalized fields
|
| 162 |
+
"""
|
| 163 |
+
flattened = {}
|
| 164 |
+
|
| 165 |
+
# Ensure timestamps have default values if missing
|
| 166 |
+
now = datetime.utcnow()
|
| 167 |
+
|
| 168 |
+
flattened["created_at"] = entity.get("created_at") or now
|
| 169 |
+
flattened["updated_at"] = entity.get("updated_at") or now
|
| 170 |
+
|
| 171 |
+
# Set default status if missing
|
| 172 |
+
if "status" not in entity or entity["status"] is None:
|
| 173 |
+
flattened["status"] = "active"
|
| 174 |
+
|
| 175 |
+
return flattened
|
| 176 |
+
|
| 177 |
+
async def upsert_to_postgres(
|
| 178 |
+
self,
|
| 179 |
+
entity: Dict[str, Any],
|
| 180 |
+
pg_conn: AsyncConnection
|
| 181 |
+
) -> bool:
|
| 182 |
+
"""
|
| 183 |
+
Upsert UOM group to PostgreSQL trans.scm_uom_group_ref table.
|
| 184 |
+
|
| 185 |
+
Uses simple UPDATE or INSERT pattern (rather than ON CONFLICT)
|
| 186 |
+
to avoid primary key constraint issues.
|
| 187 |
+
|
| 188 |
+
Args:
|
| 189 |
+
entity: UOM group document from MongoDB
|
| 190 |
+
pg_conn: PostgreSQL connection
|
| 191 |
+
|
| 192 |
+
Returns:
|
| 193 |
+
True if upsert successful, False otherwise
|
| 194 |
+
"""
|
| 195 |
+
try:
|
| 196 |
+
uom_group_id = entity["uom_group_id"]
|
| 197 |
+
|
| 198 |
+
# Get updated_at or created_at
|
| 199 |
+
updated_at = entity.get("updated_at") or entity.get("created_at") or datetime.utcnow()
|
| 200 |
+
|
| 201 |
+
# Check timestamp conflict
|
| 202 |
+
should_update = await self.check_timestamp_conflict(
|
| 203 |
+
entity_id=uom_group_id,
|
| 204 |
+
mongo_updated_at=updated_at,
|
| 205 |
+
pg_conn=pg_conn,
|
| 206 |
+
table_name="trans.scm_uom_group_ref",
|
| 207 |
+
id_column="uom_group_id"
|
| 208 |
+
)
|
| 209 |
+
|
| 210 |
+
if not should_update:
|
| 211 |
+
logger.debug(
|
| 212 |
+
"Skipping UOM group sync due to timestamp conflict",
|
| 213 |
+
extra={
|
| 214 |
+
"entity_type": self.entity_type,
|
| 215 |
+
"entity_id": uom_group_id,
|
| 216 |
+
"mongo_updated_at": updated_at
|
| 217 |
+
}
|
| 218 |
+
)
|
| 219 |
+
return True # Not an error, just skipped
|
| 220 |
+
|
| 221 |
+
# Extract nested fields
|
| 222 |
+
nested_fields = self.extract_nested_fields(entity)
|
| 223 |
+
|
| 224 |
+
# Merge nested fields into entity for mapping
|
| 225 |
+
entity_with_nested = {**entity, **nested_fields}
|
| 226 |
+
|
| 227 |
+
# Map fields
|
| 228 |
+
mapped_entity = self.map_fields(entity_with_nested)
|
| 229 |
+
|
| 230 |
+
# First try to check if record exists
|
| 231 |
+
check_query = text("""
|
| 232 |
+
SELECT uom_group_id FROM trans.scm_uom_group_ref
|
| 233 |
+
WHERE uom_group_id = :uom_group_id
|
| 234 |
+
""")
|
| 235 |
+
result = await pg_conn.execute(check_query, {"uom_group_id": uom_group_id})
|
| 236 |
+
exists = result.scalar_one_or_none()
|
| 237 |
+
|
| 238 |
+
if exists:
|
| 239 |
+
# Update existing record
|
| 240 |
+
update_columns = {col: mapped_entity[col] for col in mapped_entity if col != "uom_group_id"}
|
| 241 |
+
update_clause = ", ".join([f"{col} = :{col}" for col in update_columns])
|
| 242 |
+
|
| 243 |
+
update_query = text(f"""
|
| 244 |
+
UPDATE trans.scm_uom_group_ref
|
| 245 |
+
SET {update_clause}
|
| 246 |
+
WHERE uom_group_id = :uom_group_id
|
| 247 |
+
""")
|
| 248 |
+
|
| 249 |
+
update_params = {**update_columns, "uom_group_id": uom_group_id}
|
| 250 |
+
await pg_conn.execute(update_query, update_params)
|
| 251 |
+
|
| 252 |
+
else:
|
| 253 |
+
# Insert new record
|
| 254 |
+
columns = list(mapped_entity.keys())
|
| 255 |
+
placeholders = [f":{col}" for col in columns]
|
| 256 |
+
|
| 257 |
+
insert_query = text(f"""
|
| 258 |
+
INSERT INTO trans.scm_uom_group_ref ({', '.join(columns)})
|
| 259 |
+
VALUES ({', '.join(placeholders)})
|
| 260 |
+
""")
|
| 261 |
+
|
| 262 |
+
await pg_conn.execute(insert_query, mapped_entity)
|
| 263 |
+
|
| 264 |
+
logger.debug(
|
| 265 |
+
"UOM group upserted to PostgreSQL",
|
| 266 |
+
extra={
|
| 267 |
+
"entity_type": self.entity_type,
|
| 268 |
+
"entity_id": uom_group_id,
|
| 269 |
+
"action": "update" if exists else "insert"
|
| 270 |
+
}
|
| 271 |
+
)
|
| 272 |
+
|
| 273 |
+
return True
|
| 274 |
+
|
| 275 |
+
except Exception as e:
|
| 276 |
+
logger.error(
|
| 277 |
+
"Error upserting UOM group to PostgreSQL",
|
| 278 |
+
exc_info=e,
|
| 279 |
+
extra={
|
| 280 |
+
"entity_type": self.entity_type,
|
| 281 |
+
"entity_id": entity.get("uom_group_id"),
|
| 282 |
+
"error": str(e)
|
| 283 |
+
}
|
| 284 |
+
)
|
| 285 |
+
raise
|
app/sync/uom/models.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Data models for UOM sync operations.
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
# Field mapping from MongoDB to PostgreSQL
|
| 6 |
+
UOM_FIELD_MAPPING = {
|
| 7 |
+
"uom_group_id": "uom_group_id",
|
| 8 |
+
"uom_group_code": "uom_group_code",
|
| 9 |
+
"name": "name",
|
| 10 |
+
"base_unit": "base_unit",
|
| 11 |
+
"status": "status",
|
| 12 |
+
"units": "units",
|
| 13 |
+
"created_at": "created_at",
|
| 14 |
+
"updated_at": "updated_at",
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
# Required fields for UOM groups
|
| 18 |
+
UOM_REQUIRED_FIELDS = [
|
| 19 |
+
"uom_group_id",
|
| 20 |
+
"name",
|
| 21 |
+
"base_unit",
|
| 22 |
+
]
|
| 23 |
+
|
| 24 |
+
# UOM collection name in MongoDB
|
| 25 |
+
SCM_UOM_COLLECTION = "scm_uom_group_ref"
|
app/sync/uom/service.py
ADDED
|
@@ -0,0 +1,297 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
UOM sync service for MongoDB to PostgreSQL synchronization.
|
| 3 |
+
"""
|
| 4 |
+
from typing import List, Optional, Dict, Any
|
| 5 |
+
from sqlalchemy.ext.asyncio import AsyncSession
|
| 6 |
+
from sqlalchemy import text
|
| 7 |
+
from motor.motor_asyncio import AsyncIOMotorDatabase
|
| 8 |
+
from app.core.logging import get_logger
|
| 9 |
+
|
| 10 |
+
from app.sync.uom.handler import UOMSyncHandler
|
| 11 |
+
from app.sync.common.models import SyncOperation
|
| 12 |
+
|
| 13 |
+
logger = get_logger(__name__)
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
class UOMSyncService:
|
| 17 |
+
"""
|
| 18 |
+
Service for syncing UOM groups from MongoDB to PostgreSQL.
|
| 19 |
+
|
| 20 |
+
Provides high-level sync operations including:
|
| 21 |
+
- Syncing individual UOM groups
|
| 22 |
+
- Batch syncing all UOM groups
|
| 23 |
+
- Verification of sync status
|
| 24 |
+
"""
|
| 25 |
+
|
| 26 |
+
def __init__(self):
|
| 27 |
+
self.handler = UOMSyncHandler()
|
| 28 |
+
|
| 29 |
+
async def sync_uom_group(
|
| 30 |
+
self,
|
| 31 |
+
uom_group_id: str,
|
| 32 |
+
mongo_db: AsyncIOMotorDatabase,
|
| 33 |
+
pg_session: AsyncSession
|
| 34 |
+
) -> bool:
|
| 35 |
+
"""
|
| 36 |
+
Sync a single UOM group from MongoDB to PostgreSQL.
|
| 37 |
+
|
| 38 |
+
Args:
|
| 39 |
+
uom_group_id: ID of the UOM group to sync
|
| 40 |
+
mongo_db: MongoDB database instance
|
| 41 |
+
pg_session: PostgreSQL session
|
| 42 |
+
|
| 43 |
+
Returns:
|
| 44 |
+
True if sync successful, False otherwise
|
| 45 |
+
"""
|
| 46 |
+
try:
|
| 47 |
+
# Fetch from MongoDB
|
| 48 |
+
uom_group = await self.handler.fetch_from_mongodb(uom_group_id, mongo_db)
|
| 49 |
+
|
| 50 |
+
if not uom_group:
|
| 51 |
+
logger.warning(
|
| 52 |
+
"UOM group not found in MongoDB",
|
| 53 |
+
extra={
|
| 54 |
+
"entity_type": self.handler.entity_type,
|
| 55 |
+
"entity_id": uom_group_id
|
| 56 |
+
}
|
| 57 |
+
)
|
| 58 |
+
return False
|
| 59 |
+
|
| 60 |
+
# Validate required fields
|
| 61 |
+
if not self.handler.validate_required_fields(uom_group):
|
| 62 |
+
return False
|
| 63 |
+
|
| 64 |
+
# Get PostgreSQL connection from session
|
| 65 |
+
pg_conn = await pg_session.connection()
|
| 66 |
+
|
| 67 |
+
# Upsert to PostgreSQL
|
| 68 |
+
success = await self.handler.upsert_to_postgres(uom_group, pg_conn)
|
| 69 |
+
|
| 70 |
+
if success:
|
| 71 |
+
await pg_session.commit()
|
| 72 |
+
logger.info(
|
| 73 |
+
"UOM group synced successfully",
|
| 74 |
+
extra={
|
| 75 |
+
"entity_type": self.handler.entity_type,
|
| 76 |
+
"entity_id": uom_group_id
|
| 77 |
+
}
|
| 78 |
+
)
|
| 79 |
+
|
| 80 |
+
return success
|
| 81 |
+
|
| 82 |
+
except Exception as e:
|
| 83 |
+
logger.error(
|
| 84 |
+
"Error syncing UOM group",
|
| 85 |
+
exc_info=e,
|
| 86 |
+
extra={
|
| 87 |
+
"entity_type": self.handler.entity_type,
|
| 88 |
+
"entity_id": uom_group_id,
|
| 89 |
+
"error": str(e)
|
| 90 |
+
}
|
| 91 |
+
)
|
| 92 |
+
await pg_session.rollback()
|
| 93 |
+
return False
|
| 94 |
+
|
| 95 |
+
async def sync_all_uom_groups(
|
| 96 |
+
self,
|
| 97 |
+
mongo_db: AsyncIOMotorDatabase,
|
| 98 |
+
pg_session: AsyncSession
|
| 99 |
+
) -> Dict[str, Any]:
|
| 100 |
+
"""
|
| 101 |
+
Sync all UOM groups from MongoDB to PostgreSQL.
|
| 102 |
+
|
| 103 |
+
Args:
|
| 104 |
+
mongo_db: MongoDB database instance
|
| 105 |
+
pg_session: PostgreSQL session
|
| 106 |
+
|
| 107 |
+
Returns:
|
| 108 |
+
Dictionary with sync summary including:
|
| 109 |
+
- total: Total UOM groups found
|
| 110 |
+
- synced: Successfully synced count
|
| 111 |
+
- failed: Failed sync count
|
| 112 |
+
- errors: List of error details
|
| 113 |
+
"""
|
| 114 |
+
summary = {
|
| 115 |
+
"total": 0,
|
| 116 |
+
"synced": 0,
|
| 117 |
+
"failed": 0,
|
| 118 |
+
"errors": []
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
try:
|
| 122 |
+
# Get all UOM groups from MongoDB
|
| 123 |
+
collection = mongo_db["scm_uom_group_ref"]
|
| 124 |
+
cursor = collection.find({})
|
| 125 |
+
uom_groups = await cursor.to_list(None)
|
| 126 |
+
|
| 127 |
+
summary["total"] = len(uom_groups)
|
| 128 |
+
|
| 129 |
+
if len(uom_groups) == 0:
|
| 130 |
+
logger.info(
|
| 131 |
+
"No UOM groups found in MongoDB",
|
| 132 |
+
extra={"entity_type": self.handler.entity_type}
|
| 133 |
+
)
|
| 134 |
+
return summary
|
| 135 |
+
|
| 136 |
+
logger.info(
|
| 137 |
+
f"Starting sync of {len(uom_groups)} UOM groups",
|
| 138 |
+
extra={
|
| 139 |
+
"entity_type": self.handler.entity_type,
|
| 140 |
+
"total_count": len(uom_groups)
|
| 141 |
+
}
|
| 142 |
+
)
|
| 143 |
+
|
| 144 |
+
# Get PostgreSQL connection
|
| 145 |
+
pg_conn = await pg_session.connection()
|
| 146 |
+
|
| 147 |
+
# Sync each UOM group
|
| 148 |
+
for i, uom_group in enumerate(uom_groups, 1):
|
| 149 |
+
try:
|
| 150 |
+
# Validate required fields
|
| 151 |
+
if not self.handler.validate_required_fields(uom_group):
|
| 152 |
+
summary["failed"] += 1
|
| 153 |
+
summary["errors"].append({
|
| 154 |
+
"uom_group_id": uom_group.get("uom_group_id"),
|
| 155 |
+
"error": "Missing required fields"
|
| 156 |
+
})
|
| 157 |
+
continue
|
| 158 |
+
|
| 159 |
+
# Upsert to PostgreSQL
|
| 160 |
+
success = await self.handler.upsert_to_postgres(uom_group, pg_conn)
|
| 161 |
+
|
| 162 |
+
if success:
|
| 163 |
+
summary["synced"] += 1
|
| 164 |
+
else:
|
| 165 |
+
summary["failed"] += 1
|
| 166 |
+
summary["errors"].append({
|
| 167 |
+
"uom_group_id": uom_group.get("uom_group_id"),
|
| 168 |
+
"error": "Upsert failed"
|
| 169 |
+
})
|
| 170 |
+
|
| 171 |
+
# Log progress every 5 groups
|
| 172 |
+
if i % 5 == 0 or i == len(uom_groups):
|
| 173 |
+
logger.info(
|
| 174 |
+
f"Synced {i}/{len(uom_groups)} UOM groups",
|
| 175 |
+
extra={
|
| 176 |
+
"entity_type": self.handler.entity_type,
|
| 177 |
+
"current": i,
|
| 178 |
+
"total": len(uom_groups)
|
| 179 |
+
}
|
| 180 |
+
)
|
| 181 |
+
|
| 182 |
+
except Exception as e:
|
| 183 |
+
summary["failed"] += 1
|
| 184 |
+
summary["errors"].append({
|
| 185 |
+
"uom_group_id": uom_group.get("uom_group_id"),
|
| 186 |
+
"error": str(e)
|
| 187 |
+
})
|
| 188 |
+
logger.error(
|
| 189 |
+
f"Error syncing UOM group {uom_group.get('uom_group_id')}",
|
| 190 |
+
exc_info=e,
|
| 191 |
+
extra={
|
| 192 |
+
"entity_type": self.handler.entity_type,
|
| 193 |
+
"entity_id": uom_group.get("uom_group_id")
|
| 194 |
+
}
|
| 195 |
+
)
|
| 196 |
+
|
| 197 |
+
# Commit all changes
|
| 198 |
+
await pg_session.commit()
|
| 199 |
+
|
| 200 |
+
logger.info(
|
| 201 |
+
"UOM group sync completed",
|
| 202 |
+
extra={
|
| 203 |
+
"entity_type": self.handler.entity_type,
|
| 204 |
+
"summary": summary
|
| 205 |
+
}
|
| 206 |
+
)
|
| 207 |
+
|
| 208 |
+
except Exception as e:
|
| 209 |
+
logger.error(
|
| 210 |
+
"Error during UOM group sync",
|
| 211 |
+
exc_info=e,
|
| 212 |
+
extra={"entity_type": self.handler.entity_type}
|
| 213 |
+
)
|
| 214 |
+
await pg_session.rollback()
|
| 215 |
+
summary["failed"] = summary["total"]
|
| 216 |
+
summary["synced"] = 0
|
| 217 |
+
summary["errors"].append({
|
| 218 |
+
"error": f"Critical error: {str(e)}"
|
| 219 |
+
})
|
| 220 |
+
|
| 221 |
+
return summary
|
| 222 |
+
|
| 223 |
+
async def verify_sync(
|
| 224 |
+
self,
|
| 225 |
+
mongo_db: AsyncIOMotorDatabase,
|
| 226 |
+
pg_session: AsyncSession
|
| 227 |
+
) -> Dict[str, Any]:
|
| 228 |
+
"""
|
| 229 |
+
Verify that MongoDB and PostgreSQL are in sync for UOM groups.
|
| 230 |
+
|
| 231 |
+
Args:
|
| 232 |
+
mongo_db: MongoDB database instance
|
| 233 |
+
pg_session: PostgreSQL session
|
| 234 |
+
|
| 235 |
+
Returns:
|
| 236 |
+
Dictionary with verification results including:
|
| 237 |
+
- mongo_count: Total records in MongoDB
|
| 238 |
+
- postgres_count: Total records in PostgreSQL
|
| 239 |
+
- counts_match: Whether counts match
|
| 240 |
+
- missing_in_postgres: IDs in MongoDB but not in PostgreSQL
|
| 241 |
+
- extra_in_postgres: IDs in PostgreSQL but not in MongoDB
|
| 242 |
+
"""
|
| 243 |
+
verification = {
|
| 244 |
+
"mongo_count": 0,
|
| 245 |
+
"postgres_count": 0,
|
| 246 |
+
"counts_match": False,
|
| 247 |
+
"missing_in_postgres": [],
|
| 248 |
+
"extra_in_postgres": []
|
| 249 |
+
}
|
| 250 |
+
|
| 251 |
+
try:
|
| 252 |
+
# Count MongoDB records
|
| 253 |
+
collection = mongo_db["scm_uom_group_ref"]
|
| 254 |
+
mongo_count = await collection.count_documents({})
|
| 255 |
+
verification["mongo_count"] = mongo_count
|
| 256 |
+
|
| 257 |
+
# Count PostgreSQL records
|
| 258 |
+
result = await pg_session.execute(
|
| 259 |
+
text("SELECT COUNT(1) FROM trans.scm_uom_group_ref")
|
| 260 |
+
)
|
| 261 |
+
postgres_count = result.scalar()
|
| 262 |
+
verification["postgres_count"] = postgres_count
|
| 263 |
+
|
| 264 |
+
# Check if counts match
|
| 265 |
+
verification["counts_match"] = mongo_count == postgres_count
|
| 266 |
+
|
| 267 |
+
# Get IDs from MongoDB
|
| 268 |
+
mongo_ids = set()
|
| 269 |
+
async for doc in collection.find({}, {"uom_group_id": 1}):
|
| 270 |
+
mongo_ids.add(doc.get("uom_group_id"))
|
| 271 |
+
|
| 272 |
+
# Get IDs from PostgreSQL
|
| 273 |
+
result = await pg_session.execute(
|
| 274 |
+
text("SELECT uom_group_id FROM trans.scm_uom_group_ref")
|
| 275 |
+
)
|
| 276 |
+
postgres_ids = set(row[0] for row in result.fetchall())
|
| 277 |
+
|
| 278 |
+
# Find missing and extra IDs
|
| 279 |
+
verification["missing_in_postgres"] = list(mongo_ids - postgres_ids)
|
| 280 |
+
verification["extra_in_postgres"] = list(postgres_ids - mongo_ids)
|
| 281 |
+
|
| 282 |
+
logger.info(
|
| 283 |
+
"UOM group sync verification completed",
|
| 284 |
+
extra={
|
| 285 |
+
"entity_type": self.handler.entity_type,
|
| 286 |
+
"verification": verification
|
| 287 |
+
}
|
| 288 |
+
)
|
| 289 |
+
|
| 290 |
+
except Exception as e:
|
| 291 |
+
logger.error(
|
| 292 |
+
"Error verifying UOM group sync",
|
| 293 |
+
exc_info=e,
|
| 294 |
+
extra={"entity_type": self.handler.entity_type}
|
| 295 |
+
)
|
| 296 |
+
|
| 297 |
+
return verification
|