File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
pkg/morph/client/container Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Changelog for NeoFS Node
99- Send on closed channel panic in node's new epoch handler (#3529 )
1010- Tomstoned objects revival not working (#3542 )
1111- Negative logic object counters in metabase (#3555 )
12+ - Inability to list 2K+ containers via API (#3558 )
1213
1314### Changed
1415- Stream payload without buffering to reduce memory usage in CLI ` Get/Put ` operations (#3535 )
Original file line number Diff line number Diff line change @@ -41,8 +41,10 @@ const (
4141
4242 // iteratorPrefetchNumber is a number of stack items to prefetch in the
4343 // first call of iterator-based methods. neo-go's stack elements default
44- // limit is 2048, make it less a little.
45- iteratorPrefetchNumber = 2000
44+ // limit is 2048, but JSON output is then limited to 128K, given that
45+ // each item has ~30 bytes overhead for type/value structure using large
46+ // values is dangerous here.
47+ iteratorPrefetchNumber = 512
4648)
4749
4850var (
You can’t perform that action at this time.
0 commit comments