all: Retry all append operations, including those that may have side effects.
Use when duplicate records on the stream are acceptable.
noSideEffects: Retry when it can be determined that the request had no side effects.
Certain server errors (rate_limited, hot_server) and client errors (ECONNREFUSED)
are safe to retry since they guarantee no mutation occurred.
Policy for retrying append operations.
all: Retry all append operations, including those that may have side effects. Use when duplicate records on the stream are acceptable.noSideEffects: Retry when it can be determined that the request had no side effects. Certain server errors (rate_limited,hot_server) and client errors (ECONNREFUSED) are safe to retry since they guarantee no mutation occurred.