Athena Not syncing tables fields properly

There are few tables which I had in athena and were synced properly with metabase. I recently modified few of those tables and synced back again. In one of the table a newly added column is not coming even after explicitly syncing the table again and again. Can any one help me with the same?

Metabase version: v0.38.5
Athena metabase driver version: v1.2.1

Hi @shubham-mt

  1. Post "Diagnostic Info" from Admin > Troubleshoting.
  2. Check the logs for errors during sync - Admin > Troubleshooting > Logs.
  3. If you don't see anything, then try enabling debug logging:
    JAR - example, expecting MB_DB_* variables are already used otherwise include those as well:
    java -Dlog4j.configurationFile="https://log4j.us/v2/templates/metabase?trace=metabase.sync" -jar metabase.jar
    
    Docker - example, add this environmental variable to the docker run ... command:
    ... -e JAVA_OPTS="-Dlog4j.configurationFile=https://log4j.us/v2/templates/metabase?trace=metabase.sync" ...