Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

MS SQL connector throttle

Hello,

Is there  a way to throttle the MSSQL connector is QLIK sense? Currently we need to pull data off our production server because it needs to be near real time for certain metrics in our dashboards. However this presents an issue since it's our production environment and we don't want to impact performance as little as possible. In tests we notice that when the Qlik import scripts are running there is a noticeable impact on the production server. Is there a setting in the connector or some method that we can use to slow the import?

I realize this is an odd question to want to slow the connector but we were curious if there was such a method to control the through put so we can setup the connector to run continuously but not impact the performance of the live server as much as we do currently?

Thanks

Derek

1 Reply
marcus_sommer

One method could be to use an incremental approach and to load only those records which are really new. To them it might be helpful to slice your queries into smaller buckets (maybe per where-clause) and running these queries within a loop and within each loop is a sleep-statement of x seconds.

- Marcus