Skip to content
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

Merged

Conversation

harishsurf
Copy link
Contributor

@harishsurf harishsurf commented Aug 31, 2020

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:

  1. Make --package flag of the opm index export optional and allow comma-separated values
  2. Parallelize the ExportFromIndex API

With 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]

@openshift-ci-robot openshift-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Aug 31, 2020
@harishsurf
Copy link
Contributor Author

/test e2e-aws

Copy link
Contributor

@benluddy benluddy left a 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?

@harishsurf harishsurf force-pushed the parallelize-export branch 4 times, most recently from 6fcb6ef to 4942103 Compare September 8, 2020 18:56
@harishsurf harishsurf changed the title [WIP] Parallelize opm index export Parallelize opm index export Sep 8, 2020
@openshift-ci-robot openshift-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Sep 8, 2020
return err
}
if bundleVersion == "" {
// operator-registry does not care about the folder name
Copy link
Member

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)

Copy link
Contributor Author

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?)

Copy link
Member

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.

Copy link
Contributor Author

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

@harishsurf
Copy link
Contributor Author

/retest

@mvalahtv
Copy link

@harishsurf is it possible to test it?

@harishsurf
Copy link
Contributor Author

@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 opm index export --index quay.io/operatorhubio/catalog:latest to see it in action

@@ -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"
Copy link
Member

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?

Copy link
Contributor Author

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]>
@harishsurf
Copy link
Contributor Author

/test e2e-aws

@kevinrizza
Copy link
Member

/approve

@openshift-ci-robot openshift-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Sep 10, 2020
@mvalahtv
Copy link

@harishsurf it is working fine for me on local machine. I can export catalog in 2 mins. Great job !!!

Copy link
Member

@njhale njhale left a 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.

@njhale njhale changed the title Parallelize opm index export Bug 1880127: Parallelize opm index export Sep 17, 2020
@openshift-ci-robot openshift-ci-robot added bugzilla/severity-medium Referenced Bugzilla bug's severity is medium for the branch this PR is targeting. bugzilla/invalid-bug Indicates that a referenced Bugzilla bug is invalid for the branch this PR is targeting. labels Sep 17, 2020
@openshift-ci-robot
Copy link

@harishsurf: This pull request references Bugzilla bug 1880127, which is invalid:

  • expected the bug to target the "4.6.0" release, but it targets "4.6.z" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

Bug 1880127: Parallelize opm index export

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.

@harishsurf
Copy link
Contributor Author

/bugzilla refresh

@openshift-ci-robot openshift-ci-robot added bugzilla/severity-high Referenced Bugzilla bug's severity is high for the branch this PR is targeting. bugzilla/valid-bug Indicates that a referenced Bugzilla bug is valid for the branch this PR is targeting. and removed bugzilla/severity-medium Referenced Bugzilla bug's severity is medium for the branch this PR is targeting. bugzilla/invalid-bug Indicates that a referenced Bugzilla bug is invalid for the branch this PR is targeting. labels Sep 18, 2020
@openshift-ci-robot
Copy link

@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
  • bug is open, matching expected state (open)
  • bug target release (4.6.0) matches configured target release for branch (4.6.0)
  • bug is in the state NEW, which is one of the valid states (NEW, ASSIGNED, ON_DEV, POST, POST)

In response to this:

/bugzilla refresh

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.

Copy link
Member

@dinhxuanvu dinhxuanvu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Sep 18, 2020
@openshift-ci-robot
Copy link

[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:
  • OWNERS [dinhxuanvu,kevinrizza]

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-robot openshift-merge-robot merged commit e6088e1 into operator-framework:master Sep 18, 2020
@openshift-ci-robot
Copy link

@harishsurf: All pull requests linked via external trackers have merged:

Bugzilla bug 1880127 has been moved to the MODIFIED state.

In response to this:

Bug 1880127: Parallelize opm index export

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. bugzilla/severity-high Referenced Bugzilla bug's severity is high for the branch this PR is targeting. bugzilla/valid-bug Indicates that a referenced Bugzilla bug is valid for the branch this PR is targeting. lgtm Indicates that a PR is ready to be merged.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

8 participants