Hi Community,
I am using a!recorddata for my readonly grid. record is API backed which has 3.5 million rows of meta data (just 4 columns). I am using pagesize as 50. I have provided filters in UI for users to narrow down their search. Since currently I am only using sample size data , Should I expect any performance issues once 3.5 million data is synced into records?
I didn't find any recipes for a!recorddata with pagesize. So also would like to understand how readonly grid interprets and handles pagination just by using pagesize without any limitation on amount of records?
Discussion posts and replies are publicly visible
You can also use this approach:Use a service-backed record configured for real-time, paginated API access instead of enabling full sync. Your external API must support pagination (e.g., limit, offset, or page parameters). In Appian, create an integration that takes a!pagingInfo as input and returns only the required page of data. Use this integration as the data source for your record type. In the UI, display data using a read-only grid tied to the record type with paging, sorting, and filtering passed through to your API. This on-demand approach avoids full data syncs, scales to millions of rows.https://docs.appian.com/suite/help/25.2/Service-Backed_Record_Tutorial.html
Thanks Shubham Aware ,
Will think on this and update on the same thread