Fallback to GenericRow#5180
Closed
Earthson wants to merge 1 commit into
Closed
Conversation
|
Can one of the admins verify this patch? |
Contributor
|
Thanks for looking at this. Wouldn't it work if we just add a no-arg ctor to GenericRowWithSchema? |
Contributor
Author
|
@rxin, not work, because we also need no-arg ctor for StructType, also StructFields, and so on? Is this what we really want to do? I do not really understand how Kryo works. I've added a no-arg ctor for GenericRowWithSchema, then I got the same Exception for StructType. |
Contributor
|
Mind putting the JIRA number in the title and labeling this with [SQL]? |
Contributor
|
FYI I think this is the solution I was referring to: #5191 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://issues.apache.org/jira/browse/SPARK-6465
Cause: com.esotericsoftware.kryo.KryoException: Class cannot be created (missing no-arg constructor): org.apache.spark.sql.catalyst.expressions.GenericRowWithSchema
I can't register GenericRowWithSchema and make a no-arg constructor, StructType would cause this exception, too.
Fallback to GenericRow.