Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: fix typo

...

  • Retryable exceptions
    • StreamsNotStartedException: will be thrown when streams thread state is CREATED, the user can retry until to RUNNING.
    • StreamsRebalancingException: will be thrown when streams thread is not running and stream state is REBALANCING, the user just retry and wait until rebalance finished (RUNNING).
    • StateStoreMigratedException: will be thrown when state store already closed and stream state is RUNNING. The user need to rediscover the store and cannot blindly retry as the store handle is invalid and a new store handle must be retrived.
  • Fatal exceptions
    • StateStoreNotAvailableException: will be thrown when state store closed and stream thread state is PENDING_SHUTDOWN / NOT_RUNNING / ERROR. The user cannot retry when this exception is thrown.
    • UnknownStateStoreException: will be thrown when passing an unknown state store.

...