High-Performance Java Platform Computing: Multithreaded and Networked Programming - Softcover

9780130161642: High-Performance Java Platform Computing: Multithreaded and Networked Programming
View all copies of this ISBN edition:
 
 
*The clear, practical guide to Java threads and concurrency
*Proven design patterns and extensive code library
*Expert techniques for optimizing networked/distributed applications
*Avoiding deadlocks, race conditions, and synchronization problems

Threading, concurrency, and beyond: Your crystal-clear Java performance guide and code library!

Threading and concurrency are crucial to building high-performance Java applications — but they have a reputation for complexity. High-Performance Java Computing thoroughly demystifies them, helping developers leverage threading and concurrency to solve a wide variety of performance problems — especially in networked, distributed applications. This book delivers practical solutions, proven design patterns, and a rigorously tested code library: everything you need to build optimized Java software for technical, business, and e-Commerce applications. Coverage includes:

*Java 2 Threads classes: daemon threads, thread control, scheduling, and more
*Solving the key problems of parallelism: deadlocks, race conditions, and synchronization
*Advanced techniques for optimizing concurrent code
*Java monitors, parallelizing loops, and parallel execution of subroutines in shared memory
*New design patterns for distributed application development

There's never been a more accessible, practical guide to Java multi-threading, concurrency, and other high-performance techniques. When performance really matters, turn to High-Performance Java Computing — and find the solution you're searching for!

"synopsis" may belong to another edition of this title.

From the Inside Flap:
Preface

This is a book about programming high-performance multithreaded applications using the Java language.

Multithreading and multiprogramming, long heralded as useful ideas in the computing literature, have been the focus of numerous textbooks on operating systems, parallel and distributed computing, and, most, recently Java. Yet a key question remains unanswered: Why would one really use threads in the first place?

Our book attacks this question from the bottom up and the top down. Beginning with the bottom-up discussion, threads have been created with the primary goal of improving performance of software applications. At a low level, a thread is much like a process, but differs from processes in one key respect: resource consumption. This is because threads, unlike processes, share common code and data, thus having a lower cost of creation and context-switching overhead.

On the other hand, the low-level focus on threads-the mechanism-has much to do with why threads have not achieved widespread usage in applications. Threads do allow great advances in performance to be made, but not without some up-front program structuring. The fact that all threads share data structures can in many cases lead to poor performance, due to synchronization costs.

To answer the question posed earlier, we believe multithreading exists primarily to allow performance gains to be realized, particularly on scalable hardware platforms, such as parallel supercomputers, workstation clusters, and symmetric multiprocessor (SMP) systems. Our book emphasizes programming techniques and packages for high-end computing (often called the "server side" in the business world). We are concerned with using the power available on multiprocessor computers and computer networks to perform computations rapidly.

This book was conceived as a natural follow-up to a successful series of short courses we offered at the Illinois Institute of Technology and elsewhere to working professionals and graduate students alike. Additionally, between us we have approximately two decades of relevant teaching and research experience in the fields of high-performance computing, object-oriented systems, programming languages, and operating systems.

Our research in high-performance computing and languages has always focused on facilitating the development of concurrent, parallel, and distributed software, going back as far as 1988, when we first began working together on the Message Driven Computing (MDC) environment. We have developed a number of working programming languages and libraries to support such software development. All of the work we did in the past, however, was done in the C, Icon, and C++ programming languages. For this book, we have reworked many of our ideas into a form more suitable for the practicing software engineer, while fully exploiting the power of a true object language such as Java.

With its built-in support for concurrency via a monitorlike abstraction, Java makes concurrent programming easier for programmers than languages such as C and C++. We will discuss how monitors are adequate for solving many problems in concurrency, particularly the so-called classical synchronization problems, which have been well documented in operating-systems textbooks. As more complex libraries and software systems are developed, the evidence gathered supports the proposition that monitors, much like other low-level mechanisms for synchronization, break down. Monitors, despite being a higher-level mechanism for supporting concurrency, present the same problems as found in "less sophisticated" environments such as C and C++ (where low-level threads libraries, such as pthreads and Win32 threads, are used). We refer in the text to these problems (race conditions and deadlocks) as enemies. We present stategies for dealing with these enemies and a number of higher-level frameworks that enable the programmer to worry less often about them.

