Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimise ALE for larger files with wild numbers of errors #4208

Open
w0rp opened this issue May 18, 2022 · 2 comments
Open

Optimise ALE for larger files with wild numbers of errors #4208

w0rp opened this issue May 18, 2022 · 2 comments
Assignees
Milestone

Comments

@w0rp
Copy link
Member

w0rp commented May 18, 2022

Problem

Introducing a syntax error early in a large file will cause many language servers and linters to spew out potentially hundreds of errors that are difficult for any editor to deal with. The problem is visible when profiling ALE.

FUNCTIONS SORTED ON SELF TIME
count  total (s)   self (s)  function
133921   1.974324   1.859639  ale#util#LocItemCompare()
   39   0.637155   0.527805  ale#engine#FixLocList()
 8303              0.328480  ale#GetLocItemMessage()
51057   1.132433   0.324146  ale#util#LocItemCompareWithText()
16849              0.204441  ale#util#GetItemPriority()
 7508              0.203799  <SNR>144_matchaddpos()
   22              0.188455  ale#lsp#response#ReadDiagnostics()
   39   3.264910   0.184220  ale#engine#HandleLoclist()
   44   0.553220   0.178273  ale#highlight#UpdateHighlights()
   36   1.289228   0.156795  <SNR>143_Deduplicate()
   36   0.349241   0.148448  <SNR>142_BuildSignMap()
   36   0.448409   0.121095  <SNR>143_FixList()
   17   0.193857   0.120347  ale_linters#python#flake8#Handle()
   20   0.118775   0.117452  ale#job#Start()
   36   0.120452   0.114881  ale#sign#GetSignCommands()
 3925   0.200420   0.110664  ale#sign#GetSignName()
   36   0.289443   0.108381  <SNR>142_UpdateLineNumbers()
 3154              0.098257  ale#util#Col()
 7508   0.322200   0.085194  <SNR>144_highlight_range()
   36              0.073866  <SNR>142_GroupLoclistItems()

Which points to this code in engine.vim.

    " We don't need to add items or sort the list when this list is empty.
    if !empty(l:linter_loclist)
        " Add the new items.
        call extend(l:info.loclist, l:linter_loclist)

        " Sort the loclist again.
        " We need a sorted list so we can run a binary search against it
        " for efficient lookup of the messages in the cursor handler.
        call sort(l:info.loclist, 'ale#util#LocItemCompare')
    endif

Solution

There's no one solution. Instead, there are many solutions, and we should do all of them at once to greatly improve ALE's efficiency.

  1. Where possible, mark which linters will report sorted output anyway, so we can avoid calling sort for problems from those linters.
  2. Avoid sorting the same list multiple times if possible.
  3. Avoid sorting when only one linter is reporting issues at a time.
  4. Introduce g: and b: scoped ALE setting with a low number that simply ignores all but N many problems from any source by default. (No point reporting 100 errors at a time, etc.)
  5. Introduce special code for particular tools like flake8 that simply report the first syntax error and throw all other errors away, as special cases.
  6. Consider using an alternative sort algorithm, which could mean breaking the rule of "only Vim script" in this one circumstance, with a Vim script fallback. Perhaps Lua or Python sorting is a lot faster. (We would add an ale#util#Sort internal API function.)
@w0rp w0rp self-assigned this May 18, 2022
@w0rp w0rp pinned this issue May 18, 2022
@w0rp
Copy link
Member Author

w0rp commented May 18, 2022

FYI @hsanson. I'll... sort this out... hopefully soon.

@mkdior
Copy link

mkdior commented Mar 13, 2024

Any further updates on this? Working on large files is practically impossible, I have to turn off the LSPs. This is how it looks on head ATM, no screen-keys, but I'm moving at all times, which you can't see because my vim just freezes because of the errors.

Edit;

I'd say, turning off inline error messages improves performance by like 20%. Not sure if there are other configurations I can use to speed things up? Like for example, I see absolutely 0 need for the constant :messages updates on the item below cursor.

This issue with errors in larger files isn't exclusive to Ale, I switched from COC to Ale, because CoC was also breaking in this file, it's 2k lines, and if you have an object, with a single structural error, it generates an error for literally each, valid (now invalid because of the outer structural error) item within said object.

Perhaps an option to limit errors within an object and show the outermost error only, at first. Not sure how these types of things work, but happy to help.

Screen.Recording.2024-03-13.at.9.04.05.mov

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants