-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NXDOC-2686: Document Amazon DocumentDB support
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
src/nxdoc/nuxeo-server/administration/database-configuration/documentdb.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: Amazon DocumentDB | ||
labels: | ||
- database | ||
- documentdb | ||
tree_item_index: 700 | ||
|
||
--- | ||
`DocumentDB` is compatible with `MongoDB`, therefore, it can be used by `Nuxeo` like a `MongoDB` backend, | ||
but there are limitations. | ||
|
||
## Limitations | ||
|
||
- fulltext search at repository level using `DocumentDB` is not supported due to `DocumentDB` limitations. You need to rely on `Elasticsearch` or `OpenSearch`. This requires to disable repository fulltext search. See the [configuration]({{page space='nxdoc' page='documentdb#configuration'}}) section. | ||
- retryable writes are not supported. You need to disable this. See the [configuration]({{page space='nxdoc' page='documentdb#configuration'}}) section. | ||
- the `DocumentDB` instance type chosen affects the number of open cursor at any given time. | ||
|
||
Note there are also other differences that should not affect Nuxeo. Please refer to `DocumentDB`. | ||
|
||
## Configuration | ||
|
||
To use `DocumentDB` you need the following options: | ||
|
||
```properties | ||
nuxeo.templates=<MY_TEMPLATES>,mongodb | ||
nuxeo.vcs.fulltext.search.disabled=true | ||
nuxeo.mongodb.server=<MONGO_URL>?retryWrites=false | ||
``` | ||
|
||
For all other configuration information, please refer to the [MongoDB configuration page]({{page page='mongodb'}}). | ||
|
||
* * * | ||
|
||
<div class="row" data-equalizer data-equalize-on="medium"><div class="column medium-6">{{#> panel heading='Related topics'}} | ||
|
||
- [Connecting Nuxeo to the Database]({{page page='connecting-nuxeo-to-the-database'}}) | ||
- [How to Estimate Volume Usage]({{page page='how-to-estimate-volume-usage'}}) | ||
|
||
{{/panel}}</div><div class="column medium-6"> | ||
|
||
| ||
|
||
</div></div> |