Java is one of the great programming languages of our time. Like many of the great programming languages, a company was behind its development, adoption, and popularity. The sensational marketing blitz was enough to make many of us think that all of the work on languages was now complete, so we could start packing our bags and look for other work. Now that the dust has settled, it is clear that Java does occupy an important space in the marketplace; however, there is a great deal of potential for exploring other programming languages and techniques. The environments in which Java is being considered will require at least a subset of the ideas presented in this book: network appliances, server-side computing, workstation clustering, and parallel systems, to name a few. In this book, our aim is to give the reader some insight into what Java does and does not provide, in terms of support for concurrency. What Java does not provide, we do provide with a working library of Java code that allows the programmer to "operate at a higher-level" (to borrow a phrase from IBM marketing from the OS/2 days).

This book, like all books, does not exist in a vacuum. There are a number of competing books, some of which are appearing in new editions during the next year. We believe our book will be the first of its kind in terms of multithreading and its application to real-world programming. It also provides the following benefits and features:

It presents a human-understandable explanation of multithreading, its implementation, and how it works in Java.

It helps the programmer to understand the very real problems encountered in concurrent systems, focused on race conditions, deadlock, and problems encountered when introducing parallelism and distribution. This particular aspect of our book brings to life the chapters on concurrency presented in "abstract" OS textbooks, wherein working code examples are seldom, if ever, provided.

It helps the programmer to understand the classic synchronization problems, which have suddenly been placed in the spotlight as more and more code is (incorrectly) being written to exploit concurrency.

It introduces high-level approaches to shared- and distributed-memory multithreading. This section will be of great interest to those who want to develop multithreaded applications but prefer to work at a higher level.

It shows how to extend the threads concept to the network. It shows how to extend the threads model beyond the single Java Virtual Machine (JVM) to a network of JVMs.

We hope you enjoy this book. It has been written to address the needs of a broad audience. There is introductory, intermediate, and advanced material. The book is designed to be progressive and can be used either as a reference or as a companion to a variety of courses. Exercises are provided at the end of each chapter to reinforce the principles. Speaking of Code

Code for the Tools of Computing thread package is available through our company Web site at toolsofcomputing. You will find links to it on the book sub-Web at toolsofcomputing/JavaThreads. We also provide a number of other useful, free packages via the sub-Web.

The example programs are working examples. We have run all of them. We hope the printed versions are as error free as possible; however, mistakes do occur and bugs are found. We actually use our code for development and will regularly update the site to include the latest code. All of the code is freely available under a GNU LGPL-style license.

The algorithm animations available include parallel sorting algorithms and simulations of multiple readers and writers synchronizing with the monitors shown in "The Multiple Reader-Writer Monitors" on page 110. These animations are applets.

We will maintain an errata forum to report errors and corrections found after publication.AnimationsThe Multiple Readers-Writers Simulations Color Codes

The simulations include an array of buttons that indicate the states of the threads accessing the shared structure. The colors of the buttons the threads states:

Red Writing

Blue Reading

Magenta Waiting to write

Cyan Waiting to read

White Resting between reads or writes

Gray Has finished its iterations.

How to Change the Parameters

You can change the parameters in the multiple readers-writers simulations.

You may choose to have a thread choose randomly each time whether to read or write (the default) or to be always be a reader or always a writer. The "% reads" and "# readers" radio buttons choose which option. You use the corresponding text fields to specify the percent probability of reading or the number of threads that are readers, respectively.

To change any number, edit the field and then type ENTER. The new value will not be stored until ENTER is pressed.

You can choose whether the actual read, write, and rest times are constants or whether they are generated from negative exponential distributions. You are able to specify the times' constant or mean values. If you change the mean read, write, or rest times, you should probably not go much below 200ms; smaller values don't give Java enough time to refresh the display. Constant times give simulations that are easier to understand.

You can change any of the values in the left column. The bottom four text fields on the right are output fields. Although you can change the lower four fields yourself, making manual changes won't have any influence on the simulation.Experiments

There are several charts in this book showing the performance of parallel algorithms. These charts report experimental runs on an intel dual-processor system running Solaris located in the Java High Performance Computing laboratory at DePaul University in Chicago. The Java system has kernel threads, which allow both processors to execute threads in the same program simultaneously.

The experiments were run from scripts that executed, in random order, the algorithms, problem sizes, and number of threads. This was to avoid potential errors that could occur if the system had different loads at different times. If we did not randomize the order, we might not be seeing the effects of the parameters, but rather of system load. The runs in the scripts were separated with sleep calls in order to prevent Unix from "nicing" our priority down because our process is compute-bound.

Each algorithm-problem size-number of threads combination was run 32 times to allow the use of large-sample statistics.

In some of the summary charts, where we combine several runs, we did not run the experiments again with the same care for randomizing the runs; therefore, these comparisons may be viewed with suspicion, because they may show effects of differing system loads.Running the Exercises

To run programs for most of the exercises, you will need a multiprocessor and a kernel-threads version of Java (at least if you want to see any kind of performance improvement). Intel dual-processor systems have become inexpensive. Solaris and Linux are reasonable operating systems, as are Windows NT and successors.

About the Author:

THOMAS W. CHRISTOPHER and GEORGE K. THIRUVATHUKAL are principals in Tools of Computing LLC, a Chicago-area consulting firm specializing in high-performance computing and object-oriented languages. A professor of Computer Science for over twenty years, Christopher has written several compilers. Thiruvathukal, a former computer scientist at Argonne National Laboratories, is now a visiting professor at Loyola University in Chicago and Secretary General of the Java Grande Group, whose aim is to advance Java-based scientific and technical computing.

"About this title" may belong to another edition of this title.

  • PublisherPrentice Hall
  • Publication date2000
  • ISBN 10 0130161640
  • ISBN 13 9780130161642
  • BindingPaperback
  • Edition number1
  • Number of pages409
  • Rating

Buy Used

Condition: Very Good
The book has been read, but is... Learn more about this copy

Shipping: US$ 6.00
From United Kingdom to U.S.A.

Destination, rates & speeds

Add to Basket

Top Search Results from the AbeBooks Marketplace

Stock Image

Thiruvathukal, George K.
Published by Prentice Hall (2000)
ISBN 10: 0130161640 ISBN 13: 9780130161642
Used Paperback Quantity: 1
Seller:
WorldofBooks
(Goring-By-Sea, WS, United Kingdom)

Book Description Paperback. Condition: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Seller Inventory # GOR004182960

More information about this seller | Contact seller

Buy Used
US$ 1.70
Convert currency

Add to Basket

Shipping: US$ 6.00
From United Kingdom to U.S.A.
Destination, rates & speeds
Stock Image

Thiruvathukal, George K., Christopher, Thomas W.
Published by Pearson Education, Limited (2000)
ISBN 10: 0130161640 ISBN 13: 9780130161642
Used Softcover First Edition Quantity: 1
Seller:
Better World Books Ltd
(Dunfermline, United Kingdom)

Book Description Condition: Very Good. 1st. Ships from the UK. Former library book; may include library markings. Used book that is in excellent condition. May show signs of wear or have minor defects. Seller Inventory # 12325416-6

More information about this seller | Contact seller

Buy Used
US$ 5.52
Convert currency

Add to Basket

Shipping: US$ 10.01
From United Kingdom to U.S.A.
Destination, rates & speeds
Stock Image

Christopher, Thomas W.; Thiruvathukal, George K., Ph.D.
Published by Prentice Hall (2000)
ISBN 10: 0130161640 ISBN 13: 9780130161642
Used Softcover Quantity: 1
Seller:
SecondSale
(Montgomery, IL, U.S.A.)

Book Description Condition: Like New. Item in good condition. Textbooks may not include supplemental items i.e. CDs, access codes etc. Seller Inventory # 00050855460

More information about this seller | Contact seller

Buy Used
US$ 18.11
Convert currency

Add to Basket

Shipping: FREE
Within U.S.A.
Destination, rates & speeds
Stock Image

Christopher, Thomas W.
Published by Prentice Hall PTR (2000)
ISBN 10: 0130161640 ISBN 13: 9780130161642
Used Paperback Quantity: 1
Seller:
ThriftBooks-Dallas
(Dallas, TX, U.S.A.)

Book Description Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.85. Seller Inventory # G0130161640I3N00

More information about this seller | Contact seller

Buy Used
US$ 18.18
Convert currency

Add to Basket

Shipping: FREE
Within U.S.A.
Destination, rates & speeds
Stock Image

Christopher, Thomas W., Thiruvathukal, George K., Ph.D.
Published by Prentice Hall (2000)
ISBN 10: 0130161640 ISBN 13: 9780130161642
Used Paperback Quantity: 1
Seller:
dsmbooks
(Liverpool, United Kingdom)

Book Description Paperback. Condition: Good. Good. book. Seller Inventory # D7S9-1-M-0130161640-3

More information about this seller | Contact seller

Buy Used
US$ 99.17
Convert currency

Add to Basket

Shipping: US$ 31.27
From United Kingdom to U.S.A.
Destination, rates & speeds