Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion site/content/3.12/components/tools/arangodump/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,19 @@ arangodump --dump-data false --include-system-collections true --output-director
```

To restrict the dump to just specific collections, use the `--collection` option.
It can be specified multiple times if required:
You can specify it multiple times if required:

```
arangodump --collection myusers --collection myvalues --output-directory "dump"
```

To exclude specific collections from the dump, use the `--ignore-collection`
option instead:

```
arangodump --ignore-collection myusers --ignore-collection myvalues --output-directory "dump"
```

Structural information for a collection is saved in files with name pattern
`<collection-name>.structure.json`. Each structure file contains a JSON object
with these attributes:
Expand Down
10 changes: 10 additions & 0 deletions site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@ permanent connectivity issues:
- `arangodb_network_connectivity_failures_dbservers_total`: Number of failed
connectivity check requests sent to DB-Servers.

## Client tools

### arangodump

_arangodump_ now supports a `--ignore-collection` startup option that you can
specify multiple times to exclude the specified collections from a dump.

It cannot be used together with the existing `--collection` option for specifying
collections to include.

## Miscellaneous changes

### In-memory edge cache startup options and metrics
Expand Down