This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit be2f4c0203ed8dd04351210432d9eb5143bcfd37 Author: Na Li <[email protected]> AuthorDate: Tue Mar 31 13:15:48 2020 -0700 ATLAS-3712: Add 'isAppendOnPartialUpdate' option in ML model to append updates. Signed-off-by: Ashutosh Mestry <[email protected]> (cherry picked from commit 6b7837028c671334dd2e44f03e6d464b9812778b) --- addons/models/4000-MachineLearning/4010-ml_model.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/addons/models/4000-MachineLearning/4010-ml_model.json b/addons/models/4000-MachineLearning/4010-ml_model.json index c4ba729..438a148 100644 --- a/addons/models/4000-MachineLearning/4010-ml_model.json +++ b/addons/models/4000-MachineLearning/4010-ml_model.json @@ -49,7 +49,10 @@ "cardinality": "SINGLE", "isIndexable": false, "isOptional": true, - "isUnique": false + "isUnique": false, + "options": { + "isAppendOnPartialUpdate": "true" + } }, { "name": "createTime", @@ -93,7 +96,10 @@ "cardinality": "SINGLE", "isIndexable": false, "isOptional": true, - "isUnique": false + "isUnique": false, + "options": { + "isAppendOnPartialUpdate": "true" + } }, { "name": "defaultCpuMillicores", @@ -209,7 +215,10 @@ "cardinality": "SINGLE", "isIndexable": false, "isOptional": true, - "isUnique": false + "isUnique": false, + "options": { + "isAppendOnPartialUpdate": "true" + } }, { "name": "modelEndpointURL",
