unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Dmitry Gutov <dgutov@yandex.ru>
To: Eli Zaretskii <eliz@gnu.org>
Cc: Stefan Monnier <monnier@IRO.UMontreal.CA>, emacs-devel@gnu.org
Subject: Re: Abolishing ChangeLog files
Date: Fri, 29 Mar 2013 19:07:50 +0400	[thread overview]
Message-ID: <5155AE46.8060905@yandex.ru> (raw)
In-Reply-To: <83a9pmwxb5.fsf@gnu.org>

On 29.03.2013 10:10, Eli Zaretskii wrote:
>> Date: Fri, 29 Mar 2013 08:45:44 +0300
>> From: Eli Zaretskii <eliz@gnu.org>
>> Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org
> Btw: bzr logs all of its times in .bzr.log, so you don't need any
> additional programs to time it.  (I wish git had such a comprehensive
> logging facility, it proved invaluable for me quite a few times in the
> past.)
>

If you mean that it writes to ~/bazaar/.bzr.log, then it doesn't, here. 
The file exists, but all the entries there are from September 1st last 
year. Not important, just an aside.

 > Attached below.

Thank you. It inspired me to run the same non-interactive tests you did, 
and indeed the full 'git log lisp\progmodes\ruby-mode.el > NUL' 
invocation is non-instantaneous every time, and it's on the same order 
of magnitude as 'bzr log', although the latter takes twice as long:

emacs-git-savannah>timep git log lisp\progmodes\ruby-mode.el > NUL

real    00h00m04.652s
user    00h00m00.000s
sys     00h00m00.015s

emacs-bzr\trunk>timep bzr log lisp\progmodes\ruby-mode.el > NUL

real    00h00m08.269s
user    00h00m07.878s
sys     00h00m00.280s

