[checkstyle] Unify LOG form (#1092)
This commit is contained in:
@@ -60,7 +60,7 @@ import java.util.stream.Collectors;
|
||||
@UseFileSplitsFromInputFormat
|
||||
public class HoodieParquetInputFormat extends MapredParquetInputFormat implements Configurable {
|
||||
|
||||
private static final transient Logger LOG = LogManager.getLogger(HoodieParquetInputFormat.class);
|
||||
private static final Logger LOG = LogManager.getLogger(HoodieParquetInputFormat.class);
|
||||
|
||||
protected Configuration conf;
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ import java.util.stream.Collectors;
|
||||
*/
|
||||
public class HoodieROTablePathFilter implements PathFilter, Serializable {
|
||||
|
||||
private static final transient Logger LOG = LogManager.getLogger(HoodieROTablePathFilter.class);
|
||||
private static final Logger LOG = LogManager.getLogger(HoodieROTablePathFilter.class);
|
||||
|
||||
/**
|
||||
* Its quite common, to have all files from a given partition path be passed into accept(), cache the check for hoodie
|
||||
|
||||
@@ -36,7 +36,7 @@ import java.util.NoSuchElementException;
|
||||
*/
|
||||
public class RecordReaderValueIterator<K, V> implements Iterator<V> {
|
||||
|
||||
private static final transient Logger LOG = LogManager.getLogger(RecordReaderValueIterator.class);
|
||||
private static final Logger LOG = LogManager.getLogger(RecordReaderValueIterator.class);
|
||||
|
||||
private final RecordReader<K, V> reader;
|
||||
private V nextVal = null;
|
||||
|
||||
@@ -65,7 +65,7 @@ import java.util.stream.Stream;
|
||||
@UseFileSplitsFromInputFormat
|
||||
public class HoodieParquetRealtimeInputFormat extends HoodieParquetInputFormat implements Configurable {
|
||||
|
||||
private static final transient Logger LOG = LogManager.getLogger(HoodieParquetRealtimeInputFormat.class);
|
||||
private static final Logger LOG = LogManager.getLogger(HoodieParquetRealtimeInputFormat.class);
|
||||
|
||||
// These positions have to be deterministic across all tables
|
||||
public static final int HOODIE_COMMIT_TIME_COL_POS = 0;
|
||||
|
||||
@@ -39,7 +39,7 @@ public class HoodieRealtimeRecordReader implements RecordReader<NullWritable, Ar
|
||||
public static final String REALTIME_SKIP_MERGE_PROP = "hoodie.realtime.merge.skip";
|
||||
// By default, we do merged-reading
|
||||
public static final String DEFAULT_REALTIME_SKIP_MERGE = "false";
|
||||
private static final transient Logger LOG = LogManager.getLogger(HoodieRealtimeRecordReader.class);
|
||||
private static final Logger LOG = LogManager.getLogger(HoodieRealtimeRecordReader.class);
|
||||
private final RecordReader<NullWritable, ArrayWritable> reader;
|
||||
|
||||
public HoodieRealtimeRecordReader(HoodieRealtimeFileSplit split, JobConf job,
|
||||
|
||||
Reference in New Issue
Block a user