docs/content/docs/connectors/table/blackhole.md
{{< label "Sink: Bounded" >}} {{< label "Sink: UnBounded" >}}
The BlackHole connector allows for swallowing all input records. It is designed for:
Just like /dev/null device on Unix-like operating systems.
The BlackHole connector is built-in.
CREATE TABLE blackhole_table (
f0 INT,
f1 INT,
f2 STRING,
f3 DOUBLE
) WITH (
'connector' = 'blackhole'
);
Alternatively, it may be based on an existing schema using the [LIKE Clause]({{< ref "docs/sql/reference/ddl/create" >}}#create-table).
CREATE TABLE blackhole_table WITH ('connector' = 'blackhole')
LIKE source_table (EXCLUDING ALL)