Skip to content

Commit

Permalink
Merge pull request #3643 from fisuda/patch
Browse files Browse the repository at this point in the history
(JP) Add documentation of Maximum nesting level. (#3615)
  • Loading branch information
fgalan authored Mar 23, 2020
2 parents 9bd8525 + 0ceee87 commit c58a5f1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions doc/manuals.jp/user/known_limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,19 @@ Orion Context Broker は、サブスクリプション・トリガーを高速
参考までに、Orion 1.13.0 が稼働する、4 GB RAM を搭載したマシンのラボ・テストでは、サブスクリプション数が 211.000 を上回ると、Orion がクラッシュしました。

これに関連する改善について、[リポジトリに issue](https://github.com/telefonicaid/fiware-orion/issues/2780) があります。

## 最大ネスト・レベル

複合属性 (compound attributes) とメタデータ値には、最大のネストレベルがあります。この制限は50レベルです。
この制限を超える値で属性/メタデータを作成または更新しようとすると、このペイロードで 400 Bad Request error
が発生します :

```
{
"description": "attribute or metadata value has overpassed maximum nesting limit: 50",
"error": "ParseError"
}
```

JSON を処理する他システムもこの種の制限を使用することに注意してください (たとえば、
[MongoDB の制限](https://docs.mongodb.com/manual/reference/limits/#Nested-Depth-for-BSON-Documents)).

0 comments on commit c58a5f1

Please sign in to comment.