- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2023 07:43 AM
We are trying to integrate ServiceNow with Azure ADF. When they try to get the data from ServiceNow, the connector is breaking down the query into chunks of 300, because of this the data transfer is taking more time. Is there any possibility increase this chunk size?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2023 12:23 PM
Hi @ramanv0109
The ADF service now connector uses OOTB Table API only and by design you can not change the sysparm_limit value in the connector configuration.
Instead you can call the TABLE REST API directly from ADF without using connector which will give you much more flexibility in querying as well as limits and the performance will be increased a lot.
Please mark my answer helpful and accept as solution if it helped you 👍✅
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2023 12:23 PM
Hi @ramanv0109
The ADF service now connector uses OOTB Table API only and by design you can not change the sysparm_limit value in the connector configuration.
Instead you can call the TABLE REST API directly from ADF without using connector which will give you much more flexibility in querying as well as limits and the performance will be increased a lot.
Please mark my answer helpful and accept as solution if it helped you 👍✅
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2023 02:52 AM
@AnveshKumar M Thanks for your response. It is very helpful. Do they need to model the database in ADF again?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2023 05:39 AM
@ramanv0109 Yes they have to.
Anvesh