-
Notifications
You must be signed in to change notification settings - Fork 252
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
Bug 1880127: Parallelize opm index export #429
Bug 1880127: Parallelize opm index export #429
Conversation
8ad9be1
to
2379eb6
Compare
/test e2e-aws |
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.
A little test coverage would go a long way toward feeling confident in this kind of change. It looks like there would be a lot of refactoring involved to make this unit testable. Maybe adding a few solid end-to-end tests is a decent compromise?
6fcb6ef
to
4942103
Compare
pkg/lib/indexer/indexer.go
Outdated
return err | ||
} | ||
if bundleVersion == "" { | ||
// operator-registry does not care about the folder name |
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 feels odd, why not just describe what we're doing rather than why it is happening? It feels like a comment that would quickly go out of date if another module changed behavior. It also probably means that bundleVersion
is the wrong variable to set here (either bundleVersion
should actually be dirPrefix
or something like that, or we should set the value of the variable further down)
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.
I don't think this check is needed in the newly modified code (maybe I am wrong?)
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.
ah, you are mostly right. the problem is the case where bundleVersion is not set -- technically version is an optional field on the CSV. in that case, you still need to generate something for the value of the folder.
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.
Added the check to generate a random name when empty
4942103
to
b8d1c06
Compare
/retest |
@harishsurf is it possible to test it? |
@mvalahtv, I have added an e2e test that uses the community operator's catsrc image. If you had to test it locally, once you pull down this code, you could run |
test/e2e/opm_test.go
Outdated
@@ -44,6 +44,7 @@ var ( | |||
indexImage1 = "quay.io/olmtest/e2e-index:" + indexTag1 | |||
indexImage2 = "quay.io/olmtest/e2e-index:" + indexTag2 | |||
indexImage3 = "quay.io/olmtest/e2e-index:" + indexTag3 | |||
indexImage4 = "quay.io/operatorhubio/catalog:latest" |
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.
Can we use one of the test indexes that we already build rather than rely on an external dependency that we don't control?
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.
changed it to use indexImage2
This change makes --package flag optional and allows multiple packages to be specified. It also parallelizes the export by leveraging go's concurrency Signed-off-by: Harish <[email protected]>
b8d1c06
to
338b4fa
Compare
/test e2e-aws |
/approve |
@harishsurf it is working fine for me on local machine. I can export catalog in 2 mins. Great job !!! |
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.
Looking good. I think we want to attach a BZ so we can get this merged. It improves UX considerably from what we have today.
@harishsurf: This pull request references Bugzilla bug 1880127, which is invalid:
Comment In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/bugzilla refresh |
@harishsurf: This pull request references Bugzilla bug 1880127, which is valid. The bug has been moved to the POST state. The bug has been updated to refer to the pull request using the external bug tracker. 3 validation(s) were run on this bug
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
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
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dinhxuanvu, harishsurf, kevinrizza The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@harishsurf: All pull requests linked via external trackers have merged: Bugzilla bug 1880127 has been moved to the MODIFIED state. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Description of the change:
This PR modifies
opm index export
to ensure exporting is done in parallel with an intent to cut down the overall time taken. It is achieved by the following two changes:--package
flag of theopm index export
optional and allow comma-separated valuesExportFromIndex
APIWith this change, the export is possible by just specifying the index-image
Motivation for the change:
Unpacking and exporting of community operators takes >2hrs as it is done synchronously
Signed-off-by: Harish [email protected]