Skip to Content
How to Make Things Faster
book

How to Make Things Faster

by Cary Millsap
June 2023
Intermediate to advanced
356 pages
5h 32m
English
O'Reilly Media, Inc.
Audiobook available
Content preview from How to Make Things Faster

Chapter 21. Creating a Profile

A profile is a tabular aggregation of a trace stream. It’s a lot of detail, summarized in a form that’s easy for a person to understand. To create a profile, your first step is to select the grouping key by which you want to aggregate. The aggregation is a mechanical process that I can illustrate with an example using a simple Microsoft Excel spreadsheet.

Imagine a tracing feature that records each execution of events called A, B, and C for a program that is important for you to look at. So then, every time your program executes an event, the event’s name and duration are written to a trace file. Of course, in real life, you’d want a timestamp and some other attributes for each line, but I’ll keep it simple for the example.

So, imagine that the resulting trace stream is stored in a spreadsheet, so that column A contains event names and column B contains durations, like this:

  A B
1 Event Duration
2 C 0.088
3 B 0.096
4 A 0.075
5 ... ...

Let’s say that you want to group this trace stream by event name. You could use the following Excel functions to create a profile by event:

  D E F G
1 Event Duration Executions Mean dur/exec
2 A =SUMIF(A:A,D2,B:B) =COUNTIF(A:A,D2) =E2/F2
3 B =SUMIF(A:A,D3,B:B) =COUNTIF(A:A,D3) =E3/F3
4 C =SUMIF(A:A,D4,B:B) =COUNTIF(A:A,D4) =E4/F4
5 Total =SUM(E2:E4) =SUM(F2:F4) =E5/F5

This is the kind of work that a profiler does for you. Of course, it’s trickier than this in real life, where profilers ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Perfecting Your Thinking Skills

Perfecting Your Thinking Skills

MIT Sloan Management Review

Publisher Resources

ISBN: 9781098147051Errata Page