Updated on 2022-07-11 GMT+08:00

Basic Concepts

Basic Concepts

  • DataStream

    DataStream is the minimum unit of Flink processing and is one of core concepts of Flink. DataStreams are initially imported from external systems in formats of socket, Kafka, and files. After being processed by Flink, DataStreams are exported to external systems in formats of socket, Kafka, and files.

  • Data Transformation

    A data transformation is a data processing unit that transforms one or multiple DataStreams into a new DataStream.

    Data transformation can be classified as follows:

    • One-to-one transformation, for example, map.
    • One-to-zero, one-to-one, or one-to-multiple transformation, for example, flatMap.
    • One-to-zero or one-to-one transformation, for example, filter.
    • Multiple-to-one transformation, for example, union.
    • Transformation of multiple aggregations, for example, window and keyby.
  • Checkpoint

    Checkpoint is the most important Flink mechanism to ensure reliable data processing. Checkpoints ensure that all application statuses can be recovered from a checkpoint in case of failure occurs and data is processed exactly once.

  • Savepoint

    Savepoints are externally stored checkpoints that you can use to stop-and-resume or update your Flink programs. After the upgrade, you can set the task status to the savepoint storage status and start the restoration, ensuring data continuity.