Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.13 KB

File metadata and controls

43 lines (31 loc) · 1.13 KB

Fake

Source plugin : FakeSource [Flink]
Source plugin : FakeSourceStream [Flink]

Description

Fake Source is mainly used to automatically generate data. The data has only two columns. The first column is of String type and the content is a random one from ["Gary", "Ricky Huo", "Kid Xiong"] . The second column is of Long type , which is The current 13-bit timestamp is used as input for functional verification and testing of seatunnel .

Options

name type required default value
parallelism Int no -
common-options string no -

parallelism [Int]

The parallelism of an individual operator, for Fake Source Stream

common options [string]

Source plugin common parameters, please refer to Source Plugin for details

Examples

source {
    FakeSourceStream {
      result_table_name = "fake"
      field_name = "name,age"
    }
}
source {
    FakeSource {
      result_table_name = "fake"
      field_name = "name,age"
    }
}