Closed KateGo520 closed 2 years ago
@jknipper @databus23 Could you help me review this issue? Thx :p By the way, have you ever encountered such errors when upgading the libraries?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
(The purpose of this report is to alert
sapcc/kubernikus
to the possible problems whensapcc/kubernikus
try to upgrade the following dependencies)An error will happen when upgrading libraries Masterminds/sprig,_prometheus/client_golang_and coreos/ignition:
For example----
github.com/prometheus/client_golang
-Latest Version: v1.7.1 (Latest commit fe7bd95 17 days ago) -Where did you use it: https://github.com/sapcc/kubernikus/search?q=prometheus%2Fclient_golang%2Fprometheus&unscoped_q=prometheus%2Fclient_golang%2Fprometheus -Detail:
Similar issues can also happen when upgrading libraries Masterminds/sprig, and coreos/ignition.
I investigated the libraries' (prometheus/client_golang, Masterminds/sprig and coreos/ignition) release information and found the root cause of this issue is that----
These dependencies all added Go modules in the recent versions.
They all comply with the specification of "Releasing Modules for v2 or higher" available in the Modules documentation. Quoting the specification:
This "github.com/my/module/v3/mypkg" is not the
physical path
. So earlier versions of Go (including those that don't have minimal module awareness) plus all tooling (like dep, glide, govendor, etc) don't haveminimal module awareness
as of now and therefore don't handle import paths correctly.Solution
1. Migrate to Go Modules.
Go Modules is the general trend of ecosystem, if you want a better upgrade package experience, migrating to Go Modules is a good choice.
Migrate to modules will be accompanied by the introduction of virtual paths(It was discussed above).
Then the downstream projects might be negatively affected in their building if they are module-unaware (Go versions older than 1.9.7 and 1.10.3; Or use third-party dependency management tools, such as: Dep, glide, govendor…).
2. Maintaining v2+ libraries that use Go Modules in Vendor directories.
If
sapcc/kubernikus
want to keep using the dependency manage tools (like dep, glide, govendor, etc), and still want to upgrade the dependencies, can choose this fix strategy. Manually download the dependencies into the vendor directory and do compatibility dispose(materialize the virtual path or delete the virtual part of the path). Avoid fetching the dependencies by virtual import paths. This may add some maintenance overhead compared to using modules.There are 2 module users downstream, such as sapcc/kubernetes-operators, sapcc/terraform-provider-ccloud…) https://github.com/search?q=sapcc%2Fkubernikus+filename%3Ago.mod
As the import paths have different meanings between the projects adopting module repos and the non-module repos, materialize the virtual path is a better way to solve the issue, while ensuring compatibility with downstream module users. A textbook example provided by repo
github.com/moby/moby
is here: https://github.com/moby/moby/blob/master/VENDORING.md https://github.com/moby/moby/blob/master/vendor.conf In the vendor directory,github.com/moby/moby
adds the /vN subdirectory in the corresponding dependencies. This will help more downstream module users to work well with your package3. Request upstream to do compatibility processing.
The
prometheus/client_golang
have 1048 module-unaware users in github, such as: AndreaGreco/mqtt_sensor_exporter, seekplum/plum_exporter, arl/monitoring… https://github.com/search?q=prometheus%2Fclient_golang+filename%3Avendor.conf+filename%3Avendor.json+filename%3Aglide.toml+filename%3AGodep.toml+filename%3AGodep.json&type=CodeSummary
You can make a choice when you meet this DM issues by balancing your own development schedules/mode against the affects on the downstream projects.
For this issue, Solution 1 can maximize your benefits and with minimal impacts to your downstream projects the ecosystem.
References
Do you plan to upgrade the libraries in near future? Hope this issue report can help you ^_^ Thank you very much for your attention.
Best regards, Kate