Skip to content

Commit 5cc3ec0

Browse files
committed
explanation of export limits
1 parent af13be0 commit 5cc3ec0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/configuration/dtable-web-settings.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ BIG_DATA_ROW_UPDATE_LIMIT = 500000
196196
## Base export limit
197197

198198
SeaTable exports bases in DTABLE files. A DTABLE file contains all tabular data, assets, and a lot of metadata and can thus become large.
199+
This is the max size allowed for an export via the Webinterface of SeaTable. For the export via command line, there is another parameter `max_download_dir_size` in seafile.conf.
199200

200201
```python
201202
DTABLE_EXPORT_MAX_SIZE = 100 # in MB, 100MB is the default value

docs/configuration/seafile-conf.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ keep_days = 60
4141
| `host` | The address the fileserver listens on. You can set this to `127.0.0.1` to further restrict access. | 0.0.0.0 |
4242
| `port` | The port the fileserver listens on. | 8082 |
4343
| `worker_threads` | The number of worker threads used to serve HTTP requests. | 10 |
44+
| `max_download_dir_size` | Maximum size of the assets in a base that could be exported via command line in MB. | 100 |
4445

4546
### `[history]`
4647

preview.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [[ "$1" == "-stop" ]]; then
88
fi
99

1010
sudo docker build -t seatable-admin-docs .
11-
sudo docker run --name seatable-admin-docs --rm -d -p 8000:8000 -v ${PWD}:/docs seatable-admin-docs
11+
sudo docker run --name seatable-admin-docs --rm -d -p 8001:8000 -v ${PWD}:/docs seatable-admin-docs
1212

13-
echo "Local documentation preview available at http://127.0.0.1:8000"
13+
echo "Local documentation preview available at http://127.0.0.1:8001"
1414
echo "Use './preview.sh -stop' to stop the preview"

0 commit comments

Comments
 (0)