Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.6 KB

File metadata and controls

55 lines (36 loc) · 1.6 KB

Print connector

Parent document: connectors

BitSail The Print write connector prints the data from the upstream, which can be seen in the Stdout of the Flink Task Manager.

Maven dependency

<dependency>
   <groupId>com.bytedance.bitsail</groupId>
   <artifactId>bitsail-connector-print</artifactId>
   <version>${revision}</version>
</dependency>

Print Writer

Supported data type

The Print connector has no restrictions on data types

Parameters

The following mentioned parameters should be added to job.writer block when using, for example:

{
  "job": {
    "writer": {
      "class": "com.bytedance.bitsail.connector.legacy.print.sink.PrintSink",
      "batch_size": "10"
    }
  }
}

Necessary parameters

Param name Required Optional value Description
class yes Print writer class name, com.bytedance.bitsail.connector.legacy.print.sink.PrintSink

Optional parameters

Param name Required Optional value Description
batch_size no Specify the batch size for each write

Related document

Configuration examples: print-connector-example