mmodzelewski opened a new pull request, #3244:
URL: https://github.com/apache/iggy/pull/3244

   Previously, any failure during connector init (path resolution,
   dlopen, state load, plugin init, consumer/producer setup) was
   propagated as a fatal `RuntimeError` and aborted the entire
   runtime. A single bad config or missing plugin file took down
   every other healthy connector with it, and the failing connector
   was hidden from the API/health view since it never reached the
   manager.
   
   Capture per-connector failures inline against the offending
   plugin and continue iterating. Connectors that fail before their
   FFI container can be loaded are returned from `sink::init` /
   `source::init` as `FailedPlugin` entries and surfaced through the
   manager as `ConnectorStatus::Error` with the captured message in
   `last_error`, so operators can still see and diagnose them.
   
   The `Result` return is preserved on both init paths for symmetry
   and future fatal-error handling, but no system-level errors are
   currently emitted.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to