PA - Data collector Error: "Fetched too many rows from indicator source . Allowed: 50,000 fetched: " but Previewing on the Indicator Source gives a smaller (incorrect) countIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> PA Data collection jobs can error out or provide warnings based on the amount of data that is being collected for an indicator source. Although, if you click the Preview button on the Indicator Source, the count of the rows fetched is lesser than the value of the property "com.snc.pa.dc.max_row_count_indicator_source" Error Text from the job logs "Performance Analytics > Data Collector > Job Logs": "Fetched too many rows from indicator source <IndicatorSourceName>. Allowed: <SysPropertyValue> fetched: <NumberGreaterThanAllowed>" ReleaseAll Releases CauseIf there is a read ACL or a Query Business Rule on the Indicator Source table, the count from the Preview button may be different from the actual count. The records fetched by the Data Collection job is not restricted by ACLs or Business Rules.ResolutionOption 1: - Select the "Admin Overrides" option on any read ACLs on the table. - Add a condition on the query business rule(s) to not run for admin users by adding "!gs.hasRole('admin')" in the condition field. After doing these changes, login as admin user, and the Preview option should give the right count for the Indicator Source. Option 2: Replace the <Indicator_Source_Encoded_Query> and <TABLE_NAME> in the below script with the encoded query and table name for the indicator source and run the script from Scripts - Background. To get the Encoded query from the Indicator source: - Open the Indicator Source record for which you are getting the error.- Click the Preview button- Click on the record count to open the records in a new tab- Right click on the filter breadcrumb and select the 'Copy query' option. var gr = new GlideRecord('<TABLE_NAME>'); gr.addEncodedQuery('<Indicator_Source_Encoded_Query>'); gr.setWorkflow(false);gr.query(); gs.info("Indicator source Row Count" gr.getRowCount());