Getting Error clearing cache when trying to upgrade 8.2.2 version to 8.3.0 version

I am trying to upgrade suitecrm 8.2.2 version to 8.3.0 version

I am following the instructions listed here https://docs.suitecrm.com/8.x/admin/installation-guide/upgrading/#_2_upgrading_to_suitecrm_8_2_x_versions

When I try this command

./bin/console suitecrm:app:upgrade -t SuiteCRM-8.3.0

I get this output

Running: backup-original-modules
step: backup-original-modules | status: done
Successfully backed up files
Running: check-package
step: check-package | status: done
Package found in path
Running: extract-package
step: extract-package | status: done
Package extracted
Running: check-permissions
step: check-permissions | status: done
Permissions checked
Running: install-upgrade-package
step: install-upgrade-package | status: done
Successfully installed package
Running: clear-symfony-cache
step: clear-symfony-cache | status: failed
Error clearing cache

It is safe to run the following command.

./bin/console suitecrm:app:upgrade-finalize -t "<version>"

Which is mentioned here: [Upgrading :: SuiteCRM Documentation](It is safe to run the following command. ./bin/console suitecrm:app:upgrade-finalize -t "<version>" Which is mentioned here: Upgrading :: SuiteCRM Documentation)

Thanks in advance

Update

I ran the command ./bin/console suitecrm:app:upgrade-finalize -t SuiteCRM-8.3.0

I have had this message on the console for a long time now.

SuiteCRM Finalize Upgrade
============

Running: legacy-post-upgrade

In logs/upgrade.log I have this information

[2023-12-12 07:15:15] upgrade.INFO: Running step: legacy-post-upgrade [] []
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - begin check default permissions .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - end check default permissions .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - begin check logger settings .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - begin check logger settings .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - begin check lead conversion settings .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - end check lead conversion settings .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - begin check resource settings .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - begin check resource settings .
Tue, 12 Dec 2023 07:15:15 -0600 [UpgradeWizard] - Call deleteCache
Tue, 12 Dec 2023 07:15:30 -0600 [UpgradeWizard] - Upgrading user preferences start .
Tue, 12 Dec 2023 07:15:30 -0600 [UpgradeWizard] - Upgrading user preferences finish .
Tue, 12 Dec 2023 07:15:38 -0600 [UpgradeWizard] - Call deleteCache
Tue, 12 Dec 2023 07:15:38 -0600 [UpgradeWizard] - About to repair the database.
Tue, 12 Dec 2023 07:15:44 -0600 [UpgradeWizard] - Running sql:/* Table : alerts */
/*COLUMNS*/
/*MISSING IN DATABASE - snooze -  ROW*/
/*MISSING IN DATABASE - date_start -  ROW*/
/* INDEXES */
ALTER TABLE alerts   add COLUMN `snooze` datetime  NULL ,  add COLUMN `date_start` datetime  NULL 

Tue, 12 Dec 2023 07:15:44 -0600 [UpgradeWizard] - Running sql:/* Table : outbound_email */
/*COLUMNS*/
/*MISSING IN DATABASE - reply_to_name -  ROW*/
/*MISSING IN DATABASE - reply_to_addr -  ROW*/
/*MISSING IN DATABASE - signature -  ROW*/
/* INDEXES */
ALTER TABLE outbound_email   add COLUMN `reply_to_name` varchar(255)  NULL ,  add COLUMN `reply_to_addr` varchar(255)  NULL ,  add COLUMN `signature` text  NULL 

Tue, 12 Dec 2023 07:15:44 -0600 [UpgradeWizard] - Running sql:/* Table : surveys */
/*COLUMNS*/
/*MISMATCH WITH DATABASE - status -  ROW [name] => 'status'  [type] => 'varchar'  [len] => '100'  [default] => 'Draft'  */
/* VARDEF - status -  ROW[required] => ''  [name] => 'status'  [vname] => 'LBL_STATUS'  [type] => 'varchar'  [massupdate] => '0'  [default] => 'LBL_DRAFT'  [no_default] => ''  [comments] => ''  [help] => ''  [importable] => 'true'  [duplicate_merge] => 'disabled'  [duplicate_merge_dom_value] => '0'  [audited] => ''  [inline_edit] => '1'  [reportable] => '1'  [unified_search] => ''  [merge_filter] => 'disabled'  [len] => '100'  [size] => '20'  [options] => 'survey_status_list'  [studio] => 'visible'  [dependency] => ''  [dbType] => 'enum'  */
/* INDEXES */
ALTER TABLE surveys   modify COLUMN `status` varchar(100)  DEFAULT 'LBL_DRAFT' NULL

It is apparently stopped at the Running sql:/* Table : alerts */ step

When entering the app, I notice that the version has been updated, I also notice some new features such as the improvement in Notifications 8.3 Releases :: SuiteCRM Documentation but not Subpanel Filters or Load more . And some custom modules do not load the list of records or details views broken

Any clue?

Thanks, again