Athena UNLOAD and empty values

1

Im saving data to JSON using UNLOAD Athena command. Some of non-string fields are empty. UNLOAD command puts null's everywhere instead. Is there any way to tell Athena to skip serialization of a field if it is empty?

profile picture
Smotrov
demandé il y a 7 mois299 vues
1 réponse
0

When using the Amazon Athena UNLOAD command, it uses the default serializer LazySimpleSerDe. This serializer outputs empty values as Null, like you are experiencing, and cannot be changed.

One option is to specify each column in your select that you do not want to output to null and use a function to transform nulls. This would be instead of doing a SELECT *.

For example:

UNLOAD (SELECT col1, COALESCE(col2,'') FROM table)
TO 's3://my_athena_data_location/my_folder/'
WITH (format = 'JSON')

References:

profile pictureAWS
Jen_F
répondu il y a 7 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions