-
Notifications
You must be signed in to change notification settings - Fork 189
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
Send additional data to SCC (jsc#SUMA-406) #9595
base: master
Are you sure you want to change the base?
Send additional data to SCC (jsc#SUMA-406) #9595
Conversation
👋 Hello! Thanks for contributing to our project. If you are unsure the failing tests are related to your code, you can check the "reference jobs". These are jobs that run on a scheduled time with code from master. If they fail for the same reason as your build, it means the tests or the infrastructure are broken. If they do not fail, but yours do, it means it is related to your code. Reference tests: KNOWN ISSUES Sometimes the build can fail when pulling new jar files from download.opensuse.org . This is a known limitation. Given this happens rarely, when it does, all you need to do is rerun the test. Sorry for the inconvenience. For more tips on troubleshooting, see the troubleshooting guide. Happy hacking! |
Suggested tests to cover this Pull Request
|
bce5c2f
to
ac66fa7
Compare
a8c00ed
to
8363b6e
Compare
java/code/src/com/suse/scc/registration/SCCSystemRegistrationSystemDataAcquisitor.java
Outdated
Show resolved
Hide resolved
I still need to check the python parts |
2d82fd4
to
3153c3c
Compare
@wweellddeerr seems that hw refresh failed in the acceptance tests. We need to check what the error is |
950d3fb
to
1b6b0a1
Compare
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.
Just some small questions, other then that, all looks good to me
java/code/src/com/suse/manager/reactor/messaging/JobReturnEventMessageAction.java
Outdated
Show resolved
Hide resolved
|
||
CREATE TABLE suseServerSAPWorkload ( | ||
id BIGINT CONSTRAINT suse_sap_workload_id_pk PRIMARY KEY GENERATED ALWAYS AS IDENTITY, | ||
system_id VARCHAR(5) NOT NULL, |
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.
Do we have any information about the size of these fields? For system_id it looks like it will not be bigger then 5 (the regex in go code expects 3, but what about the instance_type size?
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.
For system_id
, indeed it shouldn't exceed 3 characters for now, so the size of 5 will be sufficient. For instance_type
, however, I only have some examples from the issue, and based on those, 128 should be enough. Do you think it might need to be larger?
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.
for system_id lookd fine to me. For the instance type why don't you specified just varchar without any limit? Form the docs we have[1]: If specified, the length n must be greater than zero and cannot exceed 10,485,760. If character varying (or varchar) is used without length specifier, the type accepts strings of any length.
And I think in terms of space it will not have any side effect, since the n
in the varchar is just limiting the max size (on contrary to the char, which is reserving the defined space)
@aaannz was studying the PostgreSQL type, do you have any input on this one?
[1] https://www.postgresql.org/docs/current/datatype-character.html
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.
There is no db space saving by using limited varchar. Performance impact consist of one length check extra.
So the question is only if we want to have some business logic in the database. If we really can't have long ids and the rest of the system could not handle it, so we limit it here.
But if that is the case, we should check for the length before trying insert anyway so we can properly handle that failure instead of relying on insert failure.
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.
What concerns me more is the name of the row. We already have system id with different meaning elsewhere.
This is related to sap, right? Can we name it like sap_system_id or something?
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.
Thank you for all the insides @aaannz
I agree with the column name (even it's in the context of the SAP table) we should make it clear that it's a SAP system id, to not get confused with any other ID on our application.
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.
Thank you for the input. Considering it, I will remove the size limits and rename the column.
c640cb8
to
b0d0cf7
Compare
b0d0cf7
to
9a863be
Compare
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.
LGTM
What does this PR change?
It adds:
It changes:
GUI diff
No difference.
Documentation
No documentation needed: add explanation. This can't be used if there is a GUI diff
No documentation needed: only internal and user invisible changes
Documentation issue was created: Link for SUSE Manager contributors, Link for community contributors.
API documentation added: please review the Wiki page Writing Documentation for the API if you have any changes to API documentation.
(OPTIONAL) Documentation PR
DONE
Test coverage
Unit tests were added
DONE
Links
Issue(s): https://github.com/SUSE/spacewalk/issues/26031
Port(s): https://github.com/SUSE/spacewalk/pull/26131
Changelogs
Make sure the changelogs entries you are adding are compliant with https://github.com/uyuni-project/uyuni/wiki/Contributing#changelogs and https://github.com/uyuni-project/uyuni/wiki/Contributing#uyuni-projectuyuni-repository
If you don't need a changelog check, please mark this checkbox:
If you uncheck the checkbox after the PR is created, you will need to re-run
changelog_test
(see below)Re-run a test
If you need to re-run a test, please mark the related checkbox, it will be unchecked automatically once it has re-run:
Before you merge
Check How to branch and merge properly!