forked from netdata/netdata
-
Notifications
You must be signed in to change notification settings - Fork 0
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
[pull] master from netdata:master #285
Merged
Merged
Conversation
This file contains 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
* Improve context load time during startup * Remove cache for instance acquired --------- Co-authored-by: Costa Tsaousis <[email protected]>
* metrics cardinality improvements * fix ephemerality of metrics calculation
Reviewer's Guide by SourceryThis pull request includes several improvements and fixes related to metrics cardinality, context loading, memory handling, and more. Sequence diagram for improved context loading processsequenceDiagram
participant H as Host
participant T as Thread Pool
participant DB as SQLite DB
H->>T: Request context load
activate T
Note over T: Thread local SQLite connections
T->>DB: Open meta DB connection
T->>DB: Open context DB connection
T->>DB: Load context data
DB-->>T: Return context data
T->>H: Update host context
deactivate T
Note over T: Close DB connections
Note over T: Clear thread local vars
Class diagram for host context loading structureclassDiagram
class host_context_load_thread {
+uv_thread_t thread
+RRDHOST* host
+sqlite3* db_meta_thread
+sqlite3* db_context_thread
+bool busy
+bool finished
}
class RRDHOST {
+host_data
}
host_context_load_thread --> RRDHOST: loads context for
State diagram for thread lifecycle in context loadingstateDiagram-v2
[*] --> Idle
Idle --> Busy: Thread assigned
Busy --> Loading: Open DB connections
Loading --> Processing: Load context data
Processing --> Cleanup: Context loaded
Cleanup --> Idle: Close connections
Cleanup --> [*]: Thread finished
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.1)
Can you help keep this open source service alive? 💖 Please sponsor : )
Summary by Sourcery
Improve metrics cardinality calculations, context loading time during startup, and fix memory corruption in the database engine. Update the streaming thread to resize message arrays safely. Fix file descriptor leaks and correct a function name in the kickstart script.
Bug Fixes: