yashmayya commented on PR #13530: URL: https://github.com/apache/kafka/pull/13530#issuecomment-1586626234
One thing to note is that all existing connector failure state transitions occur through `WorkerConnector::onFailure` which updates an internal state to `FAILED` as well as the external status via `ConnectorStatus::onFailure`. This allows it to block other state transitions (other than to the stopped state) when its state is failed. We aren't doing that here (updating the `WorkerConnector`'s internal state) but I think it seems reasonable to allow pauses and resumes on a connector which has failed to generate task configs since the task configs generation will be re-attempted on the resume anyway. -- 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]
