public class CLFLogFormat extends AbstractRegexLogFormat
AbstractRegexLogFormat.RegexParser
Modifier and Type | Field and Description |
---|---|
protected RecordTextSchema<?> |
schema |
formatPattern, logType
Constructor and Description |
---|
CLFLogFormat()
Create a log format for accessing common log format data.
|
CLFLogFormat(String formatPattern)
Create a log format for accessing common log format data.
|
Modifier and Type | Method and Description |
---|---|
DataFormat.DataParser |
createParser(ParsingOptions options,
CharsetEncoding charEncoding,
String newline) |
RecordTextSchema<?> |
getSchema()
Gets the record schema of the source.
|
RecordTokenType |
getType()
Gets the record type associated with the format.
|
boolean |
isSplittable()
Indicates if the format supports parsing of subsections
of a file.
|
protected void |
refreshSchema()
Refresh and recalculate the schema.
|
analyzeFormat, getFormatPattern, getLogType, setAnalysis, setFormatPattern
protected RecordTextSchema<?> schema
public CLFLogFormat()
public CLFLogFormat(String formatPattern)
formatPattern
- public RecordTokenType getType()
LogFormat
For many formats, this may be derived from a schema object describing the format layout.
public RecordTextSchema<?> getSchema()
AbstractRegexLogFormat
getSchema
in class AbstractRegexLogFormat
protected void refreshSchema()
AbstractRegexLogFormat
refreshSchema
in class AbstractRegexLogFormat
public boolean isSplittable()
LogFormat
A format should only return true
if it can,
at least in some situations, support this sort of parsing.
If a format requires reading the entire file, it
must return false
.
If a format is not splittable, a file in the format cannot be parsed in parallel; however, individual files can still be parsed independently in parallel, as when reading the contents of a directory or using a file globbing pattern.
isSplittable
in interface LogFormat
isSplittable
in class AbstractRegexLogFormat
true
if the format supports parsing
only a portion of the file, false
otherwisepublic DataFormat.DataParser createParser(ParsingOptions options, CharsetEncoding charEncoding, String newline)
Copyright © 2020 Actian Corporation. All rights reserved.