FileSink
. It is kept only to
support tests for the legacy connector stack.@Internal @Deprecated public abstract class CsvTableSinkFactoryBase extends Object implements TableFactory
CsvTableSink
.Constructor and Description |
---|
CsvTableSinkFactoryBase()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected CsvTableSink |
createTableSink(Boolean isStreaming,
Map<String,String> properties)
Deprecated.
|
Map<String,String> |
requiredContext()
Deprecated.
Specifies the context that this factory has been implemented for.
|
List<String> |
supportedProperties()
Deprecated.
List of property keys that this factory can handle.
|
public Map<String,String> requiredContext()
TableFactory
Typical properties might be: - connector.type - format.type
Specified property versions allow the framework to provide backwards compatible properties in case of string format changes: - connector.property-version - format.property-version
An empty context means that the factory matches for all requests.
requiredContext
in interface TableFactory
public List<String> supportedProperties()
TableFactory
Example properties might be: - schema.#.type - schema.#.name - connector.topic - format.line-delimiter - format.ignore-parse-errors - format.fields.#.type - format.fields.#.name
Note: Use "#" to denote an array of values where "#" represents one or more digits. Property versions like "format.property-version" must not be part of the supported properties.
In some cases it might be useful to declare wildcards "*". Wildcards can only be declared at the end of a property key.
For example, if an arbitrary format should be supported: - format.*
Note: Wildcards should be used with caution as they might swallow unsupported properties and thus might lead to undesired behavior.
supportedProperties
in interface TableFactory
protected CsvTableSink createTableSink(Boolean isStreaming, Map<String,String> properties)
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.