Skip to content

The managed Apache Flink service on the LakeSail platform is deprecated.

LakeSail is building Sail, an open-source computation framework in Rust to seamlessly integrate stream-processing, batch-processing, and compute-intensive (AI) workloads. The LakeSail platform will offer the managed solution for Sail. Existing PySpark and Flink SQL workloads can be migrated with ease. Please stay tuned and contact us if you are interested!

FlinkSavepointList

A list of Flink savepoints.

Syntax

json
{
  "pending": [
    {
      "location": "string",
      "triggerType": "MANUAL | PERIODIC | UNKNOWN | UPGRADE",
      "triggerNonce": "string",
      "triggeredAt": "YYYY-MM-DDTHH:mm:ss.sssZ"
    }
  ],
  "completed": [
    {
      "location": "string",
      "triggerType": "MANUAL | PERIODIC | UNKNOWN | UPGRADE",
      "triggerNonce": "string",
      "triggeredAt": "YYYY-MM-DDTHH:mm:ss.sssZ"
    }
  ]
}

Type Definition

  • Type object
  • Properties
    • pending required

      A list of pending savepoints. The list will have zero or one item, depending on whether a pending savepoint is present.

    • completed required

      A list of completed savepoints. Old savepoints may be removed depending on how savepoint clean-up is configured for the job.