Jump to: navigation, search

Difference between revisions of "CinderCaracalMidCycleSummary"

(Session Two: R-7: 14 February 2024)
(Session Two: R-7: 14 February 2024)
Line 31: Line 31:
 
** We have a total of 6 features in which 3 of them have dependencies on other patches.
 
** We have a total of 6 features in which 3 of them have dependencies on other patches.
 
** #action: Review features
 
** #action: Review features
 +
 +
* os-brick release 22nd Feb, 2024
 +
** Discussed about potential patches that should be focused on for the release
 +
** https://review.opendev.org/c/openstack/os-brick/+/906743
 +
** https://review.opendev.org/c/openstack/os-brick/+/891318
 +
 +
* Adding possibility for user facing information in volume types
 +
** Usecase: We want properties like encryption and replication to be user visible
 +
** It is required for some cases where we want to know if the volume created with a particular type, it will be replicated or encrypted
 +
** Currently the user visible extra specs is a way to show it but the properties goes through scheduler so it causes a problem with encryption
 +
*** Handling encryption this way would need code written to make it pass scheduler
 +
** Replication should work when using Cinder replication
 +
*** It is possible that the backend enables replication but doesn't report to cinder about it
 +
** #action: check if anyone using backend encryption?  can we remove it?
 +
** #action: continue the discussion on the mailing list and eventually write a spec mentioning all details
  
 
*
 
*

Revision as of 23:01, 14 February 2024

Introduction

Welcome to the Cinder 2024.1 (Caracal) midcycle summary page!

We conduct 2 midcycles between the OpenStack development cycle (6 months) that acts as a checkpoint for the following:

  • Revisiting/following up the topics discussed at PTG
  • Discuss topics that were missed during PTG due to author's unavailability or lack of time or any other reason
  • Status of work items based on the milestone


There could be more reasons but the above highlighted are the major ones.

For 2024.2 (Caracal), the Midcycle will happen at:

  1. R-17: 6th December, 2023 (Wednesday) 1400-1600 UTC
  2. R-7: 14th February, 2024 (Wednesday) 1400-1600 UTC


Etherpad: https://etherpad.opendev.org/p/cinder-caracal-midcycles

Session Two: R-7: 14 February 2024

recordings

  • Recording for Midcycle 2 (YouTube):


We held our second midcycle of the 2024.1 Caracal development cycle on 14th February, 2024 1400-1600 UTC.

  • Feature reviews
  • Adding possibility for user facing information in volume types
    • Usecase: We want properties like encryption and replication to be user visible
    • It is required for some cases where we want to know if the volume created with a particular type, it will be replicated or encrypted
    • Currently the user visible extra specs is a way to show it but the properties goes through scheduler so it causes a problem with encryption
      • Handling encryption this way would need code written to make it pass scheduler
    • Replication should work when using Cinder replication
      • It is possible that the backend enables replication but doesn't report to cinder about it
    • #action: check if anyone using backend encryption? can we remove it?
    • #action: continue the discussion on the mailing list and eventually write a spec mentioning all details

Session One: R-17: 06 December 2023

recordings


We held our first mid cycle of the 2024.1 (Caracal) development Cycle on 6th December (R-17 week) between 1400-1600 UTC.

  • Retiring cinderlib
    • Etherpad: https://etherpad.opendev.org/p/cinderlib-retirement
    • Major consumers of Cinderlib are Ember-CSI and oVirt
      • They are happy with old releases of cinderlib and don't require new development work into it
    • We will not transition to 2024.1 (Caracal) development
    • We will not accept any new patches in cinderlib
    • We will support the last 3 stable releases i.e. 2023.2, 2023.1 and Zed (approximately 18 months)
    • EM branches will transition to Unmantained (Victoria -> Yoga)
    • #action: rosmaita to follow up on work associated with the deprecation
  • Rework of JovianDSS Driver
  • acceptable usage of `__init__()` in os-brick
    • Patch: https://review.opendev.org/c/openstack/os-brick/+/887576
    • Eric's concern is that this code in __init__ shouldn't affect other brick connectors
      • by failing initialization of other connectors
      • by holding the initialization for too long (a heavy weight call to backend)
    • The above concerns shouldn't be an issue in this case
    • #action: document standards for working on os-brick connectors
  • Several patches to the StorPool Cinder driver
    • Storpool driver reports multiple pools under one backend
    • This can be problematic if we are using image volume cache or cinder as glance backend
    • When using the optimized clone path to create a bootable volume from image, we check if the image-volume exists in the same host (host@backend#pool) to clone it from
    • The pool part can be different for the image-volume and the new volume to be created skipping the optimized path
    • Since storpool driver supports cross pool cloning, it can be reported as a capability which can be leveraged to perform cross pool volume cloning in the optimized path
    • The only problem here is this feature shouldn't be added in the support matrix since it might have end users asking other vendors for this feature whereas this feature is a specific case and doesn't provide any benefit in general operations
    • #action Review the storpool patch