unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Jim Porter <jporterbugs@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 71355@debbugs.gnu.org, stefankangas@gmail.com
Subject: bug#71355: 30.0.50; [PATCH] Improve performance of buffered output in Eshell
Date: Wed, 5 Jun 2024 10:35:08 -0700	[thread overview]
Message-ID: <9da5a395-48e8-fb20-145b-1d2581315fcf@gmail.com> (raw)
In-Reply-To: <8634prjpt0.fsf@gnu.org>

On 6/5/2024 9:51 AM, Eli Zaretskii wrote:
>> Date: Wed, 5 Jun 2024 09:42:43 -0700
>> Cc: 71355@debbugs.gnu.org, stefankangas@gmail.com
>> From: Jim Porter <jporterbugs@gmail.com>
>>
>> On 6/5/2024 5:06 AM, Eli Zaretskii wrote:
>>> Is 2K indeed the optimal size?  It is about 25 80-column lines, which
>>> is quite a lot.  "Normal" shells send output to the screen in smaller
>>> chunks.  How about 128 instead? or maybe some small multiple of the
>>> line length, like 1 or 2?
>>
>> Yes, I believe 2k is the optimal size, or close to it. Trying a value of
>> 128 results in basically no change in performance from baseline. That
>> makes sense to me, since 128 is actually fairly close to the old value
>> for this buffering (which was five *lines*[1]; the old code measured
>> this differently).
> 
> That's strange, because I see no output at all until all of it is
> available and showsn, and I thought you said the same in your OP?

Yes, without my patch that's expected. When I talk about changes in 
performance, I mean the total time to complete the command, as measured 
by, e.g. "time cat config.log".

Here's what's happening: all of the output in 'eshell/cat' occurs in a 
loop, periodically calling 'eshell-interactive-print' (how often it 
calls this depends on the buffering settings). That runs the functions 
in 'eshell-output-filter-functions', which can be fairly expensive. So 
one way to make output faster would be to optimize those functions, 
which I did in my second patch. However, a larger buffer size is still 
faster even when there are no output filter functions, due to other 
overheads in the code. So I think even if we could make 
'eshell-output-filter-functions' all very cheap, it's worth increasing 
the buffer size.

In addition to this, the performance improvements I made allowed me to 
add in the extra work of redisplaying periodically when using this 
buffered output scheme. That's all new in my patch, and previously you'd 
have to wait until the command was finished to see any output. From 
Emacs's perspective, everything in 'eshell/cat' is synchronous, so I 
needed to manually trigger the redisplay (or do some other sorcery to 
hand control back to the command loop).





  reply	other threads:[~2024-06-05 17:35 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-04  5:36 bug#71355: 30.0.50; [PATCH] Improve performance of buffered output in Eshell Jim Porter
2024-06-04 21:52 ` Stefan Kangas
2024-06-05  1:55   ` Jim Porter
2024-06-05  3:50     ` Jim Porter
2024-06-05 12:06       ` Eli Zaretskii
2024-06-05 16:42         ` Jim Porter
2024-06-05 16:51           ` Eli Zaretskii
2024-06-05 17:35             ` Jim Porter [this message]
2024-06-05 17:57               ` Eli Zaretskii
2024-06-05 18:47                 ` Jim Porter
2024-06-05 18:58                   ` Eli Zaretskii
2024-06-05 20:07                     ` Jim Porter
2024-06-06  4:43                       ` Eli Zaretskii
2024-06-06 18:02                         ` Jim Porter
2024-06-08  4:25                           ` Jim Porter
2024-06-08  7:33                             ` Stefan Kangas
2024-06-08 19:43                               ` Jim Porter
2024-06-06  9:20     ` Stefan Kangas
2024-06-06 18:04       ` Jim Porter
2024-06-06 23:14     ` Stefan Kangas
2024-06-07  0:09       ` Jim Porter
2024-06-07  8:51         ` Stefan Kangas

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=9da5a395-48e8-fb20-145b-1d2581315fcf@gmail.com \
    --to=jporterbugs@gmail.com \
    --cc=71355@debbugs.gnu.org \
    --cc=eliz@gnu.org \
    --cc=stefankangas@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 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).