logologo
Get Started
Guide
Development
Plugins
API
English
简体中文
Get Started
Guide
Development
Plugins
API
English
简体中文
logologo
Overview

Blocks

Overview

Data Blocks

Table
Form
Details
List
Grid Card
Chart

Filter Blocks

Form

Other Blocks

Action Panel
Iframe
Reference block
Markdown
JS Block

Block Settings

Data Scope
Layout
Block Linkage Rules
Field Linkage Rules
Sorting Rules
Block Deletion
Block Title

Fields

Overview

Generic Settings

Table Column
Detail Form Item
Filter Form Item
Form Item

Specific Settings

Date
File Manager
Sub-form
Select
Picker
Sub-table
Sub-detail
Title
JS Field
JS Item
JS Column

Field Settings

Default Value
Field Label
Show Label
Field Tooltip
Data Scope
Field Component
Number Format
Pattern
Required
Title Field
Validation Rules
Association Field

Actions

Overview

Action Settings

Edit Button
Double Check
Assign Values
Bind Workflow
Edit Popup
Action Linkage Rules

Action Types

Add New
View
Delete
Edit
Import
Import Pro
Export
Export Pro
Export Attachments
Filter
Link
Pop-up
Refresh
Submit
Trigger Workflow
Update Record
Bulk Update
JS Action
Action Permissions

Advanced

Linkage Rules
Event Flow
Variables
RunJS
Previous PageExport
Next PageExport Attachments

#Export Pro

Tip

This feature is provided by the commercial plugin plugin-action-export-pro. Please check the commercial license for details.

#Introduction

The Export Pro plugin provides enhanced features on top of the standard export functionality.

#Installation

This plugin depends on the Asynchronous Task Management plugin. You need to enable the Asynchronous Task Management plugin before using it.

#Feature Enhancements

  • Supports asynchronous export operations, executed in a separate thread, for exporting large amounts of data.
  • Supports exporting attachments.

#User Guide

#Configure Export Mode

20251029172829

20251029172914

On the export button, you can configure the export mode. There are three optional modes:

  • Auto: The export mode is determined by the data volume. If the number of records is less than 1000 (or 100 for attachment exports), synchronous export is used. If it's greater than 1000 (or 100 for attachment exports), asynchronous export is used.
  • Synchronous: Uses synchronous export, which runs in the main thread. It is suitable for small-scale data. Exporting large amounts of data in synchronous mode may cause the system to block, freeze, and be unable to handle other user requests.
  • Asynchronous: Uses asynchronous export, which runs in a separate background thread and does not block the current system's operation.

#Asynchronous Export

After initiating an export, the process will run in a separate background thread without requiring manual user configuration. In the user interface, after starting an export, the currently running export task will be displayed in the upper right corner, showing the real-time progress.

20251029173028

After the export is complete, you can download the exported file from the export tasks.

#Concurrent Exports

A large number of concurrent export tasks can be affected by server configuration, leading to slower system response. Therefore, it is recommended that system developers configure the maximum number of concurrent export tasks (default is 3). When the number of concurrent tasks exceeds the configured limit, new tasks will be queued.

20250505171706

Concurrency configuration method: Environment variable ASYNC_TASK_MAX_CONCURRENCY=concurrency_count

Based on comprehensive testing with different configurations and data complexities, the recommended concurrency counts are:

  • 2-core CPU, concurrency count 3.
  • 4-core CPU, concurrency count 5.

#About Performance

When you find that the export process is abnormally slow (see reference below), it may be a performance issue caused by the collection structure.

Data CharacteristicsIndex TypeData VolumeExport Duration
No Association FieldsPrimary Key / Unique Constraint1 million3~6 minutes
No Association FieldsRegular Index1 million6~10 minutes
No Association FieldsComposite Index (non-unique)1 million30 minutes
Association Fields
(One-to-One, One-to-Many,
Many-to-One, Many-to-Many)
Primary Key / Unique Constraint500,00015~30 minutes

To ensure efficient exports, we recommend that you:

  1. The collection must meet the following conditions:
Condition TypeRequired ConditionOther Notes
Collection Structure (meet at least one)Has a Primary Key
Has a Unique Constraint
Has an Index (unique, regular, composite)
Priority: Primary Key > Unique Constraint > Index
Field CharacteristicsThe Primary Key / Unique Constraint / Index (one of them) must have sortable characteristics, such as: auto-incrementing ID, Snowflake ID, UUID v1, timestamp, number, etc.
(Note: Non-sortable fields like UUID v3/v4/v5, regular strings, etc., will affect performance)
None
  1. Reduce the number of unnecessary fields to be exported, especially association fields (performance issues caused by association fields are still being optimized).

20250506215940

  1. If the export is still slow after meeting the above conditions, you can analyze the logs or provide feedback to the official team.

20250505182122

  • Linkage Rule: Dynamically show/hide the button;
  • Edit button: Edit the button's title, type, and icon;