From 7c1769da935d3c27ed36d987e2600ada3a2538a0 Mon Sep 17 00:00:00 2001 From: Kiran Godishala <53332225+kirangodishala@users.noreply.github.com> Date: Thu, 2 Jan 2025 23:40:00 +0530 Subject: [PATCH] doc(changelog): Add changelog for https://github.com/spinnaker/orca/pull/4804 (#475) --- .../releases/next-release-preview/index.md | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/content/en/docs/releases/next-release-preview/index.md b/content/en/docs/releases/next-release-preview/index.md index f798c2f3..1708d3a3 100644 --- a/content/en/docs/releases/next-release-preview/index.md +++ b/content/en/docs/releases/next-release-preview/index.md @@ -9,4 +9,32 @@ Please make a pull request to describe any changes you wish to highlight in the next release of Spinnaker. These notes will be prepended to the release changelog. -## Coming Soon in Release 1.37 \ No newline at end of file +## Coming Soon in Release 1.37 + +### Orca +With https://github.com/spinnaker/orca/pull/4804, the api `/applications/{application}/pipelines?expand=false&limit=2` performance is improved when using sql as the backend. +Orca's queries to its sql db are optimized while handling the data obtained from front50. +TaskController is refactored to support externalized config properties. + +#### Breaking changes: +These configuration properties: +```yaml +tasks: + days-of-execution-history: + number-of-old-pipeline-executions-to-include: +``` +are replaced by the below configuration along with few more newly added ones: +```yaml +tasks: + controller: + days-of-execution-history: + number-of-old-pipeline-executions-to-include: + + optimize-execution-retrieval: + max-execution-retrieval-threads: + max-number-of-pipeline-executions-to-process: + execution-retrieval-timeout-seconds: +``` + + +