Commit Graph

6 Commits

Author SHA1 Message Date
f4a810aefc chore: remove trailing whitespace from README.md line 42 2025-11-24 09:21:23 +00:00
faee9fd182 fix: add try-catch block to handle database connection timeout in user service 2025-11-24 00:59:54 +00:00
32fe81de30 feat: refactor data processing pipeline to use async/await for non-blocking I/O
The core data ingestion module has been rewritten to replace synchronous file reads and database writes with asynchronous coroutines using asyncio. This change eliminates thread pool overhead for I/O-bound operations, improving throughput under high concurrency. The `process_batch` function now awaits `aiofiles.open` and `asyncpg.execute`, with error handling updated to propagate exceptions through the event loop.
2025-11-23 19:30:37 +00:00
0028a6f2de feat: implement async processing for data pipeline operations
Refactor the core data processing module to use asyncio for concurrent task execution, replacing the previous synchronous loop. This change introduces async/await patterns across the main handler and utility functions, enabling non-blocking I/O for database queries and external API calls. The update includes new async context managers for connection pooling and error handling, improving throughput under high load scenarios.
2025-11-23 13:30:46 +00:00
cc4ea74d61 chore: rename project files to follow kebab-case naming convention 2025-11-22 21:30:55 +00:00
c52fa04787 chore: organize project directory structure with logical grouping of modules 2025-11-22 21:22:43 +00:00