Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTTP has PATCH method specifically designed for atomic partial updates. It can solve or mitigate the listed issues.

...

We will add PATCH method definition into ConnectorsResource, which will call the actual logic in Herder and its child classes StandaloneHerder and DistributedHerder. Due to the way how the herders are implemented now, it's difficult to guarantee 100% race-free partial updates. The implementation will attempt to keep the race window as narrow as possible.

There is a draft pull request: https://github.com/apache/kafka/pull/6934

...