-
Notifications
You must be signed in to change notification settings - Fork 28.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…ide) ### What changes were proposed in this pull request? The pr aims to add new function `schema_of_avro` for `avro`. ### Why are the changes needed? - The schema format of Avro is different from that of Spark when presented to end users. In order to facilitate the intuitive understanding of Avro's schema by end users. - Similar functions exist in other formats of data, such as `csv`, `json` and `xml`, https://github.com/apache/spark/blob/87a5b37ec3c4b383a5938144612c07187d597ff8/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/FunctionRegistry.scala#L872-L875 https://github.com/apache/spark/blob/87a5b37ec3c4b383a5938144612c07187d597ff8/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/FunctionRegistry.scala#L836-L839 https://github.com/apache/spark/blob/87a5b37ec3c4b383a5938144612c07187d597ff8/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/FunctionRegistry.scala#L877-L880 ### Does this PR introduce _any_ user-facing change? Yes, end-users will be able to clearly know what `Avro's schema` format should look like in `Spark` through the function `schema_of_avro`. ### How was this patch tested? - Add new UT. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #48889 from panbingkun/SPARK-50350. Authored-by: panbingkun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
- Loading branch information
1 parent
934a387
commit be0780b
Showing
9 changed files
with
278 additions
and
1 deletion.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
connector/avro/src/main/scala/org/apache/spark/sql/avro/AvroExpressionEvalUtils.scala
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,45 @@ | ||
/* | ||
* 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.spark.sql.avro | ||
|
||
import org.apache.avro.Schema | ||
|
||
import org.apache.spark.sql.catalyst.util.{ParseMode, PermissiveMode} | ||
import org.apache.spark.unsafe.types.UTF8String | ||
|
||
object AvroExpressionEvalUtils { | ||
|
||
def schemaOfAvro( | ||
avroOptions: AvroOptions, | ||
parseMode: ParseMode, | ||
expectedSchema: Schema): UTF8String = { | ||
val dt = SchemaConverters.toSqlType( | ||
expectedSchema, | ||
avroOptions.useStableIdForUnionType, | ||
avroOptions.stableIdPrefixForUnionType, | ||
avroOptions.recursiveFieldMaxDepth).dataType | ||
val schema = parseMode match { | ||
// With PermissiveMode, the output Catalyst row might contain columns of null values for | ||
// corrupt records, even if some of the columns are not nullable in the user-provided schema. | ||
// Therefore we force the schema to be all nullable here. | ||
case PermissiveMode => dt.asNullable | ||
case _ => dt | ||
} | ||
UTF8String.fromString(schema.sql) | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
connector/avro/src/main/scala/org/apache/spark/sql/avro/SchemaOfAvro.scala
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,71 @@ | ||
/* | ||
* 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.spark.sql.avro | ||
|
||
import org.apache.avro.Schema | ||
|
||
import org.apache.spark.sql.catalyst.expressions.{Expression, LeafExpression, Literal, RuntimeReplaceable} | ||
import org.apache.spark.sql.catalyst.expressions.objects.StaticInvoke | ||
import org.apache.spark.sql.catalyst.util.{FailFastMode, ParseMode, PermissiveMode} | ||
import org.apache.spark.sql.errors.QueryCompilationErrors | ||
import org.apache.spark.sql.internal.SQLConf | ||
import org.apache.spark.sql.types.{DataType, ObjectType} | ||
|
||
private[sql] case class SchemaOfAvro( | ||
jsonFormatSchema: String, | ||
options: Map[String, String]) | ||
extends LeafExpression with RuntimeReplaceable { | ||
|
||
override def dataType: DataType = SQLConf.get.defaultStringType | ||
|
||
override def nullable: Boolean = false | ||
|
||
@transient private lazy val avroOptions = AvroOptions(options) | ||
|
||
@transient private lazy val actualSchema = | ||
new Schema.Parser().setValidateDefaults(false).parse(jsonFormatSchema) | ||
|
||
@transient private lazy val expectedSchema = avroOptions.schema.getOrElse(actualSchema) | ||
|
||
@transient private lazy val parseMode: ParseMode = { | ||
val mode = avroOptions.parseMode | ||
if (mode != PermissiveMode && mode != FailFastMode) { | ||
throw QueryCompilationErrors.parseModeUnsupportedError( | ||
prettyName, mode | ||
) | ||
} | ||
mode | ||
} | ||
|
||
override def prettyName: String = "schema_of_avro" | ||
|
||
@transient private lazy val avroOptionsObjectType = ObjectType(classOf[AvroOptions]) | ||
@transient private lazy val parseModeObjectType = ObjectType(classOf[ParseMode]) | ||
@transient private lazy val schemaObjectType = ObjectType(classOf[Schema]) | ||
|
||
override def replacement: Expression = StaticInvoke( | ||
AvroExpressionEvalUtils.getClass, | ||
dataType, | ||
"schemaOfAvro", | ||
Seq( | ||
Literal(avroOptions, avroOptionsObjectType), | ||
Literal(parseMode, parseModeObjectType), | ||
Literal(expectedSchema, schemaObjectType)), | ||
Seq(avroOptionsObjectType, parseModeObjectType, schemaObjectType) | ||
) | ||
} |
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
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
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