But! Git starts streaming output just as soon as it can, hence my 
earlier impression that the command is instantaneous. If you redirect 
its output to 'less' (like I did in the command I sent in one of the 
previous messages), you'll see that the viewer opens near instantly, and 
allows you to view the latest commits while the VCS fetches the older 
data. Same thing happens when a user calls `vc-print-log' in Emacs, and 
it makes all the difference.

Here's a more striking example. Show the last 40 commits:

emacs-git-savannah>timep git log -40 lisp\progmodes\ruby-mode.el > NUL

real    00h00m00.226s
user    00h00m00.015s
sys     00h00m00.000s

emacs-bzr\trunk>timep bzr log -l 40 lisp\progmodes\ruby-mode.el > NUL

real    00h00m08.273s
user    00h00m07.878s
sys     00h00m00.265s

Git is finally fast, but Bazaar is as slow as when it retrieves the full 
history.

 >> I don't see this kind of problem with Git, but maybe I just haven't
 >> tried it with a repository hosted on the same server as Bazaar one.

 > I did, just now: (...)

I tried it, too, and here Git wins hands-down.

Here's how long it takes to update both when they are already up-to-date 
(staging a situation when they're the same number of revisions 
out-of-date is harder):

emacs-git-savannah>timep git pull
Already up-to-date.

real    00h00m02.139s
user    00h00m00.000s
sys     00h00m00.031s

emacs-bzr\trunk>timep bzr update
Дерево в актуальной ревизии 112180 ветви 
bzr+ssh://dgutov@bzr.savannah.gnu.org/emacs/trunk


real    00h00m09.963s
user    00h00m00.343s
sys     00h00m00.202s


Before that, I updated this Bazaar clone from a several-days-old 
revision, and it took 4 minutes. I don't have a similar result for Git 
to compare, but considering it cloned the whole history in 30 minutes 
(same as on your machine), it will likely be faster.

emacs-bzr\trunk>timep bzr update
+N  lisp/eshell/em-tramp.el
  M  ChangeLog
  M  admin/CPP-DEFINES
  M  autogen/config.in
  M  autogen/configure
  M  configure.ac
  M  doc/lispref/ChangeLog
  M  doc/lispref/compile.texi
  M  doc/misc/eshell.texi
  M  etc/NEWS
...
...
...
  M  src/xselect.c
  M  src/xsmfns.c
  M  src/xterm.c
All changes applied successfully.
Обновлено до ревизии 112180 ветви 
bzr+ssh://dgutov@bzr.savannah.gnu.org/emacs/trunk

real    00h04m11.939s
user    00h00m06.520s
sys     00h00m01.466s



  parent reply	other threads:[~2013-03-29 15:07 UTC|newest]

Thread overview: 200+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-26 19:38 On the subject of Git, Bazaar, and the future of Emacs development John Wiegley
2013-03-26 19:42 ` Jordi Gutiérrez Hermoso
2013-03-27  1:32   ` Stefan Monnier
2013-04-02  0:31   ` Barry Warsaw
2013-04-02  8:56     ` Timur Aydin
2013-04-02 13:30       ` Teemu Likonen
2013-04-02 16:38         ` Eli Zaretskii
2013-04-02 17:02           ` Teemu Likonen
2013-04-02 17:24             ` Eli Zaretskii
2013-04-02 17:44               ` Teemu Likonen
2013-04-02 16:36       ` Eli Zaretskii
2013-04-02 13:19     ` Xue Fuqiao
2013-04-02 14:54     ` Alan Mackenzie
2013-04-02 15:13       ` Teemu Likonen
2013-04-02 15:45         ` Barry Warsaw
2013-04-02 16:21           ` Teemu Likonen
2013-04-02 17:12           ` Eli Zaretskii
2013-04-03  8:00             ` Miles Bader
2013-04-02 15:16       ` Christopher Schmidt
2013-04-02 15:47         ` Alan Mackenzie
2013-04-02 15:42       ` Barry Warsaw
2013-03-26 20:55 ` Karl Fogel
2013-03-26 23:00   ` Juanma Barranquero
2013-03-27  4:02 ` Richard Stallman
2013-03-27  6:38   ` Thierry Volpiatto
2013-03-27  8:43   ` Dmitry Gutov
2013-03-27  9:13     ` Stephen J. Turnbull
2013-03-27 15:49       ` Allen S. Rout
2013-03-27 16:32         ` Dmitry Gutov
2013-03-27 18:55           ` Stephen J. Turnbull
2013-03-27 17:15     ` Richard Stallman
2013-03-27 17:56       ` Juanma Barranquero
2013-03-27 18:32         ` John Yates
2013-03-27 20:25           ` Werner LEMBERG
2013-03-28  4:20           ` Richard Stallman
2013-03-28  5:33             ` Leo Liu
2013-03-28  7:53             ` joakim
2013-03-28 12:21               ` Thien-Thi Nguyen
2013-03-28 18:59               ` Richard Stallman
2013-03-28 21:10             ` Karl Fogel
2013-03-29  3:48               ` Richard Stallman
2013-03-29  3:53                 ` Juanma Barranquero
2013-03-29 18:05                 ` Karl Fogel
2013-03-29 21:12                   ` Richard Stallman
2013-03-28  4:20         ` Richard Stallman
2013-03-28 12:26           ` Juanma Barranquero
2013-03-28 15:11             ` Stefan Monnier
2013-03-28 18:58             ` Richard Stallman
2013-03-28 19:26               ` John Wiegley
2013-03-28 19:49                 ` Eli Zaretskii
2013-03-29  3:47                 ` Richard Stallman
2013-03-28 19:44               ` Eli Zaretskii
2013-03-27 18:48       ` Allen S. Rout
2013-03-27 20:27         ` Josh
2013-04-02  0:26       ` Barry Warsaw
2013-04-02  3:24         ` Stephen J. Turnbull
2013-04-02  8:25           ` chad
2013-04-02 16:35             ` Eli Zaretskii
2013-04-02 17:57               ` chad
2013-04-02 18:02                 ` Eli Zaretskii
2013-04-02 18:12                   ` chad
2013-04-02 12:30         ` Jose E. Marchesi
2013-04-02 14:02           ` Barry Warsaw
2013-04-02 15:19           ` Jay Belanger
2013-04-02 19:27             ` Karl Fogel
2013-04-03 18:07               ` Richard Stallman
2013-04-03 21:34                 ` Karl Fogel
2013-04-03 23:20                   ` Xue Fuqiao
2013-04-04  3:09                     ` Stephen J. Turnbull
2013-04-04  7:23                     ` Andreas Schwab
2013-04-04  7:53                       ` Xue Fuqiao
2013-04-05  2:09                   ` Richard Stallman
2013-04-05  6:46                     ` Leo Liu
2013-04-05 15:01                     ` Karl Fogel
2013-04-06 14:04                       ` Richard Stallman
2013-04-03  0:06           ` Richard Stallman
2013-03-27 13:07   ` Stefan Monnier
2013-03-28  4:19     ` Richard Stallman
2013-03-28 12:47       ` Stefan Monnier
2013-03-28 13:25       ` John Wiegley
2013-03-28 13:57       ` Bastien
2013-03-28 18:59         ` Richard Stallman
2013-03-28 19:48           ` chad
2013-03-28 20:59           ` Bastien
2013-03-27  4:15 ` Michael Welsh Duggan
2013-03-27  6:38   ` Leo Liu
2013-03-31 22:01     ` Giorgos Keramidas
2013-03-31 23:00       ` Xue Fuqiao
2013-03-31 23:40         ` Giorgos Keramidas
2013-04-01  0:50           ` Stephen J. Turnbull
2013-04-01  5:54             ` Eli Zaretskii
2013-04-01  6:36               ` Stephen J. Turnbull
2013-04-03 18:59             ` Stefan Monnier
2013-04-01  8:33           ` Xue Fuqiao
2013-04-01 17:47       ` John Wiegley
2013-04-02 19:14         ` Eli Zaretskii
2013-04-02 19:28           ` Karl Fogel
2013-04-02 19:36             ` Eli Zaretskii
2013-04-04 17:44           ` John Wiegley
2013-04-04 18:16             ` Eli Zaretskii
2013-04-04 18:44               ` joakim
2013-04-04 19:15                 ` John Wiegley
2013-04-04 20:50                   ` Eli Zaretskii
2013-04-04 18:57               ` Sam Steingold
2013-04-04 20:48                 ` Eli Zaretskii
2013-04-05  4:34                 ` Bastien
2013-04-05 10:46                   ` Xue Fuqiao
2013-04-05 15:37                 ` Barry Warsaw
2013-04-06 23:03                   ` Jambunathan K
2013-04-07  1:09                   ` Stefan Monnier
2013-04-07  5:22                     ` Xue Fuqiao
2013-04-04 23:08               ` Stephen Leake
2013-04-04 23:58                 ` Daniel Colascione
2013-04-05  1:13                   ` Stephen J. Turnbull
2013-04-07  3:11                     ` Wojciech Meyer
2013-04-05  9:57               ` Julien Danjou
2013-04-05 14:55               ` Karl Fogel
2013-04-05 15:14                 ` Eli Zaretskii
2013-04-05 15:21                   ` Lennart Borgman
2013-04-02 22:00         ` Pascal J. Bourguignon
2013-03-27  8:55   ` Stephen J. Turnbull
2013-03-27 14:10   ` John Wiegley
2013-03-27 16:54     ` Romain Francoise
2013-03-27 14:52   ` Jordi Gutiérrez Hermoso
2013-03-27  7:53 ` Carsten Dominik
2013-03-27  9:09 ` Julien Danjou
2013-03-27  9:56   ` Ted Zlatanov
2013-03-27 10:36     ` David Engster
2013-03-27 12:51       ` Ted Zlatanov
2013-03-27 12:55       ` Julien Danjou
2013-03-27 13:39         ` Stefan Monnier
2013-03-27 13:58           ` David Engster
2013-03-27 23:13           ` Stephen Leake
2013-03-27 23:16             ` Stephen Leake
2013-03-28  3:26               ` Stephen J. Turnbull
2013-03-28  8:37                 ` Stephen Leake
2013-03-28  9:15                   ` Andreas Schwab
2013-03-28  9:07                 ` David Engster
2013-03-28  9:55                   ` Abolishing ChangeLog files (was: On the subject of Git, Bazaar, and the future of Emacs development) Christopher Schmidt
2013-03-28 10:55                     ` Abolishing ChangeLog files Thierry Volpiatto
2013-03-28 18:58                       ` Richard Stallman
2013-03-28 20:09                         ` Aidan Gauland
2013-03-28 21:00                         ` Stefan Monnier
2013-03-29  3:47                           ` Richard Stallman
2013-03-29  6:36                             ` Paul Eggert
2013-03-29 20:57                             ` Stefan Monnier
2013-03-28 23:44                         ` Steve Youngs
2013-03-29  3:48                           ` Richard Stallman
2013-03-29  8:02                             ` Steve Youngs
2013-03-29  9:16                               ` Eli Zaretskii
2013-03-29 14:20                               ` John Wiegley
2013-03-29 23:06                                 ` Steve Youngs
2013-03-29 18:37                               ` Richard Stallman
2013-03-28 11:05                     ` Abolishing ChangeLog files (was: On the subject of Git, Bazaar, and the future of Emacs development) Carsten Dominik
2013-03-28 11:44                     ` Alan Mackenzie
2013-03-28 11:56                       ` Abolishing ChangeLog files David Engster
2013-03-29  0:23                         ` Steve Youngs
2013-03-28 11:59                       ` Thierry Volpiatto
2013-03-28 13:17                       ` John Wiegley
2013-03-28 23:58                       ` Steve Youngs
2013-03-28 12:41                     ` Stefan Monnier
2013-03-28 16:34                       ` Eli Zaretskii
2013-03-28 17:13                         ` Eli Zaretskii
2013-03-28 17:20                         ` Dmitry Gutov
2013-03-28 17:34                           ` Eli Zaretskii
2013-03-28 21:04                             ` Dmitry Gutov
2013-03-28 21:29                               ` Eli Zaretskii
2013-03-28 22:42                                 ` Dmitry Gutov
2013-03-29  5:45                                   ` Eli Zaretskii
2013-03-29  6:10                                     ` Eli Zaretskii
2013-03-29  6:43                                       ` Thierry Volpiatto
2013-03-29  7:08                                         ` Eli Zaretskii
2013-03-29  8:38                                           ` Stephen J. Turnbull
2013-03-29  9:18                                             ` Eli Zaretskii
2013-03-29 10:11                                               ` Stephen J. Turnbull
2013-03-29 10:50                                                 ` Eli Zaretskii
2013-03-29 11:11                                               ` Thierry Volpiatto
2013-03-29 11:43                                                 ` Eli Zaretskii
2013-03-29 11:00                                             ` Thierry Volpiatto
2013-03-29 11:41                                               ` Eli Zaretskii
2013-03-29 22:15                                               ` Stephen J. Turnbull
2013-03-29 15:07                                       ` Dmitry Gutov [this message]
2013-03-29 15:36                                         ` Eli Zaretskii
2013-03-29 15:58                                           ` Dmitry Gutov
2013-03-29 17:16                                             ` Eli Zaretskii
2013-03-29 20:58                                             ` chad
2013-03-29  6:43                                     ` Dmitry Gutov
2013-03-28 20:58                         ` Stefan Monnier
2013-03-29 21:53                       ` Nikolai Weibull
2013-03-30  2:20                         ` Stefan Monnier
2013-03-30  8:07                           ` Nikolai Weibull
2013-03-28 12:35                   ` On the subject of Git, Bazaar, and the future of Emacs development Stefan Monnier
2013-03-28 13:08                     ` David Engster
2013-03-29  7:00                   ` Stephen J. Turnbull
2013-03-29 10:14                     ` David Engster
2013-03-29 21:27                       ` joakim
2013-03-28  2:43             ` Stefan Monnier
2013-03-28  3:22               ` Kolo Rahl
2013-03-28 12:27                 ` Stefan Monnier
2013-03-28  8:08               ` Stephen Leake

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5155AE46.8060905@yandex.ru \
    --to=dgutov@yandex.ru \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=monnier@IRO.UMontreal.CA \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/emacs.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).