Home > Store

Solaris Performance and Tools: DTrace and MDB Techniques for Solaris 10 and OpenSolaris (paperback)

Register your product to gain access to bonus material or receive a coupon.

Solaris Performance and Tools: DTrace and MDB Techniques for Solaris 10 and OpenSolaris (paperback)

Alternate Binding

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2007
  • Dimensions: 7" x 9-1/4"
  • Pages: 496
  • Edition: 1st
  • Alternate Binding
  • ISBN-10: 0-13-413186-X
  • ISBN-13: 978-0-13-413186-3

"The Solaris™Internals volumes are simply the best and most comprehensive treatment of the Solaris (and OpenSolaris) Operating Environment. Any person using Solaris--in any capacity--would be remiss not to include these two new volumes in their personal library. With advanced observability tools in Solaris (like DTrace), you will more often find yourself in what was previously unchartable territory. Solaris™ Internals, Second Edition, provides us a fantastic means to be able to quickly understand these systems and further explore the Solaris architecture--especially when coupled with OpenSolaris source availability."

--Jarod Jenson, chief systems architect, Aeysis

"The Solaris™ Internals volumes by Jim Mauro and Richard McDougall must be on your bookshelf if you are interested in in-depth knowledge of Solaris operating system internals and architecture. As a senior Unix engineer for many years, I found the first edition of Solaris™ Internals the only fully comprehensive source for kernel developers, systems programmers, and systems administrators. The new second edition, with the companion performance and debugging book, is an indispensable reference set, containing many useful and practical explanations of Solaris and its underlying subsystems, including tools and methods for observing and analyzing any system running Solaris 10 or OpenSolaris."

--Marc Strahl, senior UNIX engineer

Solaris™ Performance and Tools provides comprehensive coverage of the powerful utilities bundled with Solaris 10 and OpenSolaris, including the Solaris Dynamic Tracing facility, DTrace, and the Modular Debugger, MDB. It provides a systematic approach to understanding performance and behavior, including:

  • Analyzing CPU utilization by the kernel and applications, including reading and understanding hardware counters
  • Process-level resource usage and profiling
  • Disk IO behavior and analysis
  • Memory usage at the system and application level
  • Network performance
  • Monitoring and profiling the kernel, and gathering kernel statistics
  • Using DTrace providers and aggregations
  • MDB commands and a complete MDB tutorial

The Solaris™ Internals volumes make a superb reference for anyone using Solaris 10 and OpenSolaris.

Sample Content

Table of Contents

Foreword xxi

Preface xxiii

About the Authors xxxi

Acknowledgments xxxiii

PART ONE: Observability Methods 1

Chapter 1: Introduction to Observability Tools 3

1.1 Observability Tools 4

1.2 Drill-Down Analysis 7

1.3 About Part One 8

Chapter 2: CPUs 11

2.1 Tools for CPU Analysis 11

2.2 vmstat Tool 13

2.3 CPU Utilization 14

2.4 CPU Saturation 15

2.5 psrinfo Command 15

2.6 uptime Command 15

2.7 sar Command 16

2.8 Clock Tick Woes 19

2.9 mpstat Command 20

2.10 Who Is Using the CPU? 23

2.11 CPU Run Queue Latency 24

2.12 CPU Statistics Internals 26

2.13 Using DTrace to Explain Events from Performance Tools 29

2.14 DTrace Versions of runq-sz, %runocc 31

2.15 DTrace Probes for CPU States 33

Chapter 3: Processes 35

3.1 Tools for Process Analysis 35

3.2 Process Statistics Summary: prstat 37

3.3 Process Status: ps 41

3.4 Tools for Listing and Controlling Processes 45

3.5 Process Introspection Commands 47

3.6 Examining User-Level Locks in a Process 52

3.7 Tracing Processes 53

3.8 Java Processes 60

Chapter 4: Disk Behavior and Analysis 67

4.1 Terms for Disk Analysis 67

4.2 Random vs. Sequential I/O 69

4.3 Storage Arrays 70

4.4 Sector Zoning 71

4.5 Max I/O Size 72

4.6 iostat Utility 73

4.7 Disk Utilization 74

4.8 Disk Saturation 75

4.9 Disk Throughput 76

4.10 iostat Reference 76

