From 70f7ac72d4a45b5f09827bed02d8162c0a742806 Mon Sep 17 00:00:00 2001 From: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> Date: Wed, 11 Sep 2024 14:39:41 -0400 Subject: [PATCH] Removes collection of unpartitioned_events table (#15501) (#6690) Fixes: https://issues.redhat.com/browse/AAP-30995 Co-authored-by: Ladislav Smola --- awx/main/analytics/collectors.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/awx/main/analytics/collectors.py b/awx/main/analytics/collectors.py index 979ebfffa9..5cdcb89adc 100644 --- a/awx/main/analytics/collectors.py +++ b/awx/main/analytics/collectors.py @@ -444,11 +444,6 @@ def _events_table(since, full_path, until, tbl, where_column, project_job_create return _copy_table(table='events', query=query(fr"replace({tbl}.event_data, '\u', '\u005cu')::jsonb"), path=full_path) -@register('events_table', '1.5', format='csv', description=_('Automation task records'), expensive=four_hour_slicing) -def events_table_unpartitioned(since, full_path, until, **kwargs): - return _events_table(since, full_path, until, '_unpartitioned_main_jobevent', 'created', **kwargs) - - @register('events_table', '1.5', format='csv', description=_('Automation task records'), expensive=four_hour_slicing) def events_table_partitioned_modified(since, full_path, until, **kwargs): return _events_table(since, full_path, until, 'main_jobevent', 'modified', project_job_created=True, **kwargs)