-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[release/1.7] Add a build tag to disable std plugin
import (#11202)
#11203
[release/1.7] Add a build tag to disable std plugin
import (#11202)
#11203
Conversation
Hi @pgimalac. Thanks for your PR. I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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-sigs/prow repository. |
c29d974
to
0ef0f3f
Compare
Honestly, I wonder if anyone is actually using this and if it should've been deprecated for v2.0. I think the hopes were to allow this to be used, but their usefulness is very limited, and I think Go itself largely abandoned any effort to make it better (I don't think it's even supported on all platforms). Perhaps it could even be considered to do the reverse, and make it "opt-in". |
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.
Please squash the commits and update https://github.com/containerd/containerd/blob/main/BUILDING.md#build-containerd
This is actually deprecated in https://github.com/containerd/containerd/blob/v2.0.1/RELEASES.md#deprecated-features So I guess we can just safely remove this feature |
Ah! Nice. Perhaps it would make sense to include this in existing release branches to already allow packagers to disable it (and then remove from main) |
c38d849
to
6092b9b
Compare
Done 👍 Note that this PR targets |
plugin
import (#11202)plugin
import (#11202)
I checked out of curiosity, using the build tag reduces the size of |
Signed-off-by: Pierre Gimalac <[email protected]>
6092b9b
to
2b12ef2
Compare
👋 Hello @AkihiroSuda @djdongjin @thaJeztah, is there anything you want me to change, or anything I can do to get this merged ? |
Yes, we would probably need that, so that builders can opt-out of this feature both for 1.7 and 2.0 until it's removed. Perhaps the alternative would be to handle this on the containerd side; that way we don't need a build-tag in It looks like the dynamic loading happens here; containerd/cmd/containerd/server/server.go Lines 473 to 481 in c3efa0c
So we can stub that out based on build-tag, e.g. having a //go:build no_dynamic_plugins
package server
func loadDynamic(path string) (loaded int, _ error) {
// dynamic plugins disabled through no_dynamic_plugins build-tag
return 0, nil
} And change the server code to call that instead; func LoadPlugins(ctx context.Context, config *srvconfig.Config) ([]plugin.Registration, error) {
// load all plugins into containerd
path := config.PluginDir //nolint:staticcheck
if path == "" {
path = filepath.Join(config.Root, "plugins")
}
if count, err := loadDynamic(path); err != nil { Or we could even move out the whole bit about loading the dynamic ones; func loadDynamic(ctx context.Context, config *srvconfig.Config) error {
path := config.PluginDir //nolint:staticcheck
if path == "" {
path = filepath.Join(config.Root, "plugins")
}
count, err := dynamic.Load(path)
if err != nil {
return err
}
if count > 0 || config.PluginDir != "" { //nolint:staticcheck
config.PluginDir = path //nolint:staticcheck
log.G(ctx).Warningf("loaded %d dynamic plugins. `go_plugin` is deprecated, please use `external plugins` instead", count)
}
return nil
} and stub; func loadDynamic(ctx context.Context, config *srvconfig.Config) error {
// dynamic plugins disabled through no_dynamic_plugins build-tag
return nil
} |
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.
Saw a minor issue in formatting. Changes otherwise LGTM for 1.7
Wondering if we should get the suggested changes for 2.0 in first (to make sure we don't "regress" and support something for 1.7, but don't support it on 2.0).
I opened a PR with similar changes targeting |
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
PR targeting |
What does this PR do?
Add a
no_dynamic_plugins
build tag inplugin/plugin_go18.go
to allow disabling theplugin
import, without usingstatic_build
(which is used by other dependencies).Motivation
See #11202.
Importing
plugin
makes binaries significantly bigger due to preventing some linker optimizations, I would like to avoid that.Removing the import causes a 31% reduction in binary size on one binary I work on (PR).