4.11 Reading iostat 82

4.12 iostat Internals 85

4.13 sar -d 87

4.14 Trace Normal Form (TNF) Tracing for I/O 88

4.15 DTrace for I/O 88

4.16 Disk I/O Time 97

4.17 DTraceToolkit Commands 101

4.18 DTraceTazTool 108

Chapter 5: File Systems 109

5.1 Layers of File System and I/O 109

5.2 Observing Physical I/O 111

5.3 File System Latency 112

5.4 Causes of Read/Write File System Latency 114

5.5 Observing File System “Top End” Activity 118

5.6 File System Caches 119

5.7 NFS Statistics 133

Chapter 6: Memory 135

6.1 Tools for Memory Analysis 135

6.2 vmstat(1M) Command 137

6.3 Types of Paging 138

6.4 Physical Memory Allocation 142

6.5 Relieving Memory Pressure 144

6.6 Scan Rate as a Memory Health Indicator 146

6.7 Process Virtual and Resident Set Size 148

6.8 Using pmap to Inspect Process Memory Usage 149

6.9 Calculating Process Memory Usage with ps and pmap 150

6.10 Displaying Page-Size Information with pmap 153

6.11 Using DTrace for Memory Analysis 154

6.12 Obtaining Memory Kstats 157

6.13 Using the Perl Kstat API to Look at Memory Statistics 158

6.14 System Memory Allocation Kstats 158

6.15 Kernel Memory with kstat 160

6.16 System Paging Kstats 161

6.17 Observing MMU Performance Impact with trapstat 163

6.18 Swap Space 164

Chapter 7: Networks 173

7.1 Terms for Network Analysis 173

7.2 Packets Are Not Bytes 175

7.3 Network Utilization 176

7.4 Network Saturation 177

7.5 Network Errors 177

7.6 Misconfigurations 177

7.7 Systemwide Statistics 178

7.8 Per-Process Network Statistics 189

7.9 TCP Statistics 191

7.10 IP Statistics 196

7.11 ICMP Statistics 199

Chapter 8: Performance Counters 201

8.1 Introducing CPU Caches 203

8.2 cpustat Command 206

8.3 cputrack Command 215

8.4 busstat Command 216

Chapter 9: Kernel Monitoring 221

9.1 Tools for Kernel Monitoring 221

9.2 Profiling the Kernel and Drivers 222

9.3 Analyzing Kernel Locks 223

9.4 DTrace lockstat Provider 227

9.5 DTrace Kernel Profiling 229

9.6 Interrupt Statistics: vmstat -i 230

9.7 Interrupt Analysis: intrstat 230

PART TWO: Observability Infrastructure 233

Chapter 10: Dynamic Tracing 235

10.1 Introduction to DTrace 235

10.2 The Basics 236

10.3 Inspecting Java Applications with DTrace 257

10.4 DTrace Architecture 265

10.5 Summary 271

10.6 Probe Reference 271

10.7 MDB Reference 294

Chapter 11: Kernel Statistics 295

11.1 C-Level Kstat Interface 295

11.2 Command-Line Interface 307

11.3 Using Perl to Access kstats

11.4 Snooping a Program’s kstat Use with DTrace 317

11.5 Adding Statistics to the Solaris Kernel 317

11.6 Additional Information 323

PART THREE: Debugging 325

Chapter 12: The Modular Debugger 327

12.1 Introduction to the Modular Debugger 327

12.2 MDB Concepts 330

Chapter 13: An MDB Tutorial 335

13.1 Invoking MDB 335

13.2 MDB Command Syntax 336

13.3 Working with Debugging Targets 353

13.4 GDB-to-MDB Reference 357

13.5 dcmd and Walker Reference 359

Chapter 14: Debugging Kernels 367

14.1 Working with Kernel Cores 367

14.2 Examining User Process Stacks within a Kernel Image 382

14.3 Switching MDB to Debug a Specific Process 385

14.4 kmdb, the Kernel Modular Debugger 388

14.5 Kernel Built-In MDB dcmds 395

APPENDICES

Appendix A Tunables and Settings 401

Appendix B DTrace One-Liners 407

Appendix C Java DTrace Scripts 409

Appendix D Sample Perl Kstat Utilities 413

Bibliography 429

Index 433

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020