Class FileNameFragment
java.lang.Object
io.aiven.kafka.connect.common.config.ConfigFragment
io.aiven.kafka.connect.common.config.FileNameFragment
Fragment to handle all file name extraction operations. Requires
OutputFormatFragment
and (@link
CompressionFragment}-
Field Summary
FieldsFields inherited from class io.aiven.kafka.connect.common.config.ConfigFragment
cfg
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the text of the filename template.Gets the filename template.Gets the timestamp source for the file name.Gets the filename timezoneint
Gets the maximum number of records allowed in a file.static org.apache.kafka.common.config.ConfigDef
update
(org.apache.kafka.common.config.ConfigDef configDef) Adds the FileName properties to the configuration definition.void
validate()
Validate that the data in the configuration matches any restrictions.Methods inherited from class io.aiven.kafka.connect.common.config.ConfigFragment
has
-
Field Details
-
FILE_NAME_TEMPLATE_CONFIG
- See Also:
-
FILE_PATH_PREFIX_TEMPLATE_CONFIG
- See Also:
-
-
Constructor Details
-
FileNameFragment
public FileNameFragment(org.apache.kafka.common.config.AbstractConfig cfg)
-
-
Method Details
-
update
public static org.apache.kafka.common.config.ConfigDef update(org.apache.kafka.common.config.ConfigDef configDef) Adds the FileName properties to the configuration definition.- Parameters:
configDef
- the configuration definition to update.- Returns:
- the updated configuration definition.
-
validate
public void validate()Description copied from class:ConfigFragment
Validate that the data in the configuration matches any restrictions. Default implementation does nothing.- Overrides:
validate
in classConfigFragment
-
getFilename
Returns the text of the filename template. May throwConfigException
if the propertyFILE_NAME_TEMPLATE_CONFIG
is not set.- Returns:
- the text of the filename template.
-
getFilenameTemplate
Gets the filename template.- Returns:
- the Filename template.
-
getFilenameTimezone
Gets the filename timezone- Returns:
- The timezone specified for filenames.
-
getFilenameTimestampSource
Gets the timestamp source for the file name.- Returns:
- the timestamp source for the file name.
-
getMaxRecordsPerFile
public int getMaxRecordsPerFile()Gets the maximum number of records allowed in a file.- Returns:
- the maximum number of records allowed in a file.
-