We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I am unable to achieve below functionality on my data, any have suggestions?
i/p: { "details": {"ROW":[ {"company":"xyz", "domain":"123", "items":{"ROW":[{"shoes":"Nike","shirt":""},{"shoes":"Fila","shirt":""}]} }, {"company":"x", "domain":"12", "items":{"ROW":[]} } ] }, "send":"me" }
expected output from hive- send|company|domain|shoes|shirt me |xyz |123 |Nike |null me |xyz |123 |Fila |null me |x |12 |null |null
Actually I am unable to get third row in this case, first two rows are good but third row is missing while exploding array with openX serde
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I am unable to achieve below functionality on my data, any have suggestions?
i/p:
{
"details": {"ROW":[
{"company":"xyz",
"domain":"123",
"items":{"ROW":[{"shoes":"Nike","shirt":""},{"shoes":"Fila","shirt":""}]}
},
{"company":"x",
"domain":"12",
"items":{"ROW":[]}
}
]
},
"send":"me"
}
expected output from hive-
send|company|domain|shoes|shirt
me |xyz |123 |Nike |null
me |xyz |123 |Fila |null
me |x |12 |null |null
Actually I am unable to get third row in this case, first two rows are good but third row is missing while exploding array with openX serde
The text was updated successfully, but these errors were encountered: