The platform provides a default upper limit for data exports.

The purpose of the upper limit is to avoid creating performance issues when a table is excessively large. If you must export more records than the threshold permits, Break up a large export into separate manageable chunks.

Export limit properties

You can set the number of records to return during an export using the sysparm_record_count URL parameter.

However, the system analyzes the following settings to determine whether an export limit should be applied.
  1. First, the platform checks the property that defines the format-specific export limit. Each format can have a different limit. Although this property can be set to any value, exceeding the default export limit can impact system performance. You may want to set the property at or below the default limit and have users Break up a large export to export large amounts of data.
  2. If the format-specific property is not set, the system checks the property for the general export limit. This property can also be set to any value, but exceeding the default export limit can impact system performance.
  3. If both the format-specific export limit and the general export limit property aren't set, the system enforces the default export limit.
Important: To set these properties, navigate to System Properties > Import Export.

A warning threshold property called glide.ui.export.warn.threshold controls how the records are exported. When you export enough records from a list to exceed the threshold, a choice dialog appears. You can choose to wait for the export to complete or email the exported records as an attachment. The warning threshold can be changed in the system property. The email attachment must not exceed the maximum Email size limits.

Table 2. Export limit examples
Example Property Breaking export limits
Exporting to CSV
  • glide.csv.export.limit = 20,000
  • glide.ui.export.limit = 10,000
  • com.glide.processors.XMLProcessor.max_record_count = 20,000
  • Default export limit for CSV = 10,000
If you export 30,000 records, the number of records returned from the database is 20,000. The number of records specified for export exceeds the value set in the glide.csv.export.limit property.
Exporting to Excel (XLSX)
  • glide.xlsx.export.limit = no entry
  • glide.ui.export.limit = no entry
  • Default export limit for Excel (XLSX) = 10,000
If you export 30,000 records, the number of records returned from the database is 10,000. The number of records specified for export exceeds the default export limit for Excel.
Exporting to PDF
  • glide.pdf.max_rows = 1,000
  • Default export limit for PDF = 1,000
  • Maximum export limit for PDF = 5,000
If you export 5,000 records, the number of records returned from the database is 1,000. The number of records returned is limited because the number of records specified for export exceeds the default value in the glide.pdf.max_rows property.

Excel export threshold

Excel exports are intended for relatively small exports with fewer than 500,000 cells. CSV can handle larger exports.

If an exported spreadsheet has more than 500,000 cells, the export process stops. You receive the Excel file at that point. The following message displays in the bottom row: Export stopped due to excessive size. Use CSV for a complete export.

The Excel export cell threshold is customizable using the glide.xlsx.max_cells integer property (or glide.excel.max_cells if using XLS).
Note: Increasing this threshold may cause a memory issue in your instance. The threshold is set at an appropriate level to prevent resource issues.

The export puts the information into the Excel document with 32,000 rows per spreadsheet.