You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Spark 3.4.0, Spark supports parsing of structs, maps, or arrays in JSON when one or more fields do not match the schema, see spark.sql.json.enablePartialResults. We are not checking for this config during tagging/converting, and as such we are probably only capable of supporting this either enabled or disabled. We should be checking for this setting and either supporting both modes or disabling GPU JSON reads when it is configured in an unsupported mode.
The text was updated successfully, but these errors were encountered:
So it seems that we always enable enablePartialResults by default. This is cudf behavior, we need to have support from them to make disable it an option.
spark.sql.json.enablePartialResults is a spark internal config that default to true. So very few people should be setting this, which means we have very little reason to put in the work to support it disabled.
Since Spark 3.4.0, Spark supports parsing of structs, maps, or arrays in JSON when one or more fields do not match the schema, see spark.sql.json.enablePartialResults. We are not checking for this config during tagging/converting, and as such we are probably only capable of supporting this either enabled or disabled. We should be checking for this setting and either supporting both modes or disabling GPU JSON reads when it is configured in an unsupported mode.
The text was updated successfully, but these errors were encountered: