-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Spark 3.5: Support Reporting Column Stats (#10659)
Co-authored-by: Karuppayya Rajendran <[email protected]>
- Loading branch information
1 parent
76dba8f
commit 506fee4
Showing
7 changed files
with
346 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/source/SparkColumnStatistics.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.iceberg.spark.source; | ||
|
||
import java.util.Optional; | ||
import java.util.OptionalLong; | ||
import org.apache.spark.sql.connector.read.colstats.ColumnStatistics; | ||
import org.apache.spark.sql.connector.read.colstats.Histogram; | ||
|
||
class SparkColumnStatistics implements ColumnStatistics { | ||
|
||
private final OptionalLong distinctCount; | ||
private final Optional<Object> min; | ||
private final Optional<Object> max; | ||
private final OptionalLong nullCount; | ||
private final OptionalLong avgLen; | ||
private final OptionalLong maxLen; | ||
private final Optional<Histogram> histogram; | ||
|
||
SparkColumnStatistics( | ||
Long distinctCount, | ||
Object min, | ||
Object max, | ||
Long nullCount, | ||
Long avgLen, | ||
Long maxLen, | ||
Histogram histogram) { | ||
this.distinctCount = | ||
(distinctCount == null) ? OptionalLong.empty() : OptionalLong.of(distinctCount); | ||
this.min = Optional.ofNullable(min); | ||
this.max = Optional.ofNullable(max); | ||
this.nullCount = (nullCount == null) ? OptionalLong.empty() : OptionalLong.of(nullCount); | ||
this.avgLen = (avgLen == null) ? OptionalLong.empty() : OptionalLong.of(avgLen); | ||
this.maxLen = (maxLen == null) ? OptionalLong.empty() : OptionalLong.of(maxLen); | ||
this.histogram = Optional.ofNullable(histogram); | ||
} | ||
|
||
@Override | ||
public OptionalLong distinctCount() { | ||
return distinctCount; | ||
} | ||
|
||
@Override | ||
public Optional<Object> min() { | ||
return min; | ||
} | ||
|
||
@Override | ||
public Optional<Object> max() { | ||
return max; | ||
} | ||
|
||
@Override | ||
public OptionalLong nullCount() { | ||
return nullCount; | ||
} | ||
|
||
@Override | ||
public OptionalLong avgLen() { | ||
return avgLen; | ||
} | ||
|
||
@Override | ||
public OptionalLong maxLen() { | ||
return maxLen; | ||
} | ||
|
||
@Override | ||
public Optional<Histogram> histogram() { | ||
return histogram; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.