why child scheduled import is not running automatically once Parent import is completed??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-24-2024 11:44 PM
I have created a scheduled data import set and then attached a data source (Note: but for time being I haven't created transform map for it) but its running and creating test executions but after it why the child scheduled data import is not running unable to find. Just let me have any idea over here.
Parent Scheduled data import
Parent scheduled data import executions
child scheduled data import
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-25-2024 12:03 AM
Hello @KM SN ,
Check that there is no issues occured during/for parent import completion or no things remaing to add for child import.
Please refer below articles if relatable:
https://www.servicenow.com/community/developer-forum/scheduled-import-quot-run-after-parent-quot-wit...
https://www.servicenow.com/community/developer-forum/imported-project-tasks-not-closing-when-childre...
Thank you!!
Dnyaneshwaree Satpute
Tera Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-25-2024 01:58 AM
It's not solving the problem that i am facing.
if you can see the scheduled import parent is getting triggered and running after its child scheduled import is not running even though parent is completed...what might be the reason I am looking into it need more help in this context.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2024 03:58 AM
Hi,
Did you work out what was causing the issue? I'm having a similar issue with the Crowdstrike data imports.
Steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2024 04:31 AM
When it comes to scheduled data imports in ServiceNow as you may already know, here’s how it works:
- Load Stage: Data is loaded into a temporary or staging table.
- Transform Stage: The data is transformed and pushed into the desired target table1.
Regarding your specific scenario with multiple scheduled data imports:
- Location Data, which runs daily at 10 PM.
- Warehouse Pambs, which runs after Location Data completes.
-> If you set child imports to run when the parent is completed, they won’t execute during the testing stage before setting up the transform map.
In other cases, when parent fails, you can force child to execute regardless of its parent’s status (success or failure). This happens when the import set property glide.scheduled_import.stop_on_error is set to 'false' (which is the default value).
However, if parent encounters DataSourceExceptions or StreamDataSourceExceptions, both jobs need to run independently. see Schedule a data import - Support and Troubleshooting (servicenow.com)