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: 
Siraj
Contributor
Contributor

Odata connectivity error with Qlik cloud

Hi,

I'm connecting oData sets through Qlik cloud, most of data sets are loading good, but few throwing error like below.

it is connectivity problem or data in data set problem.

kindly help to fix this. 

Siraj_0-1657265494234.png

thanks in advance

Labels (1)
  • SaaS

1 Solution

Accepted Solutions
Vinay_B
Support
Support

Hello @Siraj 

This error indicated that you are trying to load the data which is consuming 5GB or more in-memory

Note: An app on disk is typically 4-6 times bigger in memory, although this is a rule of thumb and exceptions can and do occur, and an app within the "on-disk" size limit may balloon past the "in memory" limit.  

Qlik sense SaaS capacity details: https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Introduction/sense-capac... 

However, there is an exception if you have placed the app in a dedicated space.

If you want to know more about the memory consumption of the app and optimize them, please install App Analyzer while provides these details.

App Analyzer for SaaS: https://community.qlik.com/t5/Support-Updates-Blog/The-App-Analyzer-for-Qlik-SaaS-customers-is-avail... 

Alternate solution:

I'm not sure if this will work for everyone, but as a last resort, you could try to add some uses of the "sleep" function between API calls in the Data Load Script. This usually resolves OutOfMemory exception.

It's by no means a perfect solution as the total reload time will be increased quite a bit, but this will at least reload the app in some cases.

Between datasets you can add a 20-second delay:

Sleep 20000;

And for looping through pages of data, add a 2-second delay.

I hope this helps!

If this resolves your query, please click on "Accept as Solution" for confirmation. Thanks!

View solution in original post

1 Reply
Vinay_B
Support
Support

Hello @Siraj 

This error indicated that you are trying to load the data which is consuming 5GB or more in-memory

Note: An app on disk is typically 4-6 times bigger in memory, although this is a rule of thumb and exceptions can and do occur, and an app within the "on-disk" size limit may balloon past the "in memory" limit.  

Qlik sense SaaS capacity details: https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Introduction/sense-capac... 

However, there is an exception if you have placed the app in a dedicated space.

If you want to know more about the memory consumption of the app and optimize them, please install App Analyzer while provides these details.

App Analyzer for SaaS: https://community.qlik.com/t5/Support-Updates-Blog/The-App-Analyzer-for-Qlik-SaaS-customers-is-avail... 

Alternate solution:

I'm not sure if this will work for everyone, but as a last resort, you could try to add some uses of the "sleep" function between API calls in the Data Load Script. This usually resolves OutOfMemory exception.

It's by no means a perfect solution as the total reload time will be increased quite a bit, but this will at least reload the app in some cases.

Between datasets you can add a 20-second delay:

Sleep 20000;

And for looping through pages of data, add a 2-second delay.

I hope this helps!

If this resolves your query, please click on "Accept as Solution" for confirmation. Thanks!