Skip to content

Commit

Permalink
Hotfix default memcache size to 100MB (#2990)
Browse files Browse the repository at this point in the history
* Fix default memcache size to 100MB

* Fix memcache size max limit to 10GB

* Update CHANGELOG.md
  • Loading branch information
goodsong81 authored Feb 27, 2024
1 parent 213a2e3 commit b77e96a
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## \[v1.5.1\]

### Bug fixes

- Remove polygon clipping code (<https://github.com/openvinotoolkit/training_extensions/pull/2926>)
- Hotfix default memcache size to 100MB (<https://github.com/openvinotoolkit/training_extensions/pull/2990>)

## \[v1.5.0\]

### New features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ algo_backend:
description: Size of memory pool for caching decoded data to load data faster (bytes).
editable: true
header: Size of memory pool
max_value: 9223372036854775807
max_value: 10000000000
min_value: 0
type: INTEGER
ui_rules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ algo_backend:
description: Size of memory pool for caching decoded data to load data faster (bytes).
editable: true
header: Size of memory pool
max_value: 9223372036854775807
max_value: 10000000000
min_value: 0
type: INTEGER
ui_rules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ algo_backend:
description: Size of memory pool for caching decoded data to load data faster (bytes).
editable: true
header: Size of memory pool
max_value: 9223372036854775807
max_value: 10000000000
min_value: 0
type: INTEGER
ui_rules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,11 @@ algo_backend:
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
default_value: 1000000000
default_value: 100000000
description: Size of memory pool for caching decoded data to load data faster (bytes).
editable: true
header: Size of memory pool
max_value: 9223372036854775807
max_value: 10000000000
min_value: 0
type: INTEGER
ui_rules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,11 @@ algo_backend:
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
default_value: 1000000000
default_value: 100000000
description: Size of memory pool for caching decoded data to load data faster (bytes).
editable: true
header: Size of memory pool
max_value: 9223372036854775807
max_value: 10000000000
min_value: 0
type: INTEGER
ui_rules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,11 +356,11 @@ algo_backend:
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
default_value: 1000000000
default_value: 100000000
description: Size of memory pool for caching decoded data to load data faster (bytes).
editable: true
header: Size of memory pool
max_value: 9223372036854775807
max_value: 10000000000
min_value: 0
type: INTEGER
ui_rules:
Expand Down
4 changes: 2 additions & 2 deletions src/otx/algorithms/segmentation/configs/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -323,11 +323,11 @@ algo_backend:
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
default_value: 1000000000
default_value: 100000000
description: Size of memory pool for caching decoded data to load data faster (bytes).
editable: true
header: Size of memory pool
max_value: 9223372036854775807
max_value: 10000000000
min_value: 0
type: INTEGER
ui_rules:
Expand Down

0 comments on commit b77e96a

Please sign in to comment.