gerrod3

@gerrod

Joined on Jun 2, 2020

  • Current Priority List Performance degradation investigationhttps://github.com/pulp/pulpcore/issues/3970 AI: gerrod willing to take this one on Repository content querying performance https://github.com/pulp/pulpcore/issues/3969 AI: lmjachky to take this one on:try to narrow down the performance implications of upgrading pulpcore to 3.25+, like noted in #3970 proposals: store content in ArrayList vs reference repository versions as numbers instead of FKs
     Like  Bookmark
  • Goal: gather issues noticing during releases prioritize what to do first differentiate between "fix/first/fast" [F] and "change-proposal/soon" [RFE] Meeting Template ## MMM DD ### Previously (copy from prev-mtg-next-steps) ### Notes ### Next Steps
     Like  Bookmark
  • Domains Techincal Deep Dive Oct 26, 2022 slides: https://hackmd.io/@gerrod/Hk40ibLEj#/ What are Domains class Domain(BaseModel, AutoAddObjPermsMixin): name = models.TextField(null=False, unique=True) description = models.TextField(null=True) # Storage class is required, optional settings are validated by serializer
     Like  Bookmark
  • Domains Current Development State Oct 3, 2022 pulpcore: https://github.com/pulp/pulpcore/pull/3190 pulp_file: https://github.com/pulp/pulp_file/pull/810/ discourse: https://discourse.pulpproject.org/t/new-multi-tenancy-feature-domains/635/3 Domain Model class Domain(BaseModel, AutoAddObjPermsMixin): name = models.TextField(null=False, unique=True)
     Like  Bookmark
  • Here is a list of all the models in pulpcore and if I decided to add a domain relation. For uniqueness constraint, fields in parenthesis () are unique_together constrained, else it is unique=True Objects to not have a domain Model(base) Uniqueness constraint Notes BaseModel None
     Like  Bookmark