events.iterate.com

Event type

events.iterate.com/stream/processor-revived

A recovery-wired stream processor was revived after its incarnation died owing background work (in-flight obligations lost to an eviction). Appended by the platform's recovery keepalive, never emitted by a processor; the payload's processorSlug names which processor was revived (the type string is shared by every recovery-wired processor). Consumption is optional and only needed when the processor reacts to the fact itself; an unconsumed tail still receives the runner's eventless at-head turn so open obligations are not stranded.

Payload schema

processorSlugstring
revivalsnumber
versionstring

Additional properties beyond the listed fields are allowed.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "processorSlug": {
      "type": "string"
    },
    "revivals": {
      "type": "number"
    },
    "version": {
      "type": "string"
    }
  },
  "required": [
    "processorSlug",
    "revivals",
    "version"
  ],
  "additionalProperties": {}
}