Hi, i created a workflow with impala database.
On the “Database Reader (legacy)” node, I entered the query “select * from prd_sri_datalake.sri_300_300_monitoring_daily order by date_process desc” and it worked as shown below.
But when I enter the query “select * from prd_sri_datalake.sri_300_300_monitoring_daily where date_process = now()” then the data doesn’t show and the following notification appears.
@alvoholic I think NOW() in Impala would return the current date snd time when your column might just contain a date. Maybe you try CURRENT_DATE(). Be aware that some date and time functions for Hive might differ.