all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Ludovic Courtès" <ludo@gnu.org>
To: zimoun <zimon.toutoune@gmail.com>
Cc: guix-devel <guix-devel@gnu.org>,
	Luis Felipe <luis.felipe.la@protonmail.com>,
	44053@debbugs.gnu.org,
	Maxim Cournoyer <maxim.cournoyer@gmail.com>
Subject: bug#44053: ‘xdg-mime-database’ profile hook is slow
Date: Mon, 02 Nov 2020 12:12:40 +0100	[thread overview]
Message-ID: <87sg9sm2qf.fsf@gnu.org> (raw)
In-Reply-To: <87ft5zqn2a.fsf@dismail.de> (Joshua Branson's message of "Tue, 27 Oct 2020 19:14:05 -0400")

Hi,

Joshua Branson <jbranso@dismail.de> skribis:

> The "XDG MIME database" takes a while.
>
> #+BEGIN_SRC sh :results output :exports both
> time guix build --check $(guix gc -R $(guix gc --derivers $(readlink -f ~/.guix-profile)) |grep xdg-mime-database.drv)
> #+END_SRC
>
>
> #+RESULTS:
> : The following profile hook will be built:
> :    /gnu/store/lmhklgdscbfp5c6gl81skyz0azfg156m-xdg-mime-database.drv
> : building XDG MIME database...
> : successfully built /gnu/store/lmhklgdscbfp5c6gl81skyz0azfg156m-xdg-mime-database.drv
> : successfully built /gnu/store/lmhklgdscbfp5c6gl81skyz0azfg156m-xdg-mime-database.drv
> : /gnu/store/x8q8g9l0jhrpmjjm3xsh3ib1z8l79cyx-xdg-mime-database
> :
> : real	0m43.716s
> : user	0m3.626s
> : sys	0m0.258s

I found that the MIME database is computed only over the subset of the
packages in your profile that provide ‘share/mime/packages’, plus
‘shared-mime-info’.

In my profile, only LibreOffice provides that directory, so the union is
made over these two directories and that’s what ‘update-mime-database’
works on.

Apart from LibreOffice, I found that ‘share/mime/packages’ is provided
by at least: hugin, gcr, fontforge.  Most GUI packages don’t have it.
So in practice, we’re often rebuilding the exact same database.

Here’s the time taken by ‘update-mime-database’ alone:

--8<---------------cut here---------------start------------->8---
ludo@ribbon ~$ mkdir -p /tmp/mime/share/mime/packages
ludo@ribbon ~$ cd /tmp/mime/share/mime/packages
ludo@ribbon /tmp/mime/share/mime/packages$ for i in $(guix build libreoffice ^C
ludo@ribbon /tmp/mime/share/mime/packages$ for i in ~/.guix-profile/share/mime/packages/* ; do ln -s $i ; done
ludo@ribbon /tmp/mime/share/mime/packages$ ls -l
totalo 8
lrwxrwxrwx 1 ludo users 64 Nov  2 11:46 freedesktop.org.xml -> /home/ludo/.guix-profile/share/mime/packages/freedesktop.org.xml
lrwxrwxrwx 1 ludo users 60 Nov  2 11:46 libreoffice.xml -> /home/ludo/.guix-profile/share/mime/packages/libreoffice.xml
ludo@ribbon /tmp/mime/share/mime/packages$ cd /tmp/mime/
ludo@ribbon /tmp/mime$ time update-mime-database -V /tmp/mime/share/mime
Updating MIME database in /tmp/mime/share/mime...

Parsing source file /tmp/mime/share/mime/packages/freedesktop.org.xml...
Parsing source file /tmp/mime/share/mime/packages/libreoffice.xml...
Wrote 1124 strings at 2c - 6310
Wrote aliases at 6310 - 6be4
Wrote parents at 6be4 - 8468
Wrote literal globs at 8468 - 855c
Wrote suffix globs at 855c - 13514
Wrote full globs at 13514 - 13554
Wrote magic at 13554 - 2065c
Wrote namespace list at 2065c - 20798
Wrote icons list at 20798 - 2079c
Wrote generic icons list at 2079c - 213b8
Wrote types list at 213b8 - 22020

Note that '/tmp/mime/share' is not in the search path
set by the XDG_DATA_HOME and XDG_DATA_DIRS
environment variables, so applications may not
be able to find it until you set them. The
directories currently searched are:

- /home/ludo/.local/share
- /home/ludo/.guix-profile/share
- /run/current-system/profile/share
- /home/ludo/.guix-profile/share
- /run/current-system/profile/share


real    0m2.166s
user    0m0.278s
sys     0m0.056s
--8<---------------cut here---------------end--------------->8---

To be compared with:

--8<---------------cut here---------------start------------->8---
$ drv="$(guix gc -R $(guix gc --derivers $(readlink -f ~/.guix-profile)) |grep xdg-mime-database.drv)"
$ time guix build --check $drv
The following profile hook will be built:
   /gnu/store/jrmwsxpz3wmq37zx29lvb0r9nvcmdviz-xdg-mime-database.drv
building XDG MIME database...
successfully built /gnu/store/jrmwsxpz3wmq37zx29lvb0r9nvcmdviz-xdg-mime-database.drv
/gnu/store/npvj2sr9kxx48znh7zc8zmzwzs6brc90-xdg-mime-database

real    0m3.670s
user    0m1.428s
sys     0m0.029s
--8<---------------cut here---------------end--------------->8---

Thus, the build time itself is entirely taken by ‘update-mime-database’
(the 1.4s above is “overhead” in ‘guix build’ it would seem).

Ludo’.




  parent reply	other threads:[~2020-11-02 11:13 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-12 12:59 Removing/replacing “Guix in action” video from the home page? Ludovic Courtès
2020-10-12 14:31 ` Luis Felipe
2020-10-13  1:17   ` Joshua Branson
2020-10-13 17:19     ` Bonface M. K.
2020-10-13 20:59       ` Joshua Branson
2020-10-14  0:58         ` Bonface M. K.
2020-10-13 20:39   ` Ludovic Courtès
2020-10-14  0:14     ` Luis Felipe
2020-10-14 20:43       ` Joshua Branson
2020-10-16 10:27         ` Ludovic Courtès
2020-10-16 10:36           ` zimoun
2020-10-16 15:26             ` Luis Felipe
2020-10-18  3:42               ` Maxim Cournoyer
2020-10-18 11:13                 ` zimoun
2020-10-18 20:55                   ` Joshua Branson
2020-10-21  9:49                     ` ‘xdg-mime-database’ profile hook is slow Ludovic Courtès
2020-10-21 10:23                       ` zimoun
2020-10-27 23:14                       ` bug#44053: " Joshua Branson via Bug reports for GNU Guix
2020-10-27 23:14                         ` Joshua Branson
2020-10-28 21:48                         ` Luis Felipe
2020-10-28 22:38                           ` zimoun
2020-10-29 12:35                             ` Luis Felipe
2020-11-02 11:12                         ` Ludovic Courtès [this message]
2020-11-02 12:53                           ` bug#44053: " Ludovic Courtès
2020-11-02 14:04                             ` Ludovic Courtès
2020-11-03 23:32                             ` zimoun
2020-11-05 14:47                               ` Luis Felipe
2020-11-05 16:10                                 ` zimoun
2020-11-05 17:59                                   ` Luis Felipe
2020-11-06 12:55                                     ` zimoun
2020-11-06  9:10                                 ` Ludovic Courtès
2020-11-06 13:57                                   ` Luis Felipe
2020-11-08 16:31                                     ` Ludovic Courtès
2020-11-06  9:12                               ` Ludovic Courtès
2020-10-16 20:00             ` Removing/replacing “Guix in action” video from the home page? jbranso
2020-10-16 21:04               ` Luis Felipe
2020-10-28  0:55                 ` Joshua Branson
2020-10-28 12:59                   ` Tobias Geerinckx-Rice
2020-10-28 21:46                   ` jbranso
2020-10-31 21:56                     ` Ludovic Courtès
2020-11-01  0:50                     ` jbranso
2020-11-03 22:30                       ` zimoun
2020-10-16 19:57           ` jbranso

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=87sg9sm2qf.fsf@gnu.org \
    --to=ludo@gnu.org \
    --cc=44053@debbugs.gnu.org \
    --cc=guix-devel@gnu.org \
    --cc=luis.felipe.la@protonmail.com \
    --cc=maxim.cournoyer@gmail.com \
    --cc=zimon.toutoune@gmail.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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.