Repair send-message methods for free and retry
[ric-plt/a1.git] / docs / release-notes.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3 .. Copyright (C) 2019 AT&T Intellectual Property
4
5 Release Notes
6 ===============
7
8 All notable changes to this project will be documented in this file.
9
10 The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
11 and this project adheres to `Semantic Versioning <http://semver.org/>`__.
12
13 .. contents::
14    :depth: 3
15    :local:
16
17
18 [2.1.9] - 2020-05-26
19 --------------------
20
21 * Fix _send_msg method to free allocated RMR message buffers
22 * Adjust send-message methods to retry only on RMR_ERR_RETRY
23 * Use constants from ricxappframe.rmr instead of hardcoded strings
24 * Upgrade RMR to version 4.0.5
25 * Upgrade tavern to version 1.2.2
26
27
28 [2.1.8] - 2020-04-30
29 --------------------
30
31 * Revise Dockerfile to set user as owner of .local dir with a1 package
32 * Rename console shell start script to run-a1 from run.py
33 * Extend start script to report webserver listening port
34 * Add tiny RMR routing table for use in demo and test
35 * Extend documentation for running a container locally
36 * Add documentation of start/init parameters to _RmrLoop class
37 * Add new environment variable USE_FAKE_SDL (`RIC-351 <https://jira.o-ran-sc.org/browse/RIC-351>`_)
38 * Respond with error if policy type ID differs from ID in object on create
39 * Upgrade integration tests to use Tavern version 1.0.0
40
41
42 [2.1.7] - 2020-04-28
43 --------------------
44
45 * Upgrade to rmr 4.0.2
46 * Upgrade integration tests to xapp-frame-go version 0.4.8 which drops NNG
47 * Extend exception handler to return error details in HTTP response
48 * Ensure that policy type ID on path matches ID in object
49 * Add OpenAPI spec to RST documentation
50
51
52 [2.1.6] - 4/7/2020
53 -------------------
54
55 * Switch to rmr 3.6.3
56 * Switch to using rmr in the ricxappframe
57
58
59 [2.1.5] - 3/19/2020
60 -------------------
61
62 * Switch to python3.8
63 * Switch to SI95 from NNG (rmr v3 vs rmr v1)
64 * The switch to SI95 led to a rabbit hole in which we eventually discovered that rmr_send may sometimes block for an arbitrary period of time. Because of this issue, a1's sends are now threaded. Please see the longer comment about this in a1rmr.
65 * Bump version of py xapp frame (SDL used only) in A1
66 * Bump version of go xapp frame (0.0.24 -> 0.4.2) in integration tests
67 * Add some additional logging in A1
68
69
70 [2.1.4] - 3/6/2020
71 -------------------
72
73 * SDL Wrapper was moved into the python xapp framework; use it from there instead.
74
75
76 [2.1.3] - 2/13/2020
77 -------------------
78
79 * This is a pretty big amount of work/changes, however no APIs were changed hence the semver patch
80 * Switches A1's three test receivers (integration tests) over to golang; this was mostly done to learn the go xapp framework and they are identical in functionality.
81 * Upgrades the version of rmr in A1 and all integration receivers to 1.13.*
82 * Uses a much fancier Docker build to reduce the size of a1's image. The python:3.7-alpine image itself is 98MB and A1 is now only ~116MB, so we're done optimizing A1's container size.
83
84 [2.1.2] - 1/22/2020
85 -------------------
86
87 * Upgrades from sdl 2.0.2 to 2.0.3
88 * Integrates an sdl healthcheck into a1's healthcheck
89
90
91 [2.1.1] - 1/14/2020
92 -------------------
93
94 * Upgrades from sdl 1.0.0 to 2.0.2
95 * Delete a1test_helpers because SDL 2.0.2 provides the mockup we need
96 * Remove general catch all from A1
97
98
99 [2.1.0] - 1/8/2020
100 ------------------
101
102 * Represents a resillent version of 2.0.0 that uses Redis for persistence
103 * Now relies on SDL and dbaas; SDL is the python interface library to dbaas
104 * Adds a 503 http code to nearly all http methods, as A1 now depends on an upstream system
105 * Integration tests have a copy of a dbaas helm chart, however the goal is to simplify that deployment per https://jira.o-ran-sc.org/browse/RIC-45
106 * Unit tests have a mockup of SDL, however again the goal is to simplify as SDL grows per https://jira.o-ran-sc.org/browse/RIC-44
107
108
109 [2.0.0] - 12/9/2019
110 -------------------
111
112 * Implements new logic around when instances are deleted. See flowcharts in docs/. Basically timeouts now trigger to actually delete instances from a1s database, and these timeouts are configurable.
113 * Eliminates the barrier to deleting an instance when no xapp evdr replied (via timeouts)
114 * Add two new ENV variables that control timeouts
115 * Make unit tests more modular so new workflows can be tested easily
116 * Fixes the API for ../status to return a richer structure. This is an (albeit tiny) API change.
117 * Clean up unused items in the integration tests helm chart
118 * Removed "RMR_RCV_RETRY_INTERVAL" leftovers since this isn't used anymore
119 * Uses the standard RIC logging library
120 * Switch the backend routing scheme to using subscription id with constant message types, per request.
121 * Given the above, policy type ids can be any valid 32bit greater than 0
122 * Decouple the API between northbound and A1 from A1 with xapps. This is now two seperate OpenAPI files
123 * Update example for AC Xapp
124 * Updgrade rmr and rmr-python to utilize new features; lots of cleanups because of that
125 * Implements a POLICY QUERY feature where A1 listens for queries for a policy type. A1 then responds via multiple RTS messages every policy instance of that policy type (and expects an ACK back from xapps as usual). This feature can be used for xapp recovery etc.
126
127
128 [1.0.4]
129 -------
130
131 * Only external change here is to healthcheck the rmr thread as part of a1s healthcheck. k8s will now respin a1 if that is failing.
132 * Refactors (simplifies) how we wait for rmr initialization; it is now called as part of __init__
133 * Refactors (simplifies) how the thread is actually launched; it is now internal to the object and also a part of __init__
134 * Cleans up unit testing; a1rmr now exposes a replace_rcv_func; useful for unit testing, harmless if not called otherwise
135 * Upgrades to rmr-python 1.0.0 for simpler message allocation
136
137
138 [1.0.3] - 10/22/2019
139 --------------------
140
141 * Move database cleanup (e.g., deleting instances based on statuses) into the polling loop
142 * 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
143 * 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
144 * Bump rmr-python version, and bump rmr version
145 * 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.
146
147
148 [1.0.2] - 10/17/2019
149 --------------------
150
151 * a1 now has a seperate, continuous polling thread, which will enable operations like database cleanup
152   (based on ACKs) and external notifications in real time, rather than when the API is invoked
153 * all rmr send and receive operations are now in this thread
154 * introduces a thread safe job queue between the two threads
155 * Not done yet: database cleanups in the thread
156 * Bump rmr python version
157 * Clean up some logging
158
159
160 [1.0.1] - 10/15/2019
161 --------------------
162
163 * Moves the "database" access calls to mimick the SDL API, in preparation for moving to SDL
164 * Does not yet actually use SDL or Redis, but the transition to those will be much shorter after this change.
165
166
167 [1.0.0] - 10/7/2019
168 -------------------
169
170 * Represents v1.0.0 of the A1 API for O-RAN-SC Release A
171 * Finished here:
172   - Implement type DELETE
173   - Clean up where policy instance cleanups happen
174
175
176 [0.14.1] - 10/2/2019
177 --------------------
178
179 ::
180
181     * Upgrade rmr to 1.9.0
182     * Upgrade rmr-python to 0.13.2
183     * Use the new helpers module in rmr-python for the rec all functionality
184     * 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
185     * Fix a memory leak (python obj is garbage collected but not the underlying C memory allocation)
186
187
188
189 [0.14.0] - 10/1/2019
190 --------------------
191
192 ::
193
194     * Implement instance delete
195     * Moves away from the status vector and now aggregates statuses
196     * Pop through a1s mailbox "3x as often"; on all 3 kinds of instance GET since all such calls want the latest information
197     * Misc cleanups in controller (closures ftw)
198     * Add rmr-version.yaml for CICD jobs
199
200 [0.13.0] - 9/25/2019
201 --------------------
202
203 ::
204
205     * Implement GET all policy type ids
206     * Implement GET all policy instance ids for a policy type
207     * fix a tiny bug in integration test receiver
208
209
210 [0.12.1] - 9/20/2019
211 --------------------
212
213 ::
214
215     * 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)
216     * improve test receiver to behave with this setup
217     * add integration test for this case
218     * 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
219     * improve integration tests overall
220
221
222 [0.12.0] - 9/19/2019
223 --------------------
224
225 ::
226
227     * Implement type PUT
228     * Implement type GET
229     * Remove RIC manifest
230     * Read type GET to get schema for instance PUT
231     * Remove Utils (no longer needed)
232     * lots more tests (unit and integration)
233
234 [0.11.0] - 9/17/2019
235 --------------------
236
237 ::
238
239     * This is on the road to release 1.0.0. It is not meant to be tested (E2E) as it's own release
240     * Implement the Release A spec in the openapi.yaml
241     * Rework A1 to follow that spec
242     * Remove rmr_mapping now that we use policyid as the mtype to send and a well known mtype for the ACKs
243     * Add the delay receiver test to the tavern integration tests
244     * Remove unneeded ENV variables from helm charts
245     * Switch away from builder images to avoid quicksand; upgrade rmr at our own pace
246
247
248 [0.10.3] - 8/20/2019
249 --------------------
250
251 ::
252
253     * Update to later rmr-python
254     * Add docs about upgrading rmr
255     * remove bombarder since tavern runs apache bench
256
257
258 [0.10.2] - 8/14/2019
259 --------------------
260
261 ::
262
263     * Update to later rmr-python
264
265 [0.10.1] - 8/9/2019
266 -------------------
267
268 ::
269
270     * Greatly reduce the size of A1 docker from 1.25GB to ~278MB.
271     * Add a seperate dockerfile for unit testing
272
273
274 [0.10.0] - 7/30/2019
275 --------------------
276
277 ::
278
279    * Rename all /ric/ URLs to be consistent with requirements of /a1-p/
280
281
282 [0.9.0] - 7/22/2019
283 -------------------
284
285 ::
286
287    * Implement the GET on policies
288    * 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).
289
290
291 [0.8.4] - 7/16/2019
292 -------------------
293
294 ::
295
296    * Fix the 400, which was in the API, but wasn't actually implemented
297    * Update the test fixture manifests to reflect the latest adm control, paves way for next feature coming which is a policy GET
298
299
300
301 [0.8.3] - 6/18/2019
302 -------------------
303
304 ::
305
306    * Use base Docker with NNG version 1.1.1
307
308
309
310 [0.8.2] - 6/5/2019
311 ------------------
312
313 ::
314
315    * Upgrade RMR due to a bug that was preventing rmr from init in kubernetes
316
317
318
319 [0.8.1] - 5/31/2019
320 -------------------
321
322 ::
323
324    * Run unit tests as part of docker build
325
326
327
328 [0.8.0] - 5/28/2019
329 -------------------
330
331 ::
332
333    * Convert docs to appropriate format
334    * Move rmr string to int mapping to a file
335
336
337
338 [0.7.2] - 5/24/2019
339 -------------------
340
341 ::
342
343    * Use tavern to test the actual running docker container
344    * Restructures the integration tests to run as a single tox command
345    * Re-ogranizes the README and splits out the Developers guide, which is not needed by users.
346
347
348 [0.7.1] - 5/23/2019
349 -------------------
350
351 ::
352
353    * 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
354    * Adds a test "bombarding" script that tests this
355
356
357 [0.7.0] - 5/22/19
358 -----------------
359
360 ::
361
362    * 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.
363    * Fix a bug in the unit tests (found using a fresh container with no RIC manifest!)
364    * Fix a (critical) bug in a1rmr due to a rename in the last iteration (RMR_ERR_RMR_RCV_RETRY_INTERVAL)
365    * Make unit tests faster by setting envs in tox
366    * Move to the now publically available rmr-python
367    * Return a 400 if am xapp does not expect a body, but the PUT provides one
368    * Adds a new test policy to the example RIC manifest and a new delayed receiver to test the aformentiond race condition
369
370
371 [0.6.0]
372 -------
373
374 ::
375
376    * Upgrade to rmr 0.10.0
377    * Fix bad api spec RE GET
378    * 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
379
380
381 [0.5.1] - 5/13/2019
382 -------------------
383
384 ::
385
386    * Rip some testing structures out of here that should have been in rmr (those are now in rmr 0.9.0, upgrade to that)
387    * Run Python BLACK for formatting
388
389
390 [0.5.0] - 5/10/2019
391 -------------------
392
393 ::
394
395    * Fix a blocking execution bug by moving from rmr's timeout to a non blocking call + retry loop + asyncronous sleep
396    * Changes the ENV RMR_RCV_TIMEOUT to RMR_RCV_RETRY_INTERVAL
397
398
399 [0.4.0] - 5/9.2019
400 ------------------
401
402 ::
403
404    * Update to rmr 0.8.3
405    * Change 503 to 504 for the case where downstream does not reply, per recommendation
406    * Add a 502 with different reasons if the xapp replies but with a bad/malformed/missing status
407    * Make testing much more modular, in anticipating of moving some unit test functionality into rmr itself
408
409
410 [0.3.4] - 5/8/2019
411 ------------------
412
413 ::
414
415    * Crash immediately if manifest isn't mounted
416    * Add unit tests for utils
417    * Add missing lic
418
419
420 [0.3.3]
421 -------
422
423 ::
424
425    * Upgrade A1 to rmr 0.8.0
426    * Go from deb RMR installation to git
427    * Remove obnoxious receiver logging
428
429
430 [0.3.2]
431 -------
432
433 ::
434
435    * Upgrade A1 to rmr 0.6.0
436
437
438 [0.3.1]
439 -------
440
441 ::
442
443    * Add license headers
444
445
446 [0.3.0]
447 -------
448
449 ::
450
451    * Introduce RIC Manifest
452    * Move some testing functionality into a helper module
453    * Read the policyname to rmr type mapping from manifest
454    * Do PUT payload validation based on the manifest
455
456
457 [0.2.0]
458 -------
459
460 ::
461
462    * Bump rmr python dep version
463    * Include a Dockerized test receiver
464    * Stencil out the mising GET
465    * Update the OpenAPI
466    * Include a test docker compose file
467
468
469 [0.1.0]
470 -------
471
472 ::
473
474    * Initial Implementation