You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor and Enhance Dispatcher: Worker Management, pg_notify Locking, Error Handling, and More (#1)
* Improve protocol documentation by adding docstrings
* Improve error handling in BrokerCallbacks.listen_for_replies
- Add JSON parsing with exception handling to ignore malformed messages.
- Log warnings when invalid JSON is received.
- Add a unit test
* Rename get_send_message to create_message for clarity
- Change method name in Control class to better reflect its role in constructing messages.
* Add resource cleanup in Control methods and tests
- Ensure broker connections are closed in acontrol, control_with_reply, and control.
- Update tests to verify that aclose() or close() is called appropriately.
* Fix race condition in manage_old_workers and add tests
- Refactor manage_old_workers to use a two-phase locking approach.
- Take a snapshot under lock, process removals, then re-acquire the lock to remove workers atomically.
Potentially closesansible#124
* Improve error propagation in NextWakeupRunner.process_wakeups
- Wrap process_object callback in try/except to log and re-raise errors.
- Add unit tests to verify normal operation and error propagation.
* pg_notify: Improve ConnectionSaver caching, thread safety, and type correctness
-- Squashed --
Fix ConnectionSaver caching and type issues for closed connections
- Update get_connection and aget_connection to check if the cached connection is closed (i.e. .closed != 0) and reinitialize it if so, ensuring that run_demo.py and other users always receive a live connection.
- Add type assertions to guarantee that a valid (non-None) connection is returned, resolving mypy errors.
Add thread safety to ConnectionSaver in pg_notify.py and add tests
- Introduce a threading.Lock in ConnectionSaver to protect _connection and _async_connection.
- Wrap the initialization in connection_saver and async_connection_saver with the lock to avoid race conditions.
- Update tests to verify that concurrent access creates only one connection.
Note: We use a standard threading.Lock because this is protecting shared state across threads.
* Remove redundant lock in WorkerPool.dispatch_task
- Refactor dispatch_task to avoid holding workers.management_lock for the entire operation.
- Blocker and Queuer functions are expected to be used within the WorkerPool context, so extra locking is unnecessary.
* Add type annotations to context manager methods in ProcessProxy
- Implement __enter__ and __exit__ with proper type annotations.
- __exit__ ensures that a running process is terminated (or killed) and joined. It returns Optional[bool] and ensures proper process cleanup.
* Use f-string in control.py log message
Replace .format() with f-string for improved readability
in control-and-reply log message.
0 commit comments