Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove auto-update timestamp for MDM profiles #16051

Closed
gillespi314 opened this issue Jan 11, 2024 · 4 comments
Closed

Remove auto-update timestamp for MDM profiles #16051

gillespi314 opened this issue Jan 11, 2024 · 4 comments
Assignees
Labels
bug Something isn't working as documented #g-mdm MDM product group :release Ready to write code. Scheduled in a release. See "Making changes" in handbook. ~released bug This bug was found in a stable release.
Milestone

Comments

@gillespi314
Copy link
Contributor

gillespi314 commented Jan 11, 2024

Goal:

Prevent future database migrations from causing changes to auto-update timestamps for MDM profiles. See #15725.

How:

  • Redefine schema to remove ON UPDATE CURRENT_TIMESTAMP from the updated_at column.
  • Rename column to uploaded_at.
  • Refactor datastore methods to explicitly set this value where appropriate.

Additional considerations:

  • How can we lint database migrations to detect migrations that impact tables with auto-updating timestamps?
@gillespi314 gillespi314 added bug Something isn't working as documented :reproduce Involves documenting reproduction steps in the issue :incoming New issue in triage process. labels Jan 11, 2024
@roperzh roperzh added :release Ready to write code. Scheduled in a release. See "Making changes" in handbook. ~released bug This bug was found in a stable release. #g-mdm MDM product group and removed :reproduce Involves documenting reproduction steps in the issue :incoming New issue in triage process. labels Jan 11, 2024
@mna mna self-assigned this Jan 29, 2024
@mna
Copy link
Member

mna commented Jan 29, 2024

Regarding this @gillespi314 :

Additional considerations:
How can we lint database migrations to detect migrations that impact tables with auto-updating timestamps?

I don't have a good automated solution for this, I see that the updated_at timestamps are used extensively in stats, policies and labels, and in mdm setup assistant stuff. What I'd suggest going forward is for us to avoid extrapolating application-related meaning from this field - it represents the last time the row was updated - any data in that row -, period. If we need a timestamp to represent a more specific use-case (as in this case, the time the profile's content was uploaded/modified), a distinct field should be used. The created_at/updated_at should be seen as very basic, "mechanical" metadata.

For QA, @sabrinabuckets and @georgekarrv , if possible I'd say we should wait for next release (i.e. post-freeze) to merge this instead of rushing it in the upcoming one as a) it doesn't fix something that would be broken for users, it's a fix to avoid running into similar issues as we have recently, and b) it'd be good to have more time in QA for this fix to be around, to notice any weird behaviour around profiles delivery, as those can be tricky.

@mna
Copy link
Member

mna commented Feb 5, 2024

For QA (@sabrinabuckets ) I think that having some profiles in delivered state (Win+Apple) before applying the upgrade to this change and checking that they stay in delivered state (don't become failing or pending,etc.) would be a good check.

@roperzh roperzh added this to the 4.45.0-tentative milestone Feb 5, 2024
@georgekarrv georgekarrv modified the milestones: 4.45.0-tentative, 4.44.1 Feb 9, 2024
@sabrinabuckets
Copy link
Contributor

Verified DB schema changes and performed smoke testing as recommended.

@fleet-release
Copy link
Contributor

MDM profiles rest,
Timestamps no longer shift,
Stability, our gift.

In the glass city,
Code refactors bring calmness,
Time's river slows, still.

Reflect in peace, now,
Databases won't migrate wrong,
Nature's quiet song.

@georgekarrv georgekarrv added :demo and removed :demo labels Feb 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working as documented #g-mdm MDM product group :release Ready to write code. Scheduled in a release. See "Making changes" in handbook. ~released bug This bug was found in a stable release.
Projects
None yet
Development

No branches or pull requests

7 participants