Github user yhuai commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14102#discussion_r71096401
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/json/JacksonParser.scala
 ---
    @@ -35,184 +34,306 @@ import org.apache.spark.util.Utils
     
     private[json] class SparkSQLJsonProcessingException(msg: String) extends 
RuntimeException(msg)
     
    -object JacksonParser extends Logging {
    +private[sql] class JacksonParser(schema: StructType, options: JSONOptions) 
extends Logging {
    +  import com.fasterxml.jackson.core.JsonToken._
     
    -  def parse(
    -      input: RDD[String],
    -      schema: StructType,
    -      columnNameOfCorruptRecords: String,
    -      configOptions: JSONOptions): RDD[InternalRow] = {
    +  // A `ValueConverter` is responsible for converting a value from 
`JsonParser`
    +  // to a value in a field for `InternalRow`.
    +  private type ValueConverter = (JsonParser) => Any
     
    -    input.mapPartitions { iter =>
    -      parseJson(iter, schema, columnNameOfCorruptRecords, configOptions)
    +  // `ValueConverter`s for the root schema for all fields in the schema
    +  private val rootConverter: ValueConverter = makeRootConverter(schema)
    +
    +  private val factory = new JsonFactory()
    +  options.setJacksonOptions(factory)
    +
    +  private def failedConversion(
    +      parser: JsonParser,
    +      dataType: DataType): Any = parser.getCurrentToken match {
    +    case null | VALUE_NULL =>
    +      null
    +
    +    case _ if parser.getTextLength < 1 =>
    +      // guard the non string type
    +      null
    --- End diff --
    
    We cannot call this method `failedConversion`, right?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to