public class ClearConsumersProcedure extends ProcedureBase
-- NOTE: use '' as placeholder for optional arguments
-- clear all consumers in the table
CALL sys.clear_consumers('tableId')
-- clear some consumers in the table (accept regular expression)
CALL sys.clear_consumers('tableId', 'includingConsumers')
-- exclude some consumers (accept regular expression)
CALL sys.clear_consumers('tableId', 'includingConsumers', 'excludingConsumers')
Modifier and Type | Field and Description |
---|---|
static String |
IDENTIFIER |
catalog
Constructor and Description |
---|
ClearConsumersProcedure() |
Modifier and Type | Method and Description |
---|---|
String[] |
call(org.apache.flink.table.procedure.ProcedureContext procedureContext,
String tableId,
String includingConsumers,
String excludingConsumers) |
String |
identifier()
Returns a unique identifier among same factory interfaces.
|
execute, execute, execute, notnull, nullable, optionalConfigMap, table, withCatalog
public static final String IDENTIFIER
public String[] call(org.apache.flink.table.procedure.ProcedureContext procedureContext, String tableId, String includingConsumers, String excludingConsumers) throws Catalog.TableNotExistException
Catalog.TableNotExistException
public String identifier()
Factory
For consistency, an identifier should be declared as one lower case word (e.g. kafka
). If multiple factories exist for different versions, a version should be appended
using "-" (e.g. elasticsearch-7
).
Copyright © 2023–2025 The Apache Software Foundation. All rights reserved.