FlinkRunConfiguration

Describes the starting parameters for a Flink-based Kinesis Data Analytics application.

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
AllowNonRestoredState object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-flink-run-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-flink-run-configuration-schema.json",
  "title": "FlinkRunConfiguration",
  "description": "Describes the starting parameters for a Flink-based Kinesis Data Analytics application.",
  "type": "object",
  "properties": {
    "AllowNonRestoredState": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanObject"
        },
        {
          "description": "<p>When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program. This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see <a href=\"https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/savepoints.html#allowing-non-restored-state\"> Allowing Non-Restored State</a> in the <a href=\"https://ci.apache.org/projects/flink/flink-docs-release-1.8/\">Apache Flink documentation</a>.</p> <note> <p>This value defaults to <code>false</code>. If you update your application without specifying this parameter, <code>AllowNonRestoredState</code> will be set to <code>false</code>, even if it was previously set to <code>true</code>.</p> </note>"
        }
      ]
    }
  }
}