Matthew Miller
2017-Jul-29 15:21 UTC
[CentOS] Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
On Fri, Jul 28, 2017 at 07:56:41PM +0200, hw wrote:> Sure is: You get to manage your distribution yourself by picking the > versions of packages you figure might work together, which you are > supposed and required to do with Gentoo, especially when you run into > yet another dependency conflict. Only --- I guess --- you don?t get > the same level of control over the packages as you get with Gentoo > because there aren?t any USE flags.No, this isn't it it all. Modules are sets of packages which the distribution creators have selected to work together; you don't compose modules as an end-user.> Are you sure that all the added complexity and implicitly giving up a > stable platform by providing a mess of package versions is worth it?This is a false dichotomy. We will be providing a stable platform as the Base Runtime module.> How are the plans about dealing with bug reports, say, for squid 2.7, > for those who need that version for a feature which hasn?t been > included in current versions yet? Just wait a bit until the > distribution goes EOL? Is RH going to fix them once someone has > bought their support?I can't speak to Red Hat plans or Red Hat fixes. In Fedora, we might have, say, squid 3.5, squid 4.0, and squid 5 streams (stable, beta, and devel) all maintained at the same time. -- Matthew Miller <mattdm at fedoraproject.org> Fedora Project Leader
hw
2017-Aug-02 13:40 UTC
[CentOS] Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
Matthew Miller wrote:> On Fri, Jul 28, 2017 at 07:56:41PM +0200, hw wrote: >> Sure is: You get to manage your distribution yourself by picking the >> versions of packages you figure might work together, which you are >> supposed and required to do with Gentoo, especially when you run into >> yet another dependency conflict. Only --- I guess --- you don?t get >> the same level of control over the packages as you get with Gentoo >> because there aren?t any USE flags. > > No, this isn't it it all. Modules are sets of packages which the > distribution creators have selected to work together; you don't compose > modules as an end-user.Then maybe my understanding of packages and/or modules is wrong. What is considered a module? What if I replace, for example, apache N with apache N+2: Will that also replace the installed version of php with another one if the installed version doesn?t work with apache N+2?>> Are you sure that all the added complexity and implicitly giving up a >> stable platform by providing a mess of package versions is worth it? > > This is a false dichotomy. We will be providing a stable platform as > the Base Runtime module.What if apache N+2 doesn?t work with stdlibc++ N? Will the library and all that depends on it be replaced when I install apache N+2? Wouldn?t that change the platform?>> How are the plans about dealing with bug reports, say, for squid 2.7, >> for those who need that version for a feature which hasn?t been >> included in current versions yet? Just wait a bit until the >> distribution goes EOL? Is RH going to fix them once someone has >> bought their support? > > I can't speak to Red Hat plans or Red Hat fixes. In Fedora, we might > have, say, squid 3.5, squid 4.0, and squid 5 streams (stable, beta, and > devel) all maintained at the same time.That reminds me of Debian stable, testing and unstable. I guess you could say they are different platforms, and though you can install squid unstable from unstable on stable, you can not have squid stable from stable installed at the same time. IIUC, you want to make it so that you can have both (all) versions installed at the same time. Doesn?t that require some sort of multiplatform rather than a stable platform because different versions of something might require a different platform to run on? For example, I don?t understand how I was able to compile ffmpeg, which required at least gcc 4.9, with gcc 6 and have it working despite there was a major change concerning libraries. IIUC, changing gcc versions requires a lot of rebuilds because of that, i. e. basically a different platform. Centos 7 is still gcc 4.8, yet there don?t seem to be any incompatibilities. However, that may not work in all cases. So what is a platform, or what remains of it when all the software you?re using is of so recent versions that the platform itself should be more recent? Wouldn?t it make sense to also have different versions of the platform?
Matthew Miller
2017-Aug-02 14:27 UTC
[CentOS] Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
On Wed, Aug 02, 2017 at 03:40:42PM +0200, hw wrote:> >No, this isn't it it all. Modules are sets of packages which the > >distribution creators have selected to work together; you don't compose > >modules as an end-user. > > Then maybe my understanding of packages and/or modules is wrong. > What is considered a module? What if I replace, for example, > apache N with apache N+2: Will that also replace the installed > version of php with another one if the installed version doesn?t > work with apache N+2?The current design doesn't prioritize parallel installation of different streams of the same module. We expect to use containers to address that problem. Whether we explicitly block parallel install or only do so when there is an active conflict is an open question. (See the walkthrough.) In your example, if PHP is part of a "LAMP Stack" module, it's likely that it will be replaced with the matching version. But, modules can include other modules, so it may be that "LAMP Stack" is actually a _module stack_, including separate PHP and Apache modules. In that case, we could have different LAMP Stack streams with different combinations of PHP and Apache. I think this situation is in fact particularly likely. So, in your scenario, you'd start with a LAMP Stack stream which might include Apache HTTPD 2.4, PHP 5.6, and MariaDB 5.5 as a bundle. If you decide to switch to a newer HTTPD, you could choose either one with Apache HTTPD 2.6, PHP 5.6, and MariaDB 5.5 *or* one with Apache HTTPD 2.6, PHP 7.1, and MariaDB 10.3. This seems like it could become a combinatorial maintenance nightmare, but the idea is that the developers will just concentrate on their individual packages and module definitions, and automated testing will validate which combinations work (and then we can decide which combinations are supported, because working and supported are not necessarily the same thing).> >>Are you sure that all the added complexity and implicitly giving up a > >>stable platform by providing a mess of package versions is worth it? > >This is a false dichotomy. We will be providing a stable platform as > >the Base Runtime module. > What if apache N+2 doesn?t work with stdlibc++ N? Will the library > and all that depends on it be replaced when I install apache N+2? > Wouldn?t that change the platform?We'd have several options: * Include a compat lib in the Apache module * Add a compat lib to the base next to the existing one (as a fully-backwards-compatible update to the base) * Or, simply say that the Apache N+2 stream requires a certain minimum base.> >I can't speak to Red Hat plans or Red Hat fixes. In Fedora, we might > >have, say, squid 3.5, squid 4.0, and squid 5 streams (stable, beta, and > >devel) all maintained at the same time. > > That reminds me of Debian stable, testing and unstable. I guess you > could say they are different platforms, and though you can install > squid unstable from unstable on stable, you can not have squid stable > from stable installed at the same time.Yes. :)> IIUC, you want to make it so that you can have both (all) versions installed > at the same time. Doesn?t that require some sort of multiplatform rather than > a stable platform because different versions of something might require a > different platform to run on?No; this is currently out of scope. It'd be awesome if we could, but we think it's less important in an increasingly containerized world. But, feedback on how important this is to users will help us prioritize. (We know not everyone is ready for containers yet.) [...]> So what is a platform, or what remains of it when all the software > you?re using is of so recent versions that the platform itself should > be more recent? Wouldn?t it make sense to also have different > versions of the platform?The platform is hardware (or virt/cloud) enablement, as well as basic shared infrastructure. Newer versions might make it easier to work on newer hardware or new environments, but change is also increased risk for existing situations which work. And yes, it might in some cases make sense to have different versions of that. In Fedora, I expect we will have something similar to the current state: two currently supported base platform releases with an overlapping 13-month lifecycle. If this project is successful, how that will translate to RHEL (and hence CentOS) is a Red Hat business decision out of my scope. I assume, though, something longer-lived. :) -- Matthew Miller <mattdm at fedoraproject.org> Fedora Project Leader
Seemingly Similar Threads
- Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
- Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
- Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
- Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
- Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron