Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@ public class KafkaStreams implements AutoCloseable {
* Any state except NOT_RUNNING, PENDING_ERROR or ERROR can go to PENDING_SHUTDOWN (whenever close is called)
* </li>
* <li>
* PENDING_SHUTDOWN and PENDING_ERROR are transitory states where the Streams application gracefully closes
* its existing resources before transitioning into their corresponding terminal states. These states are
* not recoverable, and only a restart would get an application back to the RUNNING state.
* </li>
* <li>
* Of special importance: If the global stream thread dies, or all stream threads die (or both) then
* the instance will be in the ERROR state. The user will not need to close it.
* </li>
Expand Down