File: delete-image-objects-9d4b4e0fff36a23f.yaml

package info (click to toggle)
python-openstacksdk 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,352 kB
  • sloc: python: 122,960; sh: 153; makefile: 23
file content (18 lines) | stat: -rw-r--r-- 1,109 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
fixes:
  - Delete swift objects uploaded in service of uploading images
    at the time that the corresponding image is deleted. On some clouds,
    image uploads are accomplished by uploading the image to swift and
    then running a task-import. As shade does this action on behalf of the
    user, it is not reasonable to assume that the user would then be aware
    of or manage the swift objects shade created, which led to an ongoing
    leak of swift objects.
  - Upload swift Large Objects as Static Large Objects by default. Shade
    automatically uploads objects as Large Objects when they are over a
    segment_size threshold. It had been doing this as Dynamic Large Objects,
    which sound great, but which have the downside of not deleting their
    sub-segments when the primary object is deleted. Since nothing in the
    shade interface exposes that the object was segmented, the user would not
    know they would also need to find and delete the segments. Instead, we
    now upload as Static Large Objects which behave as expected and delete
    segments when the object is deleted.