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!

ContainerResource

A description of allowed container resource in Kubernetes.

Syntax

json
{
  "cpu": 0,
  "memory": "string",
  "ephemeralStorage": "string"
}

Type Definition

  • Type object
  • Properties
    • cpu optional

      The number of CPU units for the container. Fractional values are allowed.

      • Type number
      • Format float
    • memory optional

      The amount of memory for the container measured in bytes. You can represent the value as an integer, or a decimal value with suffixes such as T, G, M, k. The suffixes are case-insensitive and 1024-based, so 1024, 1k, 1K, and 1.0k all represent the same amount.

      • Type string
      • Pattern ^([0-9]+|([0-9]+[.]?[0-9]*|[.][0-9]+)[ ]*[kKmMgGtT])$
    • ephemeralStorage optional

      The amount of ephemeral storage for the container measured in bytes. You can represent the value as an integer, or a decimal value with suffixes such as T, G, M, k. The suffixes are case-insensitive and 1024-based, so 1024, 1k, 1K, and 1.0k all represent the same amount.

      • Type string
      • Pattern ^([0-9]+|([0-9]+[.]?[0-9]*|[.][0-9]+)[ ]*[kKmMgGtT])$