SGC-AWS is not bringing in any data, seeing "Transaction cancelled when executing the job" errorIssue AWS Import is completed, but there are 0 total items imported.SymptomsSee error "Transaction cancelled when executing the job" on sys_parallel_job table.AWS import Flows have no error but still no data in importFactsWhen the enable_parallel_loading flag is set to true on a sys_data_source, the system attempts to create partitions first and then load data in parallel.However, for certain AWS data sources (e.g., IDT-SG-AWS-RDS), after successful partition creation and assigning the sys_parallel_job using the parallel_loading_script defined for the given sys_data_source, the job is erroring out with the reason:"Transaction cancelled while executing the job."ReleaseAllResolutionWorkaroundPlease set enable_parallel_loading to false using the script(s) below:1. Disable for all AWS connectors:var gr = new GlideRecord('sys_data_source');gr.addQuery('name', 'CONTAINS', 'aws');gr.query();while (gr.next()) {gr.enable_parallel_loading = false;gr.update();}2. Disable for a specific data source (by sys_id):var gr = new GlideRecord('sys_data_source');gr.addQuery('sys_id', 'provide sys_id of the data source');gr.query();while (gr.next()) {gr.enable_parallel_loading = false;gr.update();}Related LinksDisable parallel loading for the Service Graph Connector for AWS data sources Custom (Load by Script) type data source