unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
@ 2021-12-26 16:21 Tobias Geerinckx-Rice via Guix-patches via
  2021-12-27 21:12 ` Mathieu Othacehe
  0 siblings, 1 reply; 9+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2021-12-26 16:21 UTC (permalink / raw)
  To: 52805

Unlike ‘rm -rf ~/.cache/guix/substitute’ this respects XDG_CACHE_HOME.

Use the --OPTION form for consistency with the existing ‘guix substitute’
interface, where other guix subcommands would prefer an ACTION.  This
subcommand really supports only one OPTION at a time, anyway.

* guix/scripts/substitute.scm (guix-substitute):
Add a new ‘--clear-cache’ option argument.
(show-help): Document it.
---
 guix/scripts/substitute.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm
index c044e1d47a..1e71b4848b 100755
--- a/guix/scripts/substitute.scm
+++ b/guix/scripts/substitute.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2014 Nikita Karetnikov <nikita@karetnikov.org>
 ;;; Copyright © 2018 Kyle Meyer <kyle@kyleam.com>
 ;;; Copyright © 2020 Christopher Baines <mail@cbaines.net>
+;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -40,7 +41,7 @@ (define-module (guix scripts substitute)
   #:use-module (guix cache)
   #:use-module (gcrypt pk-crypto)
   #:use-module (guix pki)
-  #:use-module ((guix build utils) #:select (mkdir-p))
+  #:use-module ((guix build utils) #:select (delete-file-recursively mkdir-p))
   #:use-module ((guix build download)
                 #:select (uri-abbreviation nar-uri-abbreviation
                           (open-connection-for-uri
@@ -239,6 +240,8 @@ (define-syntax with-networking
 (define (show-help)
   (display (G_ "Usage: guix substitute [OPTION]...
 Internal tool to substitute a pre-built binary to a local build.\n"))
+  (display (G_ "
+      --clear-cache      forget previously cached availability information"))
   (display (G_ "
       --query            report on the availability of substitutes for the
                          store file names passed on the standard input"))
@@ -749,6 +752,10 @@ (define reply-port
   (with-networking
    (with-error-handling                           ; for signature errors
      (match args
+       (("--clear-cache")
+        ;; This is meant to be a big hammer, so don't pussyfoot around with
+        ;; maybe-remove-expired-cache-entries.
+        (delete-file-recursively %narinfo-cache-directory))
        (("--query")
         (let ((acl (current-acl)))
           (let loop ((command (read-line)))
-- 
2.34.0





^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2021-12-26 16:21 [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option Tobias Geerinckx-Rice via Guix-patches via
@ 2021-12-27 21:12 ` Mathieu Othacehe
  2021-12-27 21:20   ` Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 1 reply; 9+ messages in thread
From: Mathieu Othacehe @ 2021-12-27 21:12 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 52805


Hello Tobias,

> Unlike ‘rm -rf ~/.cache/guix/substitute’ this respects XDG_CACHE_HOME.

This script is invoked by the daemon as root. In that context,
%narinfo-cache-directory is "/var/guix/substitute/cache", whereas when
run as an user it is likely: "~/.cache/guix/substitute".

That would mean that users need to run "sudo guix substitute
--clear-cache". Moreover this script is an internal undocumented tool,
so I'm not in favor of adding user commands to it.

Maybe "guix gc" would be a better place?

Thanks,

Mathieu




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2021-12-27 21:12 ` Mathieu Othacehe
@ 2021-12-27 21:20   ` Tobias Geerinckx-Rice via Guix-patches via
  2021-12-29 16:49     ` zimoun
  2022-01-05 20:59     ` Ludovic Courtès
  0 siblings, 2 replies; 9+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2021-12-27 21:20 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 52805

[-- Attachment #1: Type: text/plain, Size: 1065 bytes --]

Hi Mathieu,

Thanks for the review!

Mathieu Othacehe 写道:
> This script is invoked by the daemon as root. In that context,
> %narinfo-cache-directory is "/var/guix/substitute/cache", 
> whereas when
> run as an user it is likely: "~/.cache/guix/substitute".

Correct.

> That would mean that users need to run "sudo guix substitute
> --clear-cache".

If they want to clear /var instead of ~/.cache, sure.

That sounds like a sane interface, if clearing ‘root’'s cache were 
the intention?  How would you even do that without sudo, 
privilege-wise?

> Moreover this script is an internal undocumented tool,
> so I'm not in favor of adding user commands to it.

OK.

The point was to have a little command I could ask other users to 
run, that's guaranteed to clear the correct directory, and doesn't 
involve a spooky rm (which saves some back-and-forth :-).

> Maybe "guix gc" would be a better place?

No, I'd rather not add yet another option to ‘guix gc’ that has 
nothing to do with GC.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2021-12-27 21:20   ` Tobias Geerinckx-Rice via Guix-patches via
@ 2021-12-29 16:49     ` zimoun
  2022-01-05 20:59     ` Ludovic Courtès
  1 sibling, 0 replies; 9+ messages in thread
From: zimoun @ 2021-12-29 16:49 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice, Mathieu Othacehe; +Cc: 52805

Hi Tobias,

On Mon, 27 Dec 2021 at 22:20, Tobias Geerinckx-Rice via Guix-patches via <guix-patches@gnu.org> wrote:

>> Maybe "guix gc" would be a better place?
>
> No, I'd rather not add yet another option to ‘guix gc’ that has
> nothing to do with GC.

Why?  Well, garbage collection is about automatic memory management and
cache is about efficiency of memory usage.  Therefore, it is appears to
me relevant to have an option “guix gc --clear-cache” to force the clean
of various caches.

Cheers,
simon





^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2021-12-27 21:20   ` Tobias Geerinckx-Rice via Guix-patches via
  2021-12-29 16:49     ` zimoun
@ 2022-01-05 20:59     ` Ludovic Courtès
  2022-01-05 22:41       ` Tobias Geerinckx-Rice via Guix-patches via
  1 sibling, 1 reply; 9+ messages in thread
From: Ludovic Courtès @ 2022-01-05 20:59 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: Mathieu Othacehe, 52805

Hello,

Tobias Geerinckx-Rice <me@tobias.gr> skribis:

> Mathieu Othacehe 写道:

[...]

>> Moreover this script is an internal undocumented tool,
>> so I'm not in favor of adding user commands to it.

+1

> The point was to have a little command I could ask other users to run,
> that's guaranteed to clear the correct directory, and doesn't involve
> a spooky rm (which saves some back-and-forth :-).

In which case do users have to ‘rm -rf ~/.cache/guix/substitute’?

That directory is only used by ‘guix weather’.  In that case,
‘--clear-cache’ could be added to ‘guix weather’ maybe?

Now, ideally there would not be any cache-related option because the
cache would always be valid.  If it’s not, it would be nice to see how
that can be improved or mitigated.

Thoughts?

Ludo’.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2022-01-05 20:59     ` Ludovic Courtès
@ 2022-01-05 22:41       ` Tobias Geerinckx-Rice via Guix-patches via
  2022-01-11 12:47         ` Ludovic Courtès
  0 siblings, 1 reply; 9+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2022-01-05 22:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Mathieu Othacehe, 52805

[-- Attachment #1: Type: text/plain, Size: 199 bytes --]

Hi Ludo'!

Ludovic Courtès 写道:
> That directory is only used by ‘guix weather’.

Let me back up then: why does ‘guix weather’ cache responses at 
all?

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2022-01-05 22:41       ` Tobias Geerinckx-Rice via Guix-patches via
@ 2022-01-11 12:47         ` Ludovic Courtès
  2022-01-11 18:00           ` Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 1 reply; 9+ messages in thread
From: Ludovic Courtès @ 2022-01-11 12:47 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: Mathieu Othacehe, 52805

Hi,

Tobias Geerinckx-Rice <me@tobias.gr> skribis:

> Ludovic Courtès 写道:
>> That directory is only used by ‘guix weather’.
>
> Let me back up then: why does ‘guix weather’ cache responses at all?

For the same reason as ‘guix substitute’: caching allows it to send only
requests for which it doesn’t already know the answer.

Ludo’.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2022-01-11 12:47         ` Ludovic Courtès
@ 2022-01-11 18:00           ` Tobias Geerinckx-Rice via Guix-patches via
  2022-01-12 21:04             ` Ludovic Courtès
  0 siblings, 1 reply; 9+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2022-01-11 18:00 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Mathieu Othacehe, 52805

[-- Attachment #1: Type: text/plain, Size: 882 bytes --]

Hiya Ludo',

Ludovic Courtès 写道:
> For the same reason as ‘guix substitute’: caching allows it to 
> send only
> requests for which it doesn’t already know the answer.

Thanks!  The problem is this reason doesn't make sense.

N.B. I agree it's an acceptable trade-off for ‘guix substitute’, 
which has different operating parameters.

When I run ‘guix weather’ twice in a row, I am *never* interested 
in reviewing the stale numbers I got the first time (or worse: a 
mix of stale and new numbers).  I don't care if the data is very 
fresh: I am asking for fresher.

Caching is never to my advantage: it is ‘saving’ only the work I 
asked it to perform, against my wishes.  ‘Look how fast I fed you 
possibly bogus data against your will!’ is not an impressive 
boast.

Is my concern clear?  Reasonable?

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option.
  2022-01-11 18:00           ` Tobias Geerinckx-Rice via Guix-patches via
@ 2022-01-12 21:04             ` Ludovic Courtès
  0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2022-01-12 21:04 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: Mathieu Othacehe, 52805

Hi,

Tobias Geerinckx-Rice <me@tobias.gr> skribis:

> Caching is never to my advantage: it is ‘saving’ only the work I asked
> it to perform, against my wishes.  ‘Look how fast I fed you possibly
> bogus data against your will!’ is not an impressive boast.
>
> Is my concern clear?  Reasonable?

It’s clear, but I’m not sure it’s reasonable.  :-)

When do you have to worry about caches?

‘guix weather’ can cache negative replies (404s) for
%narinfo-negative-ttl = 10mn, unless the server provides a different
‘Cache-Control’ TTL.  So there’s a possibility that during that time
window it’ll tell you “nope” when in fact the thing has just arrived.

I think that’s acceptable (there’s a slight delay but nothing’s
“bogus”), and it’s kind to server admins.

(It’s possible for admins to run ‘guix publish --negative-ttl=0’ if they
don’t mind extra traffic from users.)

That said, if you find it sufficiently annoying, what about adding
‘--clear-cache’ to ‘guix weather’?

HTH!

Ludo’.




^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-01-12 21:07 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-26 16:21 [bug#52805] [PATCH] substitute: Add a ‘--clear-cache’ option Tobias Geerinckx-Rice via Guix-patches via
2021-12-27 21:12 ` Mathieu Othacehe
2021-12-27 21:20   ` Tobias Geerinckx-Rice via Guix-patches via
2021-12-29 16:49     ` zimoun
2022-01-05 20:59     ` Ludovic Courtès
2022-01-05 22:41       ` Tobias Geerinckx-Rice via Guix-patches via
2022-01-11 12:47         ` Ludovic Courtès
2022-01-11 18:00           ` Tobias Geerinckx-Rice via Guix-patches via
2022-01-12 21:04             ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).