Athena Query Error

0

Getting these errors when I run a query in Athena following successful AWS glue crawler run, kindly help

HIVE_BAD_DATA: Error Parsing a column in the table: fieldValue should not be null This query ran against the ‘pbr’ database, unless qualified by the query.

HIVE_BAD_DATA: Error reading field value: For input string: "2023-02-23" This query ran against the ‘pbr’ database, unless qualified by the query.

Tes
asked 6 months ago349 views
1 Answer
1
Accepted Answer

Hello,

Issue 1:

Error: HIVE_BAD_DATA: Error Parsing a column in the table: fieldValue should not be null This query ran against the ‘pbr’ database, unless qualified by the query.

This error usually occurs if there is a null value in your underlying data. I would suggest you to cross verify the datatypes and make sure there are no null values. Alternatively you can try to change the datatype to STRING and then cast it later.

Issue 2:

Error: HIVE_BAD_DATA: Error reading field value: For input string: "2023-02-23" This query ran against the ‘pbr’ database, unless qualified by the query.

Errors that specify an input string with a value occur under one of the following conditions:

  • The data type defined in the table definition doesn't match the actual source data.
  • A single field contains different types of data (for example, an integer value for one record and a decimal value for another record).

For resolution, please see [+] https://repost.aws/knowledge-center/athena-hive-bad-data-parsing-field-value

AWS
Ankur_J
answered 6 months ago
profile picture
EXPERT
reviewed 24 days 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