PHPackages                             silverstripe/gridfieldqueuedexport - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [PDF &amp; Document Generation](/categories/documents)
4. /
5. silverstripe/gridfieldqueuedexport

ActiveSilverstripe-vendormodule[PDF &amp; Document Generation](/categories/documents)

silverstripe/gridfieldqueuedexport
==================================

Export large data sets from your GridField in the SilverStripe CMS interface through async jobs

4.1.0(4mo ago)10216.9k↓70.9%22[7 issues](https://github.com/silverstripe/silverstripe-gridfieldqueuedexport/issues)[9 PRs](https://github.com/silverstripe/silverstripe-gridfieldqueuedexport/pulls)5BSD-3-ClausePHPPHP ^8.3CI passing

Since May 24Pushed 2w ago8 watchersCompare

[ Source](https://github.com/silverstripe/silverstripe-gridfieldqueuedexport)[ Packagist](https://packagist.org/packages/silverstripe/gridfieldqueuedexport)[ RSS](/packages/silverstripe-gridfieldqueuedexport/feed)WikiDiscussions 4 Synced 1w ago

READMEChangelog (10)Dependencies (14)Versions (91)Used By (5)

GridField Queued Export
=======================

[](#gridfield-queued-export)

[![CI](https://github.com/silverstripe/silverstripe-gridfieldqueuedexport/actions/workflows/ci.yml/badge.svg)](https://github.com/silverstripe/silverstripe-gridfieldqueuedexport/actions/workflows/ci.yml)[![Silverstripe supported module](https://camo.githubusercontent.com/9b7e93d393a01f6d3091fb30983b870aa863ef076858115faaa1c74b995854ec/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f73696c7665727374726970652d737570706f727465642d3030373143342e737667)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/)

Introduction
------------

[](#introduction)

Allows for large data set exports from a `GridField`. By using an asynchronous job queue, we avoid running out of PHP memory or exceeding any maximum execution time limits.

The exact limitations of a standard `GridField` export vary based on the server configuration, server capacity and the complexity of the exported `DataObject`. As a rough guide, you should consider using this module when more than 1000 records need to be exported. The module should be able to export 10,000 records on a standard server configuration within a few minutes.

Installation
------------

[](#installation)

```
composer require silverstripe/gridfieldqueuedexport
```

Configuration
-------------

[](#configuration)

Since this component operates on a `GridField`, you can simply use it's `addComponent()` API.

```
$gridField = GridField::create('Pages', 'All pages', SiteTree::get())
$config = $gridField->getConfig();
$config->addComponent(GridFieldQueuedExportButton::create('buttons-after-left'));
```

If you want to replace the `GridFieldExportButton` created by the default GridField configuration, you also need to call `removeComponentsByType()`.

```
// Find GridField
$gridField = $fields->fieldByName('MyGridField');
$config = $gridField->getConfig();

// Add new component
$oldExportButton = $config->getComponentByType(GridFieldExportButton::class);
$config->addComponent($newExportButton = GridFieldQueuedExportButton::create('buttons-after-left'));

// Set Header and Export columns on new Export Button
$newExportButton->setCsvHasHeader($oldExportButton->getCsvHasHeader());
$newExportButton->setExportColumns($oldExportButton->getExportColumns());

// Remove original component
$config->removeComponentsByType(GridFieldExportButton::class);
```

Note: This module is preconfigured to work with the [silverstripe/userforms](http://github.com/silverstripe/silverstripe-userforms)submission CSV export.

Related
-------

[](#related)

- [silverstripe/queuedjobcsvexport](https://github.com/open-sausages/queuedjobcsvexport): General purpose CSV exports through queuedjobs (without a dependency on GridField)

###  Health Score

65

—

FairBetter than 99% of packages

Maintenance74

Regular maintenance activity

Popularity43

Moderate usage in the ecosystem

Community36

Small or concentrated contributor base

Maturity94

Battle-tested with a long release history

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~44 days

Recently: every ~0 days

Total

81

Last Release

121d ago

Major Versions

3.2.x-dev → 4.0.02025-06-05

3.3.1 → 4.0.12025-08-18

3.3.2 → 4.0.32025-11-09

3.3.3 → 4.0.42026-02-04

3.x-dev → 4.0.x-dev2026-02-09

PHP version history (4 changes)2.6.0PHP ^7.3 || ^8.0

2.7.0-beta1PHP ^7.4 || ^8.0

3.0.0-beta1PHP ^8.1

4.0.0-alpha1PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/b0cba8b534e20e6ab4fff555a97b237a18436ebca1446fc0b29c8a8b504038b9?d=identicon)[GuySartorelli](/maintainers/GuySartorelli)

![](https://avatars.githubusercontent.com/u/111025?v=4)[Ingo Schommer](/maintainers/chillu)[@chillu](https://github.com/chillu)

![](https://www.gravatar.com/avatar/a25bc04c5720a36869d5a39c6449dde7eb43e19b7c8e666d5f632d6a9ab440b1?d=identicon)[emteknetnz](/maintainers/emteknetnz)

![](https://www.gravatar.com/avatar/afbb3dcc9ef29c1a6eedd6addcae5fce9ab1271915a85a4c349301b71237368d?d=identicon)[silverstripe-machine01](/maintainers/silverstripe-machine01)

![](https://avatars.githubusercontent.com/u/1168676?v=4)[Maxime Rainville](/maintainers/maxime-rainville)[@maxime-rainville](https://github.com/maxime-rainville)

---

Top Contributors

[![GuySartorelli](https://avatars.githubusercontent.com/u/36352093?v=4)](https://github.com/GuySartorelli "GuySartorelli (63 commits)")[![emteknetnz](https://avatars.githubusercontent.com/u/4809037?v=4)](https://github.com/emteknetnz "emteknetnz (63 commits)")[![raissanorth](https://avatars.githubusercontent.com/u/14869519?v=4)](https://github.com/raissanorth "raissanorth (29 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (28 commits)")[![robbieaverill](https://avatars.githubusercontent.com/u/5170590?v=4)](https://github.com/robbieaverill "robbieaverill (19 commits)")[![chillu](https://avatars.githubusercontent.com/u/111025?v=4)](https://github.com/chillu "chillu (10 commits)")[![dhensby](https://avatars.githubusercontent.com/u/563596?v=4)](https://github.com/dhensby "dhensby (6 commits)")[![NightJar](https://avatars.githubusercontent.com/u/778003?v=4)](https://github.com/NightJar "NightJar (5 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (4 commits)")[![sabina-talipova](https://avatars.githubusercontent.com/u/87288324?v=4)](https://github.com/sabina-talipova "sabina-talipova (4 commits)")[![brettt89](https://avatars.githubusercontent.com/u/4122344?v=4)](https://github.com/brettt89 "brettt89 (3 commits)")[![dizzystuff](https://avatars.githubusercontent.com/u/576903?v=4)](https://github.com/dizzystuff "dizzystuff (3 commits)")[![ScopeyNZ](https://avatars.githubusercontent.com/u/3260989?v=4)](https://github.com/ScopeyNZ "ScopeyNZ (2 commits)")[![wilr](https://avatars.githubusercontent.com/u/101629?v=4)](https://github.com/wilr "wilr (1 commits)")[![baukezwaan](https://avatars.githubusercontent.com/u/795238?v=4)](https://github.com/baukezwaan "baukezwaan (1 commits)")[![igor-silverstripe](https://avatars.githubusercontent.com/u/6666311?v=4)](https://github.com/igor-silverstripe "igor-silverstripe (1 commits)")[![ishannz](https://avatars.githubusercontent.com/u/20032948?v=4)](https://github.com/ishannz "ishannz (1 commits)")[![lozcalver](https://avatars.githubusercontent.com/u/1655548?v=4)](https://github.com/lozcalver "lozcalver (1 commits)")[![assertchris](https://avatars.githubusercontent.com/u/200609?v=4)](https://github.com/assertchris "assertchris (1 commits)")

---

Tags

hacktoberfestexportsilverstripecsvcwpgridfieldqueuedjobs

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/silverstripe-gridfieldqueuedexport/health.svg)

```
[![Health](https://phpackages.com/badges/silverstripe-gridfieldqueuedexport/health.svg)](https://phpackages.com/packages/silverstripe-gridfieldqueuedexport)
```

###  Alternatives

[maatwebsite/excel

Supercharged Excel exports and imports in Laravel

12.7k152.8M843](/packages/maatwebsite-excel)[league/csv

CSV data manipulation made easy in PHP

3.5k176.5M787](/packages/league-csv)[goodby/csv

CSV import/export library

9865.6M25](/packages/goodby-csv)[sonata-project/exporter

Lightweight Exporter library

44121.3M37](/packages/sonata-project-exporter)[kartik-v/yii2-export

A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)

1693.2M36](/packages/kartik-v-yii2-export)[handcraftedinthealps/goodby-csv

CSV import/export library

441.7M7](/packages/handcraftedinthealps-goodby-csv)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
