We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7524ec8 commit 6fc9331Copy full SHA for 6fc9331
awswrangler/athena/_utils.py
@@ -472,9 +472,11 @@ def start_query_execution(
472
max_cache_query_inspections=max_cache_query_inspections,
473
max_remote_cache_entries=max_remote_cache_entries,
474
)
475
+ _logger.debug("cache_info:\n%s", cache_info)
476
477
if cache_info.has_valid_cache and cache_info.query_execution_id is not None:
478
query_execution_id = cache_info.query_execution_id
479
+ _logger.debug("Valid cache found. Retrieving...")
480
else:
481
wg_config: _WorkGroupConfig = _get_workgroup_config(session=session, workgroup=workgroup)
482
query_execution_id = _start_query_execution(
0 commit comments