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

Initial write-up of performance best practices and diagnostics. #231

Merged
merged 4 commits into from
Oct 29, 2019

Conversation

DanielRosenwasser
Copy link
Member

@DanielRosenwasser DanielRosenwasser commented Oct 8, 2019

At this point this is incomplete, but I'm looking for some feedback.

The current TODOs are

  • a section on taking TSServer traces
  • every <!-- TODO --> comment within the markdown
  • linking back to different pages (e.g. about project references and the like)

Things that I want feedback on

  • page title and location (where do users find this?)
  • what topics are we missing?
  • what topics are superfluous?
  • is the order correct? (e.g. should project structure come before discussion around project references?)

@amcasey
Copy link
Member

amcasey commented Oct 8, 2019

My investigations so far have led me to believe that editor and batch slowness are investigated in completely different ways. Editor steps are largely written up at the link above (but could probably use some extra notes for VS Code users) and batch steps are still being developed.

The `--incremental` flag allows TypeScript to save state from the last compilation to a `.tsbuildinfo` file.
This file is used to figure out the smallest set of files that might to be re-checked/re-emitted since it last ran, much like how TypeScript's `--watch` mode works.

Incremental compiles are enabled by default when using the `composite` flag for project references, but can bring the same speed-ups for any project that opts in.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One thing I realized subsequent to writing this post:

https://blog.johnnyreilly.com/2019/09/start-me-up-ts-loader-meet-tsbuildinfo.html

Is that .tsbuildinfo is only emitted in a projectReferences setup. That was surprising to me and to a bunch of others that commented on various ts-loader issues after the fact.

I don't know if it will ever be available standalone? Either way, good that the knowledge is captured here 😀

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From looking at the commits it sounds like as of recently it's emitted, but only in --watch mode. (but maybe @sheetalkamat and @andrewbranch can clarify).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I don't understand the question. I'm pretty sure --watch works on non-composite projects, so I'm not sure what "standalone" means. Maybe there's no API exposing it?

Copy link
Member

@amcasey amcasey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Initial thoughts.

Performance.md Outdated

You can read up more about project references here. <!-- TODO -->

# Configuring `tsconfig.json`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TypeScript compilation is often performed with other build tools in mind - especially when writing web apps that might involve a bundler.
While we can only make suggestions for a few build tools, ideally these techniques can be generalized.

## Concurrent Type-Checking
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure I understand the purpose of this paragraph.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you have slow type-checks that impact watch mode, you you might benefit from running type-checking concurrently.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So the scenario is that you're using watch mode to keep your output directory up-to-date, rather than to find errors in your code? And this paragraph says you can have both using a plugin?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes


There are certain ways to get hints of what might be going wrong.

## `extendedDiagnostics`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Obviously, this doesn't apply when the problem is editor responsiveness.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why wouldn't it? Knowing that program construction time is the bottleneck might be a nice early hint.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, the most obvious reason would be that you can't just tack --extendedDiagnostics onto an existing command line - you have to figure out how to invoke tsc for your project and then add the switch. It would also help to know which of these line items apply only to tsc.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Normally when investigating performance I quickly glace at the tsserver log to see there aren't any too frequent DirectoryWatcher's invocations that are causing these (in that case its a configuration issue or a bug) otherwise I do run tsc --extendedDiagnostics to see whats going on... In these cases its either checkTime that is bottleneck or Program Time if there are too many modules and resolution taking longer.. That's what gives me hint on what to check next.

It's not always obvious what settings a compilation is being run with when running `tsc`, especially given that `tsconfig.json`s can extend other configuration files.
`showConfig` can explain what `tsc` will calculate for an invocation.

```sh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that the output will look like a tsconfig file but can't necessarily be used as one, since it may include command-line only options.


## `traceResolution`

Running with `traceResolution` can help explain *why* a file was included in a compilation.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the resulting file actionable?


Some questions to keep in mind:

* Is there a major difference in build times between `tsc` and the build tool with TypeScript integration?
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that --extendedDiagnostics does not report the elapsed time, esp if there are multiple projects.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's that "especially" hint at?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAIK, it prints per-project totals but not a cumulative total (or any of the overhead involved in ordering the projects for building).

@DanielRosenwasser
Copy link
Member Author

Gonna try to get instructions in for TSServer traces in VS later on.

@DanielRosenwasser DanielRosenwasser merged commit adb1638 into master Oct 29, 2019
@DanielRosenwasser DanielRosenwasser deleted the perf branch October 29, 2019 17:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants