forked from cfengine/core
-
Notifications
You must be signed in to change notification settings - Fork 0
ENT-14329: Store only in-use measurement slots #21
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
Draft
nickanderson
wants to merge
4
commits into
CFE-612-increase-monitor-slots
Choose a base branch
from
ENT-14329-storage-on-use
base: CFE-612-increase-monitor-slots
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
2fbdc3d
ENT-6511: Increase cf-monitord measurement slots from 100 to 300
nickanderson 5f4e187
Added a DB migration for the enlarged Averages struct
nickanderson f84a087
ENT-14329: Store only in-use measurement slots
nickanderson cdee340
ENT-14329: Report spare observables instead of padding the name table
nickanderson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,113 @@ | ||
| /* | ||
| Copyright 2024 Northern.tech AS | ||
|
|
||
| This file is part of CFEngine 3 - written and maintained by Northern.tech AS. | ||
|
|
||
| This program is free software; you can redistribute it and/or modify it | ||
| under the terms of the GNU General Public License as published by the | ||
| Free Software Foundation; version 3. | ||
|
|
||
| This program is distributed in the hope that it will be useful, | ||
| but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| GNU General Public License for more details. | ||
|
|
||
| You should have received a copy of the GNU General Public License | ||
| along with this program; if not, write to the Free Software | ||
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA | ||
|
|
||
| To the extent this program is licensed as part of the Enterprise | ||
| versions of CFEngine, the applicable Commercial Open Source License | ||
| (COSL) may apply to this file if you as a licensee so wish it. See | ||
| included file COSL.txt. | ||
| */ | ||
|
|
||
| #include <dbm_migration.h> | ||
|
|
||
| #include <dbm_api.h> | ||
| #include <logging.h> | ||
|
|
||
| /* Number of measurement slots (CF_OBSERVABLES) before ENT-6511 raised it from | ||
| * 100 to 300. A record written by an agent from before that change is this many | ||
| * slots long. */ | ||
| #define CF_OBSERVABLES_BEFORE_ENT_6511 100 | ||
|
|
||
| typedef struct | ||
| { | ||
| time_t last_seen; | ||
| QPoint Q[CF_OBSERVABLES_BEFORE_ENT_6511]; | ||
| } AveragesBeforeEnt6511; | ||
|
|
||
| /* | ||
| * The observations (cf_observations.lmdb) and history (history.lmdb) databases | ||
| * store fixed-size Averages records keyed by time. Raising CF_OBSERVABLES grows | ||
| * that struct, so a record written by an older agent is shorter than the current | ||
| * struct. cf-monitord's own read path zero-extends short records, and it | ||
| * overwrites the observations records on its next cycle, but the history records | ||
| * are never rewritten. Migrate every old-size record to the current size, | ||
| * zero-filling the added slots, so all records on disk share one layout. | ||
| */ | ||
| static bool MeasurementsMigrationVersion0(DBHandle *db) | ||
| { | ||
| DBCursor *cursor; | ||
| if (!NewDBCursor(db, &cursor)) | ||
| { | ||
| Log(LOG_LEVEL_ERR, | ||
| "Unable to create database cursor during measurement DB migration"); | ||
| return false; | ||
| } | ||
|
|
||
| char *key; | ||
| void *value; | ||
| int key_size, value_size; | ||
|
|
||
| while (NextDB(cursor, &key, &key_size, &value, &value_size)) | ||
| { | ||
| /* Only fixed-size Averages records written before CF_OBSERVABLES was | ||
| * raised need expanding. Scalar bookkeeping keys (e.g. "DATABASE_AGE" | ||
| * and "version") are a different size and are left untouched. */ | ||
| if (value_size != (int) sizeof(AveragesBeforeEnt6511)) | ||
| { | ||
| continue; | ||
| } | ||
|
|
||
| /* Copy the old, shorter record into a full-size, zeroed struct so the | ||
| * slots added by the larger CF_OBSERVABLES read back as zero. */ | ||
| Averages expanded; | ||
| memset(&expanded, 0, sizeof(expanded)); | ||
| memcpy(&expanded, value, sizeof(AveragesBeforeEnt6511)); | ||
|
|
||
| // This will overwrite the entry | ||
| if (!DBCursorWriteEntry(cursor, &expanded, sizeof(expanded))) | ||
| { | ||
| Log(LOG_LEVEL_ERR, | ||
| "Unable to expand measurement record for key '%s' during migration", | ||
| key); | ||
| DeleteDBCursor(cursor); | ||
| return false; | ||
| } | ||
| } | ||
|
|
||
| if (!DeleteDBCursor(cursor)) | ||
| { | ||
| Log(LOG_LEVEL_ERR, | ||
| "Unable to close cursor during measurement DB migration"); | ||
| return false; | ||
| } | ||
|
|
||
| if (!WriteDB(db, "version", "1", sizeof("1"))) | ||
| { | ||
| Log(LOG_LEVEL_ERR, | ||
| "Failed to update version number during measurement DB migration"); | ||
| return false; | ||
| } | ||
|
|
||
| Log(LOG_LEVEL_INFO, "Migrated measurement database to version 1"); | ||
| return true; | ||
| } | ||
|
|
||
| const DBMigrationFunction dbm_migration_plan_observations[] = | ||
| { | ||
| MeasurementsMigrationVersion0, | ||
| NULL | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment should be more concise.