Method implementation for REST API PlatformResources controller#7
Draft
zack-rma wants to merge 11 commits into
Conversation
…er. XML methods untested
Merged
6 tasks
500efb2 to
d9cdd7f
Compare
adamkorynta
pushed a commit
that referenced
this pull request
Aug 15, 2025
…pendcs#1090) I noticed in Instance Viewer that cwms_ccp.notify_for_comp came up for having a lot of disk reads and buffer gets. On NAE's DB it's the #7 SQL with 14.3M disk reads and 677M buffer gets. On Omaha's DB it's #9 with 44.2M disk reads and 2.1G buffer gets. The package calls: ``` ccp.cwms_cpp.notify_tsdatastored; ``` Which calls this SQL: ``` select distinct cc.loading_application_id from cp_comp_depends cd, cp_computation cc where cd.ts_id = :p_ts_code and cc.enabled = 'Y' and cc.loading_application_id is not null and cd.computation_id = cc.computation_id; ``` --------- Co-authored-by: JeremyDKellett <Jeremy.D.Kellett@usace.army.mil>
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
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.
Problem Description
Fixes #228.
Missing method functionality in Toolkit, including filtering by transport medium type.
Solution
Adds missing methods to Toolkit for PlatformResources controller in REST API.
how you tested the change
Tested in REST API with integration testing against OpenTSDB.
XML implementations are as of yet untested.
Where the following done:
(Formerly called regression tests.)
If you aren't sure leave unchecked and we will help guide you to want needs changing where.