Threading pt3:
[ric-plt/a1.git] / docs / release-notes.rst
1 .. ==================================================================================
2 ..       Copyright (c) 2019 Nokia
3 ..       Copyright (c) 2018-2019 AT&T Intellectual Property.
4 ..
5 ..   Licensed under the Apache License, Version 2.0 (the "License");
6 ..   you may not use this file except in compliance with the License.
7 ..   You may obtain a copy of the License at
8 ..
9 ..          http://www.apache.org/licenses/LICENSE-2.0
10 ..
11 ..   Unless required by applicable law or agreed to in writing, software
12 ..   distributed under the License is distributed on an "AS IS" BASIS,
13 ..   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ..   See the License for the specific language governing permissions and
15 ..   limitations under the License.
16 .. ==================================================================================
17
18 A1 Mediator Release Notes
19 =========================
20
21 All notable changes to this project will be documented in this file.
22
23 The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
24 and this project adheres to `Semantic Versioning <http://semver.org/>`__.
25
26 [1.x.x] - TBD
27
28 ::
29
30     * Represents a resillent version of 1.0.0 that uses Redis for persistence
31
32 [1.0.4]
33
34 ::
35
36     * Only external change here is to healthcheck the rmr thread as part of a1s healthcheck. k8s will now respin a1 if that is failing.
37     * Refactors (simplifies) how we wait for rmr initialization; it is now called as part of __init__
38     * Refactors (simplifies) how the thread is actually launched; it is now internal to the object and also a part of __init__
39     * Cleans up unit testing; a1rmr now exposes a replace_rcv_func; useful for unit testing, harmless if not called otherwise
40     * Upgrades to rmr-python 1.0.0 for simpler message allocation
41
42 [1.0.3] - 10/22/2019
43
44 ::
45
46     * Move database cleanup (e.g., deleting instances based on statuses) into the polling loop
47     * Rework how unit testing works with the polling loop; prior, exceptions were being thrown silently from the thread but not printed. The polling thread has now been paramaterized with override functions for the purposes of testing
48     * Make type cleanup more efficient since we know exactly what instances were touched, and it's inefficient to iterate over all instances if they were not
49     * Bump rmr-python version, and bump rmr version
50     * Still an item left to do in this work; refactor the thread slightly to tie in a healthcheck with a1s healthcheck. We need k8s to restart a1 if that thread dies too.
51
52 [1.0.2] - 10/17/2019
53
54 ::
55
56     * a1 now has a seperate, continuous polling thread
57       this will enable operations like database cleanup (based on ACKs) and external notifications in real time,
58       rather than when the API is invoked
59     * all rmr send and receive operations are now in this thread
60     * introduces a thread safe job queue between the two threads
61     * Not done yet: database cleanups in the thread
62     * Bump rmr python version
63     * Clean up some logging
64
65 [1.0.1] - 10/15/2019
66
67 ::
68
69     * Moves the "database" access calls to mimick the SDL API, in preparation for moving to SDL
70     * Does not yet actually use SDL or Redis, but the transition to those will be much shorter after this change.
71
72
73 [1.0.0] - 10/7/2019
74
75 ::
76
77     * Represents v1.0.0 of the A1 API for O-RAN-SC Release A
78     * Finished here:
79       - Implement type DELETE
80       - Clean up where policy instance cleanups happen
81
82
83 [0.14.1] - 10/2/2019
84 ::
85
86     * Upgrade rmr to 1.9.0
87     * Upgrade rmr-python to 0.13.2
88     * Use the new helpers module in rmr-python for the rec all functionality
89     * Switch rmr mode to a multithreaded mode that continuously reads from rmr and populates an internal queue of messages with a deterministic queue size (2048) which is better behavior for A1
90     * Fix a memory leak (python obj is garbage collected but not the underlying C memory allocation)
91
92
93
94 [0.14.0] - 10/1/2019
95 ::
96
97     * Implement instance delete
98     * Moves away from the status vector and now aggregates statuses
99     * Pop through a1s mailbox "3x as often"; on all 3 kinds of instance GET since all such calls want the latest information
100     * Misc cleanups in controller (closures ftw)
101     * Add rmr-version.yaml for CICD jobs
102
103 [0.13.0] - 9/25/2019
104 ::
105
106     * Implement GET all policy type ids
107     * Implement GET all policy instance ids for a policy type
108     * fix a tiny bug in integration test receiver
109
110
111 [0.12.1] - 9/20/2019
112 ::
113     * switch to rmr 1.8.1 to pick up a non blocking variant of rmr that deals with bad routing tables (no hanging connections / blocking calls)
114     * improve test receiver to behave with this setup
115     * add integration test for this case
116     * this also switches past 1.5.x, which included another change that altered the behavior of rts; deal with this with a change to a1s helmchart (env: `RMR_SRC_ID`) that causes the sourceid to be set to a1s service name, which was not needed prior
117     * improve integration tests overall
118
119
120 [0.12.0] - 9/19/2019
121 ::
122
123     * Implement type PUT
124     * Implement type GET
125     * Remove RIC manifest
126     * Read type GET to get schema for instance PUT
127     * Remove Utils (no longer needed)
128     * lots more tests (unit and integration)
129
130 [0.11.0] - 9/17/2019
131
132 ::
133
134     * This is on the road to release 1.0.0. It is not meant to be tested (E2E) as it's own release
135     * Implement the Release A spec in the openapi.yaml
136     * Rework A1 to follow that spec
137     * Remove rmr_mapping now that we use policyid as the mtype to send and a well known mtype for the ACKs
138     * Add the delay receiver test to the tavern integration tests
139     * Remove unneeded ENV variables from helm charts
140     * Switch away from builder images to avoid quicksand; upgrade rmr at our own pace
141
142
143 [0.10.3] - 8/20/2019
144
145 ::
146
147     * Update to later rmr-python
148     * Add docs about upgrading rmr
149     * remove bombarder since tavern runs apache bench
150
151
152 [0.10.2] - 8/14/2019
153
154 ::
155
156     * Update to later rmr-python
157
158 [0.10.1] - 8/9/2019
159
160 ::
161
162     * Greatly reduce the size of A1 docker from 1.25GB to ~278MB.
163     * Add a seperate dockerfile for unit testing
164
165
166 [0.10.0] - 7/30/2019
167
168 ::
169
170    * Rename all /ric/ URLs to be consistent with requirements of /a1-p/
171
172
173 [0.9.0] - 7/22/2019
174 -------------------
175
176 ::
177
178    * Implement the GET on policies
179    * Add a new endpoint for healthcheck. NOTE, it has been decided by oran architecture documents that this policy interface should be named a1-p in all URLS. In a future release the existing URLs will be renamed (existing URLs were not changed in this release).
180
181
182 [0.8.4] - 7/16/2019
183 -------------------
184
185 ::
186
187    * Fix the 400, which was in the API, but wasn't actually implemented
188    * Update the test fixture manifests to reflect the latest adm control, paves way for next feature coming which is a policy GET
189
190
191
192 [0.8.3] - 6/18/2019
193 -------------------
194
195 ::
196
197    * Use base Docker with NNG version 1.1.1
198
199
200
201 [0.8.2] - 6/5/2019
202 -------------------
203
204 ::
205
206    * Upgrade RMR due to a bug that was preventing rmr from init in kubernetes
207
208
209
210 [0.8.1] - 5/31/2019
211 -------------------
212
213 ::
214
215    * Run unit tests as part of docker build
216
217
218
219 [0.8.0] - 5/28/2019
220 -------------------
221
222 ::
223
224    * Convert docs to appropriate format
225    * Move rmr string to int mapping to a file
226
227
228
229 [0.7.2] - 5/24/2019
230 -------------------
231
232 ::
233
234    * Use tavern to test the actual running docker container
235    * Restructures the integration tests to run as a single tox command
236    * Re-ogranizes the README and splits out the Developers guide, which is not needed by users.
237
238 .. _section-1:
239
240 [0.7.1] - 5/23/2019
241 -------------------
242
243 ::
244
245    * Adds a defense mechanism against A1 getting queue-overflowed with messages A1 doesnt care about; A1 now ignores all incoming messages it's not waiting for, so it's queue size should now always be "tiny", i.e., never exceeding the number of valid requests it's waiting for ACKs back for
246    * Adds a test "bombarding" script that tests this
247
248 .. _section-2:
249
250 [0.7.0] - 5/22/19
251 -----------------
252
253 ::
254
255    * Main purpose of this change is to fix a potential race condition where A1 sends out M1 expecting ACK1, and while waiting for ACK1, sends out M2 expecting ACK2, but gets back ACK2, ACK1. Prior to this change, A1 may have eaten ACK2 and never fufilled the ACK1 request.
256    * Fix a bug in the unit tests (found using a fresh container with no RIC manifest!)
257    * Fix a (critical) bug in a1rmr due to a rename in the last iteration (RMR_ERR_RMR_RCV_RETRY_INTERVAL)
258    * Make unit tests faster by setting envs in tox
259    * Move to the now publically available rmr-python
260    * Return a 400 if am xapp does not expect a body, but the PUT provides one
261    * Adds a new test policy to the example RIC manifest and a new delayed receiver to test the aformentiond race condition
262
263 .. _section-3:
264
265 [0.6.0]
266 -------
267
268 ::
269
270    * Upgrade to rmr 0.10.0
271    * Fix bad api spec RE GET
272    * Fix a (big) bug where transactionid wasn't being checked, which wouldn't have worked on sending two policies to the same downstream policy handler
273
274 .. _section-4:
275
276 [0.5.1] - 5/13/2019
277 -------------------
278
279 ::
280
281    * Rip some testing structures out of here that should have been in rmr (those are now in rmr 0.9.0, upgrade to that)
282    * Run Python BLACK for formatting
283
284 .. _section-5:
285
286 [0.5.0] - 5/10/2019
287 -------------------
288
289 ::
290
291    * Fix a blocking execution bug by moving from rmr's timeout to a non blocking call + retry loop + asyncronous sleep
292    * Changes the ENV RMR_RCV_TIMEOUT to RMR_RCV_RETRY_INTERVAL
293
294 .. _section-6:
295
296 [0.4.0] - 5/9.2019
297 ------------------
298
299 ::
300
301    * Update to rmr 0.8.3
302    * Change 503 to 504 for the case where downstream does not reply, per recommendation
303    * Add a 502 with different reasons if the xapp replies but with a bad/malformed/missing status
304    * Make testing much more modular, in anticipating of moving some unit test functionality into rmr itself
305
306 .. _section-7:
307
308 [0.3.4] - 5/8/2019
309 ------------------
310
311 ::
312
313    * Crash immediately if manifest isn't mounted
314    * Add unit tests for utils
315    * Add missing lic
316
317 .. _section-8:
318
319 [0.3.3]
320 -------
321
322 ::
323
324    * Upgrade A1 to rmr 0.8.0
325    * Go from deb RMR installation to git
326    * Remove obnoxious receiver logging
327
328 .. _section-9:
329
330 [0.3.2]
331 -------
332
333 ::
334
335    * Upgrade A1 to rmr 0.6.0
336
337 .. _section-10:
338
339 [0.3.1]
340 -------
341
342 ::
343
344    * Add license headers
345
346 .. _section-11:
347
348 [0.3.0]
349 -------
350
351 ::
352
353    * Introduce RIC Manifest
354    * Move some testing functionality into a helper module
355    * Read the policyname to rmr type mapping from manifest
356    * Do PUT payload validation based on the manifest
357
358 .. _section-12:
359
360 [0.2.0]
361 -------
362
363 ::
364
365    * Bump rmr python dep version
366    * Include a Dockerized test receiver
367    * Stencil out the mising GET
368    * Update the OpenAPI
369    * Include a test docker compose file
370
371 .. _section-13:
372
373 [0.1.0]
374 -------
375
376 ::
377
378    * Initial Implementation