Merge "Release note for "convert_output_data" config option" into stable/train

This commit is contained in:
Zuul 2020-02-20 07:26:23 +00:00 committed by Gerrit Code Review
commit 3cf32a43e3
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.