From: Claudius Heine <claudius.heine.ext@siemens.com>
To: Alexander Smirnov <asmirnov@ilbers.de>,
Claudius Heine <ch@denx.de>, Jan Kiszka <jan.kiszka@siemens.com>,
isar-users@googlegroups.com
Subject: Re: [PATCH v4 0/4] Basic binary cache implementation
Date: Thu, 5 Oct 2017 10:38:44 +0200 [thread overview]
Message-ID: <09d3a91b-f1f8-9570-fc92-216673d05d96@siemens.com> (raw)
In-Reply-To: <47ed69c7-a279-6f9d-511a-2a60d816ac0b@ilbers.de>
Hi Alex,
On 10/04/2017 08:47 PM, Alexander Smirnov wrote:
> On 10/04/2017 08:34 PM, Claudius Heine wrote:
>> Hi Alex,
>>
>> On Wed, 2017-10-04 at 17:29 +0300, Alexander Smirnov wrote:
>>> On 10/04/2017 02:57 PM, Jan Kiszka wrote:
>>>> On 2017-10-04 10:32, [ext] Claudius Heine wrote:
>>>>> Hi,
>>>>>
>>>>> On 10/0 '2/2017 05:45 PM, Alexander Smirnov wrote:
>>>>>> Hello everybody,
>>>>>>
>>>>>> this series introduces basic binary caching for Isar.
>>>>>>
>>>>>> There is a new layer: meta-isar-bin which is intended to be the
>>>>>> binary
>>>>>> cache. All the packages that are built in Isar are stored in
>>>>>> this
>>>>>> cache using reprepro.
>>>>>>
>>>>>> Having the separate layer makes possible to manage this cache
>>>>>> separately
>>>>>> from the Isar build tree. So once you have built your packages,
>>>>>> you could
>>>>>> re-use this cache for further builds.
>>>>>
>>>>> We still have to talk about your requirement for the cache to be
>>>>> sharable and your resulting implementation of it as a meta layer.
>>>>>
>>>>> Since I still don't see the benefit of a sharable cache and think
>>>>> that
>>>>> putting binary packages into some kind of strange meta layer is
>>>>> not the
>>>>> right solution and could potentially create more problems that is
>>>>> solves
>>>>> because its very much in conflict with the fundamental idea of a
>>>>> meta
>>>>> layer.
>>>
>>> The last statement is a bit strange for me. The idea of meta layers
>>> is
>>> to split software stack into logical layers that could be
>>> enabled/disabled on demand. Having binaries or recipes doesn't
>>> matter
>>> here, it's just the way how software is provided to build.
>>>
>>>>
>>>> Indeed, state like this (disclaimer: i didn't look into all
>>>> details), it
>>>> sounds like a weird architecture to me as well. Thinking of an
>>>> artifact
>>>> cache, I would rather expect something like OE's sstate that one
>>>> may
>>>> preserve across builds, share between devs, or whatever. If it's
>>>> there,
>>>> the build system consults it, if not, it rebuilds. But sstate is
>>>> not a
>>>> layer, for some good reasons.
>>>>
>>>
>>> Let me again summarize major points here. Isar is the build system
>>> designed to work with binary packages. That's the key feature of
>>> this
>>> product and main difference from OE-like systems. The Isar
>>> architecture
>>> assumes to be designed around binary packages, what provides
>>> absolutely
>>> different approach how binary images could be generated using
>>> bitbake.
>>>
>>> According to the Claudius's vision, that everything should always be
>>> built from sources - Isar is not the best option here, Yocto and OE
>>> are
>>> much better, because they were initially designed for this work.
>>> Attempts to apply OE design and philosophy to Isar could have
>>> negative
>>> impact and limit possible ways to implement custom features, because
>>> OE
>>> wasn't designed for this features.
>>> Also I wonder why we are able to use binary Debian packages, while
>>> the
>>> rest of software should be built from sources.
>>
>> You are still not understanding me. I never said you have to build
>> every package from source code in isar. Instead I mean that you have to
>> build the root filesystem / images / packages ... ( every output of
>> isar) from all the available input of isar (upstream debian
>> repositories, meta-layers, source code repositories, etc.).
>
> Yes, and I want to add my custom apt repo to the Isar, even if I have
> source code for packages in it.
>
>>
>> If you create intermediate products in the form of caches, then that is
>> ok. But if you put those intermediate products into repositories and
>> begin to distribute them, then this causes problems as I described
>> before.
>>
>
> If you mean version-control repository, then nobody asks you to do this.
> If you mean apt repository, Isar should be able to export it with your
> product (application layer), like I've mentioned with examples in my mail.
>
>> Distributing intermediate products is always a bad idea and systems
>> should not be designed with this in mind or even advertise it. That has
>> nothing to do with 'OE' or 'Debian' or any other System, its just
>> general software developing and maintenance rules.
>
> That's contradictory sentences for me. Debian distributes both:
>
> - Complete iso, USB etc... images
> - Apt repository
>
> And both are intermediate in terms of your custom product.
But thats a different feature. Yes eventually isar should export a
tarball of the repository to the deploy dir or similar. But that is not
what this patchset is about.
>
> So if you want to develop package for Debian, you do not need to build
> whole Debian from the scratch, you likely use intermediate product
> instead - install base system and tools from binaries.
>
> Isar is based on intermediate product, i.e. Debian apt repository.
The Debian repository is not a intermediate product for isar! But the
resulting apt repository that is created by isar is a intermediate or
final product of isar because it is generated by isar, therefor it
should not be used as the input of a build process! But I am ok with it
being used as a local cache! The difference is that the cache is not
normally distributed to the user while the input is normally distributed
to the user. Cache is internal to the build process while output and
input is external.
>
> So I still don't understand, why you consider that 'apt-get install'
> from Debian repository is OK, but 'apt-get install' from custom
> repository is a bad idea?
This discussion is frankly moving from frustrating to slightly infuriating.
Implementing the possibility to use additional apt repositories that are
added to the multistrap.conf and are defined in a bitbake variable is
also a totally fine feature. But that is also not what this patchset is
about.
I don't appreciate you putting words in my mouth and using straw men
arguments and moving the goalpost is not how we can discuss these things
constructively.
>
>>
>> It is ok to to this occasionally on a case by case basis, but it should
>> not be a requirement or even an advertised feature.
>>
>>> ...
>>
>> In the rest of your email or this thread I still don't see any reason
>> why sharing caches is necessary.
>>
>> Building the output from the input is fine once to fill the caches.
>> Just to be sure that you are in fact able to build the output from the
>> input. And I don't get why this is bad in your opinion.
>>
>
> Because I don't want to waste the time for the work that has been
> already done and tested.
>
> Just for sure, the release builds should be run from the scratch. And
> integration testing should be performed.
>
> Building everything from the scratch only guarantees that your package
> could be built, nothing more. But I'd prefer to delegate this task to CI.
>
>> I get that we can trust that Debian can build their packages from their
>> sources, so we don't need to test that, but at least test if we can
>> still build our own packages in isar.
>
> Sorry, didn't get this.
Yes I see, and I don't know how I can explain it any simpler.
Here is the main bad idea of this patch:
- Using a meta-layer as a place to dump isar generated output at.
meta-layers should only contain input data.
All my other arguments, that you don't seem to understand, are trying to
explain why this is a bad idea.
Also I would really like to have a package cache, the ability to export
the generated repository and the ability to used additional
repositories. But the way this is integrated mixes input and output of
the build system and makes many things unclear. So those 3 features
should be handled separately.
Claudius
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-54 Fax: (+49)-8142-66989-80 Email: ch@denx.de
prev parent reply other threads:[~2017-10-05 8:38 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-02 15:45 Alexander Smirnov
2017-10-02 15:45 ` [PATCH 1/4] meta-isar-bin: Add reprepro configs Alexander Smirnov
2017-10-02 15:45 ` [PATCH 2/4] meta-isar-bin: Generate cache repos Alexander Smirnov
2017-10-04 9:03 ` Henning Schild
2017-10-04 10:57 ` Alexander Smirnov
2017-10-04 14:09 ` Henning Schild
2017-10-02 15:45 ` [PATCH 3/4] meta-isar-bin: Populate cache Alexander Smirnov
2017-10-02 15:45 ` [PATCH 4/4] meta-isar-bin: Install packages via multistrap Alexander Smirnov
2017-10-04 9:05 ` Henning Schild
2017-10-04 10:59 ` Alexander Smirnov
2017-10-04 8:32 ` [PATCH v4 0/4] Basic binary cache implementation Claudius Heine
2017-10-04 11:57 ` Jan Kiszka
2017-10-04 14:29 ` Alexander Smirnov
2017-10-04 15:40 ` Henning Schild
2017-10-04 16:50 ` Alexander Smirnov
2017-10-04 16:58 ` Henning Schild
2017-10-04 17:34 ` Claudius Heine
2017-10-04 18:47 ` Alexander Smirnov
2017-10-05 8:38 ` Claudius Heine [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=09d3a91b-f1f8-9570-fc92-216673d05d96@siemens.com \
--to=claudius.heine.ext@siemens.com \
--cc=asmirnov@ilbers.de \
--cc=ch@denx.de \
--cc=isar-users@googlegroups.com \
--cc=jan.kiszka@siemens.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox