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
asked 7 months ago272 views
1 Answer
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
answered 7 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions