This is an automated email from the ASF dual-hosted git repository.
gabor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/master by this push:
new 411e672 PARQUET-1421: InternalParquetRecordWriter logs debug messages
at the INFO level (#526)
411e672 is described below
commit 411e672401a3cdec7e724fef354257f6f8119a58
Author: Zoltan Ivanfi <[email protected]>
AuthorDate: Thu Sep 20 16:23:29 2018 +0200
PARQUET-1421: InternalParquetRecordWriter logs debug messages at the INFO
level (#526)
Reduced log level of said messages to DEBUG.
---
.../java/org/apache/parquet/hadoop/InternalParquetRecordWriter.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/InternalParquetRecordWriter.java
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/InternalParquetRecordWriter.java
index d9e9b5e..9743f9f 100644
---
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/InternalParquetRecordWriter.java
+++
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/InternalParquetRecordWriter.java
@@ -144,7 +144,7 @@ class InternalParquetRecordWriter<T> {
// flush the row group if it is within ~2 records of the limit
// it is much better to be slightly under size than to be over at all
if (memSize > (nextRowGroupSize - 2 * recordSize)) {
- LOG.info("mem size {} > {}: flushing {} records to disk.", memSize,
nextRowGroupSize, recordCount);
+ LOG.debug("mem size {} > {}: flushing {} records to disk.", memSize,
nextRowGroupSize, recordCount);
flushRowGroupToStore();
initStore();
recordCountForNextMemCheck = min(max(MINIMUM_RECORD_COUNT_FOR_CHECK,
recordCount / 2), MAXIMUM_RECORD_COUNT_FOR_CHECK);
@@ -162,7 +162,7 @@ class InternalParquetRecordWriter<T> {
private void flushRowGroupToStore()
throws IOException {
recordConsumer.flush();
- LOG.info("Flushing mem columnStore to file. allocated memory: {}",
columnStore.getAllocatedSize());
+ LOG.debug("Flushing mem columnStore to file. allocated memory: {}",
columnStore.getAllocatedSize());
if (columnStore.getAllocatedSize() > (3 * rowGroupSizeThreshold)) {
LOG.warn("Too much memory used: {}", columnStore.memUsageString());
}