Release note for "convert_output_data" config option

Change-Id: I99d30434c9d337529edae041427de05ffcf2ffd6
Closes-Bug: #1863857
This commit is contained in:
Renat Akhmerov 2020-02-19 16:12:33 +07:00
parent 0a3880c22c
commit 253fd978c5
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
---
fixes:
- |
Added the configuration option "convert_output_data" in the "yaql" group.
This option, if set to False, allows to disable YAQL expression result
conversion. This fixes performance issues for lots of use cases where
a result of an expression is a big data structure. In fact, YAQL created
a copy of this data structure every time before giving it to Mistral.
This option can't be set to False when the corresponding
"convert_input_data" is True. Otherwise, it doesn't work correctly.
By default, the value of "convert_output_data" is True which keeps
backwards compatibility.