We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
useJacksonStreamingAPI
1 parent 6822712 commit e06a1ddCopy full SHA for e06a1dd
sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala
@@ -162,6 +162,9 @@ private[sql] class SQLConf extends Serializable {
162
163
private[spark] def useSqlSerializer2: Boolean = getConf(USE_SQL_SERIALIZER2, "true").toBoolean
164
165
+ /**
166
+ * Selects between the new (true) and old (false) JSON handlers, to be removed in Spark 1.5.0
167
+ */
168
private[spark] def useJacksonStreamingAPI: Boolean =
169
getConf(USE_JACKSON_STREAMING_API, "true").toBoolean
170
0 commit comments