Java Concurrency Framework. Sidartha Gracias
|
|
|
- Branden Moore
- 9 years ago
- Views:
Transcription
1 Java Concurrency Framework Sidartha Gracias
2 Executive Summary This is a beginners introduction to the java concurrency framework Some familiarity with concurrent programs is assumed However the presentation does go through a quick background on concurrency So readers unfamiliar with concurrent programming should still get something out of this The structure of the presentation is as follows A brief history into concurrent programming is provided Issues in concurrent programming are explored The framework structure with all its major components are covered in some detail Examples are provided for each major section to reinforce some of the major ideas
3 Concurrency in Java - Overview Java like most other languages supports concurrency through thread The JVM creates the Initial thread, which begins execution from main The main method can then spawn additional threads Thread Basics All modern OS support the idea of processes independently running programs that are isolated from each other Thread can be thought of as light weight processes Like processes they have independent program counters, call stacks etc Unlike Processes they share main memory, file pointers and other process state This means thread are easier for the OS to maintain and switch between This also means we need to synchronize threads for access to shared resources
4 Threads Continued So why use threads? Multi CPU systems: Most modern systems host multiple CPU s, by splitting execution between them we can greatly speed up execution Handling Asynchronous Events: Servers handle multiple clients. Processing each client is best done through a separate thread, because the Server blocks until a new message is received UI or event driven Processing: event handlers that respond to user input are best handled through separate threads, this makes code easier to write and understand
5 Synchronization Primitives in Java How does the java language handle synchronization Concurrent execution is supported through the Thread class. Access to shared resources is controlled through Synchronized objects Synchronized methods Locking and Unlocking shared resources is handled automatically However only one (duh.) thread can hold a shared object at one time A thread that cannot acquire a lock will block.
6 Writing Concurrent Programs But its not so easy.. Writing non trivial concurrent programs is not so straight forward, here are a few of the issues you could run into Deadlock: Two or more threads waiting for each other to release a resource Resource A Thread A 1: acquire A 3: acquire B Resource B Thread B 1: acquire B 3: acquire A
7 Concurrency issues continued.. Race Conditions: Non deterministic output, that depends on the order of thread execution Thread A While(true) Print 1 Thread B While(true) Print 2 Output: or or etc
8 Concurrency issues continued.. Starvation: A slow thread being starved of a resource by a fast thread Acquire A (1ms) Resource A Acquire B (1us) Thread A Thread B This brings us to thread safe classes A class that guarantees the internal state of the class as well as returned values from methods are correct while invoked concurrently from multiple thread
9 Where does this leave us? This shows us writing concurrent programs is hard and prone to bugs The synchronization primitives java provides are of too low a granularity and do not scale with program complexity It would be nice if we could abstract some of this complexity away Further many of the problems encountered writing parallel programs are common across a wide area We really should not have to reinvent the wheel each time we want to write a concurrent program This is where the Java Concurrency Framework comes in..
10 Framework Overview The Concurrency utilities includes the following: 1. Task Scheduling Framework: The Executor is a framework for handling the invocation, scheduling and execution of tasks 2. Concurrent Collection: Concurrent implementations of commonly used classes like map, list and queue (no more reinventing the wheel ). 3. Atomic Variables: classes for atomic manipulation of single variables, provides higher performance than simply using synchronization primitives 4. Locks: High performance implementation of locks with the same semantics as the synchronized keyword, with additional functionality like timeouts. 5. Timers: Provides access to a nanosecond timer for making fine grained timing measurements, useful for methods that accept timeouts.
11 Advantages of using the framework Reusability and effort reduction: Many commonly used concurrent classes already implemented Superior performance: Inbuilt implementation highly optimized and peer reviewed by experts Higher reliability, less bugs: Working from already developed building blocks lead to more reliable programs Improved maintainability and scalability: Reusable components leads to programs that are easier to maintain and scale much better Increased productivity: Developers no longer have to reinvent the wheel each time, programs easier to debug, more likely to understand standard library implementations
12 The Executor Framework The Executor framework provides a mechanism for invoking, scheduling, and executing tasks according to a set of policies Also provides an implementation of thread pools through the ThreadPoolExecutor class This provides a way to decouple task submission from task execution policy Makes it easy to change task execution policy Supports several different execution policies by default, and developers can create Executors supporting arbitrary execution policies
13 Interlude: Thread pools Consider writing a web server that handles an arbitrary number of clients One way of implementing this is to spawn a new thread for each client that makes a request However under high load this could crash the server, due to the large amount of resources used to create and maintain the threads Worse we are creating far more threads than can be handled by the server, probably most threads will sit around waiting for CPU time.
14 Thread pools continued A smarter way to handle this is to use the idea of a thread pool We create a fixed number of threads called a thread pool We use a queue data structure into which tasks are submitted Each free thread picks a task of the queue and processes it If all threads are busy, tasks wait in queue for threads to free up This way we never overload the server, and get the most efficient implementation
15 Executor Framework Continued The Executor interface is fairly simple it describes an object, which executes Runnables Public interface Executor { void execute(runnable task ) } A class that wishes to use the Executor framework, must implement the Executor interface and provide an implementation for execute Class ImpExecutor implements Executor { void execute(runnable t ) { new Thread(t).start //This executor creates a new thread for each task submitted } }
16 Executor Framework Continued The Executor framework comes with several implementations of Executor that implement different execution policies execution policy determines when a task will run, it priority and other associated parameters 1. Executor.newCachedThreadPool: Creates a thread pool of unlimited size, but if threads get freed up, they are reused 2. Executor.newFixedThreadPool: Create a thread pool of fixed size, if pool is exhausted, tasks must wait till a thread becomes free 3. Executor.newSingleThreadExecutor: Creates only a single thread, tasks are executed sequentially form the queue
17 class WebServer { Executor execs = Executors.newFixedThreadPool(7); public static void main(string[] args) { ServerSocket soc = new ServerSocket(80); while (true) { Socket conn = soc.accept(); Runnable r = new Runnable() { public void run() { handlerequest(conn); ; pool.execute(r); Example code modified from the book java concurrency in practice
18 Code Walkthrough That was a quick example of how to use the executor framework and thread pools We have used an inbuilt executor Fixed ThreadPool to create a pool of 7 threads We create a runnable to handle new connections We then hand the runnalble to the executor for execution Thus task execution is decoupled from task submission
19 Concurrent Collections The Concurrency framework provides implementation of several commonly used collections classes optimized for concurrent operations 1. public interface Queue<E>extends Collection<E>: A collection class that hold elements prior to processing, generally orders element in a FIFO manner (however can also be LIFO etc). Supports the following functionality Offer method inserts an element if possible else return false remove() and poll() return and remove the head of the queue element() and peek() return but do not remove the head of the queue
20 Concurrent Collections Continued.. 1. The BlockingQueueInterface extends this interface Supports all queue functionality, and additionally waits for a queue to become non-empty before retrieving an element and waits for space to become available when storing an element Intended primarily for use as a producer-consumer queues BlockingQueue implementations are thread safe, with all queue operations achieved atomically Some bulk collection operations are not atomic, but will fail if other threads interfere before the operation is completed
21 Concurrent Collections Continued.. 1. public interface ConcurrentMap<K,V> extends Map<K,V>: an extension to the Map interface that provides support for concurrency Supports concurrent putifabsent, remove and replace methods putifabsent(key, value): If the specifed key is not associated with a value associate it with a value. Performed atomically remove(key, value): Removes entry for a key if associated with value. Performed atomically remove(key, oldvalue, newvalue): Replaces entry for a key if associated with oldvalue with newvalue. Performed atomically
22 public class consumerthread implements Runnable{ private static int capacity ; private BlockingQueue<Integer> intqueue; public consumerthread(blockingqueue<integer> queue, int cap) { capacity = cap; this.intqueue = queue; public void run() { int num; for(int i = 0; i<capacity; i++) { try { num = intqueue.take(); if(num == -1) break; num*num); System.out.println("The Square of " + num + " is " + catch (InterruptedException e) { e.printstacktrace();
23 public class producerthread implements Runnable { private static int capacity ; private BlockingQueue<Integer> intqueue; public producerthread(blockingqueue<integer> queue, int cap) { capacity = cap; this.intqueue = queue; public void run() { for(int i = 0; i<capacity-1; i++) { try { intqueue.put(i); catch (InterruptedException e) { e.printstacktrace(); try { intqueue.put(-1); catch (InterruptedException e) { e.printstacktrace();
24 public class test { public static void main(string [] args) { BlockingQueue<Integer> queue = new ArrayBlockingQueue<Integer>(100); consumerthread consumer = new consumerthread(queue, 100); producerthread producer = new producerthread(queue, 100); new Thread(consumer).start(); new Thread(producer).start();
25 Code Walkthrough That was an example of using blocking queues to implement producer consumer relationships The producer class fills in a queue of integers The consumer class pulls integers of this queue and finds the square If the queue is empty a take() blocks, if full a put() blocks We could extend this to use a thread pool for the producers
26 Synchronizer Classes Includes a set of classes that aid synchronization between threads Includes semaphores, mutexes, barriers, latches and exchangers Semaphores Implements a counting semaphore (Djikstra Counting Semaphore) you can think of a counting semaphore as holding a certain number of permits If the permits are all used up, succeeding threads must wait for one to become available. The same thread can hold multiple permits Useful for imposing a resource limit A thread invokes the acquire() method to obtain a permit, acquire() blocks if no permits available A thread invokes release() to release a permit back to the pool
27 Synchronizer Classes Continued Mutexes Special case of the semaphore Stands for mutual exclusion semaphore A Semaphore with a single permit Used to gain exclusive access to a resource Similar to a lock with one key difference: can be released by a thread other then the one holding the mutex
28 Synchronizer Classes Continued Barriers (Cyclic Barrier) A synchronization aid that allows a set of threads to all reach a common point before proceeding Useful in programs that involve a fixed number of threads that must wait for each other at some point Called cyclic because barrier can be reused A thread signals it has reached the barrier by calling CyclicBarrier.await() The threads blocks until all other threads have reached the barrier (which signal this the same way) Can specify a timeout at which time the thread will stop blocking
29 Synchronizer Classes Continued Latches (CountDown Latches) Similar to a Cyclic Barrier, used to synchronize a set of threads that have a task divided amongst themselves The CountDownLatch is intialized with a given count On reaching the synchronization point a thread can invoke the countdown() method which decrements the internal count Threads that call the await() method will block until the count has reached zero At this point all waiting threads are released Calling await() after count has reached zero, has no effect ( the thread will continue executing) Threads that call countdown() are not required to call await() ( and can proceed executing) This is useful when the main thread has split execution between a number of worker threads The worker threads call countdown() on completing their task, the main thread blocks on await() until count has reached zero
30 Synchronizer Classes Continued Exchangers A synchronization point at which two threads can exchange objects Can be thought of as a CyclicBarrier with a count of two plus allowing an exchange of state at the barrier On calling the exchange() method the thread provides some object as input The exhange() methods returns the object entered as input by the second thread to the calling thread Useful for example in the case where one thread is filling a buffer (filler thread) and the other emptying (emptying thread) On calling exchange() the filler thread is passed an empty buffer The emptying thread obtain the newly full buffer from the filler thread
31 class cyclicbarriertest { void compute(task t, int num) { final CyclicBarrier barrier = new CyclicBarrier(num, //two inputs,num_threads new Runnable() { //runnable tasks for (int i = 0; i < nthreads; ++i) //split computation betweeen threads { final int id = i; Runnable worker = new Runnable() { // new worker final Segment segment = t.createsegment(id); public void run() { try { segment.update(); barrier.await(); catch(exception e) { return; } ; new Thread(worker).start(); Example code modified from the book java concurrency in practice
32 Code Walkthrough Example program that shows the usage of cyclic barriers Our function takes as input as task t and number of threads num It creates a cyclic barrier that takes two inputs num, and task Task execution is split among a group of worker threads Each worker computes a portion of the problem and waits to see if all other threads have finished (using a cyclic barrier to synchronize)
33 Atomic Variables A set of classes that provide lock free thread safe programming on single variables Provides for atomic conditional updating of single variables Boolean comapreandset(expected, update): atomically set value of variable to update value provided It holds expected value WeakCompareAnd Set is more efficient but any invocation of this method may fail, with the guarantee that repeated invocations will eventually succeed Also provides methods for getting and unconditionally setting values Instance of classes AtomicInteger, AtomicBoolean, AtomicLong, AtomicRefrence provide access and update to single variables of that type
34 Locks A generalization of built-in locking behavior, but with several different types of locks with superior functionality Reentrant lock: This has the same overall semantics as the synchronized keyword, with the exception that locks must be explicitly obtained and released Provides better throughput than synchronized when multiple threads are vying for the same lock ReadWrite lock: A pair of locks, one for reading and one for writing. The read lock can be simultaneously held by multiple threads. The write lock is exclusive AbstractQueuedSynchronizer: provides a framework for implementing locks and related synchronizers
35 Lock syntax lock.lock(); try { // operations protected by lock catch(exception ex) { finally { lock.unlock();
36 Summary So What did we cover Thread basics Java language support for concurrency Examples of why concurrency is hard Overview of the Java Concurrency framework A look at the principle classes in the framework and the functionality offered A few examples covering some of the major concepts For a more in depth look at the Concurrency Framework have a look at the excellent Java Concurrency in Practice book by Brian Goetz et al.
Threads & Tasks: Executor Framework
Threads & Tasks: Executor Framework Introduction & Motivation WebServer Executor Framework Callable and Future 12 April 2012 1 Threads & Tasks Motivations for using threads Actor-based Goal: Create an
Monitors, Java, Threads and Processes
Monitors, Java, Threads and Processes 185 An object-oriented view of shared memory A semaphore can be seen as a shared object accessible through two methods: wait and signal. The idea behind the concept
CS11 Java. Fall 2014-2015 Lecture 7
CS11 Java Fall 2014-2015 Lecture 7 Today s Topics! All about Java Threads! Some Lab 7 tips Java Threading Recap! A program can use multiple threads to do several things at once " A thread can have local
Concurrent Programming
Concurrent Programming Shared Memory Passing the baton Monitors Verónica Gaspes www.hh.se/staff/vero CERES, November 2, 2007 ceres Outline 1 Recap 2 Readers & Writers Readers & writers (mutual exclusion)
SSC - Concurrency and Multi-threading Java multithreading programming - Synchronisation (I)
SSC - Concurrency and Multi-threading Java multithreading programming - Synchronisation (I) Shan He School for Computational Science University of Birmingham Module 06-19321: SSC Outline Outline of Topics
Mutual Exclusion using Monitors
Mutual Exclusion using Monitors Some programming languages, such as Concurrent Pascal, Modula-2 and Java provide mutual exclusion facilities called monitors. They are similar to modules in languages that
Outline of this lecture G52CON: Concepts of Concurrency
Outline of this lecture G52CON: Concepts of Concurrency Lecture 10 Synchronisation in Java Natasha Alechina School of Computer Science [email protected] mutual exclusion in Java condition synchronisation
Java Memory Model: Content
Java Memory Model: Content Memory Models Double Checked Locking Problem Java Memory Model: Happens Before Relation Volatile: in depth 16 March 2012 1 Java Memory Model JMM specifies guarantees given by
OBJECT ORIENTED PROGRAMMING LANGUAGE
UNIT-6 (MULTI THREADING) Multi Threading: Java Language Classes The java.lang package contains the collection of base types (language types) that are always imported into any given compilation unit. This
SYSTEM ecos Embedded Configurable Operating System
BELONGS TO THE CYGNUS SOLUTIONS founded about 1989 initiative connected with an idea of free software ( commercial support for the free software ). Recently merged with RedHat. CYGNUS was also the original
Built-in Concurrency Primitives in Java Programming Language. by Yourii Martiak and Mahir Atmis
Built-in Concurrency Primitives in Java Programming Language by Yourii Martiak and Mahir Atmis Overview One of the many strengths of Java is the built into the programming language support for concurrency
Thread Synchronization and the Java Monitor
Articles News Weblogs Buzz Chapters Forums Table of Contents Order the Book Print Email Screen Friendly Version Previous Next Chapter 20 of Inside the Java Virtual Machine Thread Synchronization by Bill
Chapter 6 Concurrent Programming
Chapter 6 Concurrent Programming Outline 6.1 Introduction 6.2 Monitors 6.2.1 Condition Variables 6.2.2 Simple Resource Allocation with Monitors 6.2.3 Monitor Example: Circular Buffer 6.2.4 Monitor Example:
Shared Address Space Computing: Programming
Shared Address Space Computing: Programming Alistair Rendell See Chapter 6 or Lin and Synder, Chapter 7 of Grama, Gupta, Karypis and Kumar, and Chapter 8 of Wilkinson and Allen Fork/Join Programming Model
Parallel Programming
Parallel Programming 0024 Recitation Week 7 Spring Semester 2010 R 7 :: 1 0024 Spring 2010 Today s program Assignment 6 Review of semaphores Semaphores Semaphoren and (Java) monitors Semaphore implementation
Lecture 6: Semaphores and Monitors
HW 2 Due Tuesday 10/18 Lecture 6: Semaphores and Monitors CSE 120: Principles of Operating Systems Alex C. Snoeren Higher-Level Synchronization We looked at using locks to provide mutual exclusion Locks
JAVA - MULTITHREADING
JAVA - MULTITHREADING http://www.tutorialspoint.com/java/java_multithreading.htm Copyright tutorialspoint.com Java is amulti threaded programming language which means we can develop multi threaded program
Chapter 6, The Operating System Machine Level
Chapter 6, The Operating System Machine Level 6.1 Virtual Memory 6.2 Virtual I/O Instructions 6.3 Virtual Instructions For Parallel Processing 6.4 Example Operating Systems 6.5 Summary Virtual Memory General
Survey on Job Schedulers in Hadoop Cluster
IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 15, Issue 1 (Sep. - Oct. 2013), PP 46-50 Bincy P Andrews 1, Binu A 2 1 (Rajagiri School of Engineering and Technology,
Facing the Challenges for Real-Time Software Development on Multi-Cores
Facing the Challenges for Real-Time Software Development on Multi-Cores Dr. Fridtjof Siebert aicas GmbH Haid-und-Neu-Str. 18 76131 Karlsruhe, Germany [email protected] Abstract Multicore systems introduce
Multiprocessor Scheduling and Scheduling in Linux Kernel 2.6
Multiprocessor Scheduling and Scheduling in Linux Kernel 2.6 Winter Term 2008 / 2009 Jun.-Prof. Dr. André Brinkmann [email protected] Universität Paderborn PC² Agenda Multiprocessor and
Concurrent programming in Java
Concurrent programming in Java INF4140 04.10.12 Lecture 5 0 Book: Andrews - ch.05 (5.4) Book: Magee & Kramer ch.04 - ch.07 INF4140 (04.10.12) Concurrent programming in Java Lecture 5 1 / 33 Outline 1 Monitors:
Overview Motivating Examples Interleaving Model Semantics of Correctness Testing, Debugging, and Verification
Introduction Overview Motivating Examples Interleaving Model Semantics of Correctness Testing, Debugging, and Verification Advanced Topics in Software Engineering 1 Concurrent Programs Characterized by
Linux Process Scheduling Policy
Lecture Overview Introduction to Linux process scheduling Policy versus algorithm Linux overall process scheduling objectives Timesharing Dynamic priority Favor I/O-bound process Linux scheduling algorithm
Linux Driver Devices. Why, When, Which, How?
Bertrand Mermet Sylvain Ract Linux Driver Devices. Why, When, Which, How? Since its creation in the early 1990 s Linux has been installed on millions of computers or embedded systems. These systems may
Real Time Programming: Concepts
Real Time Programming: Concepts Radek Pelánek Plan at first we will study basic concepts related to real time programming then we will have a look at specific programming languages and study how they realize
Threads 1. When writing games you need to do more than one thing at once.
Threads 1 Threads Slide 1 When writing games you need to do more than one thing at once. Threads offer a way of automatically allowing more than one thing to happen at the same time. Java has threads as
Distributed Systems [Fall 2012]
Distributed Systems [Fall 2012] [W4995-2] Lec 6: YFS Lab Introduction and Local Synchronization Primitives Slide acks: Jinyang Li, Dave Andersen, Randy Bryant (http://www.news.cs.nyu.edu/~jinyang/fa10/notes/ds-lec2.ppt,
Design Patterns in C++
Design Patterns in C++ Concurrency Patterns Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa May 4, 2011 G. Lipari (Scuola Superiore Sant Anna) Concurrency Patterns May 4,
Last Class: Semaphores
Last Class: Semaphores A semaphore S supports two atomic operations: S Wait(): get a semaphore, wait if busy semaphore S is available. S Signal(): release the semaphore, wake up a process if one is waiting
Chapter 2: OS Overview
Chapter 2: OS Overview CmSc 335 Operating Systems 1. Operating system objectives and functions Operating systems control and support the usage of computer systems. a. usage users of a computer system:
Intro to GPU computing. Spring 2015 Mark Silberstein, 048661, Technion 1
Intro to GPU computing Spring 2015 Mark Silberstein, 048661, Technion 1 Serial vs. parallel program One instruction at a time Multiple instructions in parallel Spring 2015 Mark Silberstein, 048661, Technion
Introduction to LabVIEW Design Patterns
Introduction to LabVIEW Design Patterns What is a Design Pattern? Definition: A well-established solution to a common problem. Why Should I Use One? Save time and improve the longevity and readability
A Survey of Parallel Processing in Linux
A Survey of Parallel Processing in Linux Kojiro Akasaka Computer Science Department San Jose State University San Jose, CA 95192 408 924 1000 [email protected] ABSTRACT Any kernel with parallel processing
How To Write A Multi Threaded Software On A Single Core (Or Multi Threaded) System
Multicore Systems Challenges for the Real-Time Software Developer Dr. Fridtjof Siebert aicas GmbH Haid-und-Neu-Str. 18 76131 Karlsruhe, Germany [email protected] Abstract Multicore systems have become
Chapter 1 FUNDAMENTALS OF OPERATING SYSTEM
Chapter 1 FUNDAMENTALS OF OPERATING SYSTEM An operating system is a program that acts as an intermediary between a user of a computer and the computer hardware. The purpose of an operating system is to
Scheduling policy. ULK3e 7.1. Operating Systems: Scheduling in Linux p. 1
Scheduling policy ULK3e 7.1 Goals fast process response time good throughput for background jobs avoidance of process starvation reconciliation of needs of low- and high-priority processes Operating Systems:
Semaphores and Monitors: High-level Synchronization Constructs
Semaphores and Monitors: High-level Synchronization Constructs 1 Synchronization Constructs Synchronization Coordinating execution of multiple threads that share data structures Past few lectures: Locks:
Understanding Hardware Transactional Memory
Understanding Hardware Transactional Memory Gil Tene, CTO & co-founder, Azul Systems @giltene 2015 Azul Systems, Inc. Agenda Brief introduction What is Hardware Transactional Memory (HTM)? Cache coherence
A Comparison Of Shared Memory Parallel Programming Models. Jace A Mogill David Haglin
A Comparison Of Shared Memory Parallel Programming Models Jace A Mogill David Haglin 1 Parallel Programming Gap Not many innovations... Memory semantics unchanged for over 50 years 2010 Multi-Core x86
! Past few lectures: Ø Locks: provide mutual exclusion Ø Condition variables: provide conditional synchronization
1 Synchronization Constructs! Synchronization Ø Coordinating execution of multiple threads that share data structures Semaphores and Monitors: High-level Synchronization Constructs! Past few lectures:
Creating a Simple, Multithreaded Chat System with Java
Creating a Simple, Multithreaded Chat System with Java Introduction by George Crawford III In this edition of Objective Viewpoint, you will learn how to develop a simple chat system. The program will demonstrate
An Implementation Of Multiprocessor Linux
An Implementation Of Multiprocessor Linux This document describes the implementation of a simple SMP Linux kernel extension and how to use this to develop SMP Linux kernels for architectures other than
Java Virtual Machine Locks
Java Virtual Machine Locks SS 2008 Synchronized Gerald SCHARITZER (e0127228) 2008-05-27 Synchronized 1 / 13 Table of Contents 1 Scope...3 1.1 Constraints...3 1.2 In Scope...3 1.3 Out of Scope...3 2 Logical
First-class User Level Threads
First-class User Level Threads based on paper: First-Class User Level Threads by Marsh, Scott, LeBlanc, and Markatos research paper, not merely an implementation report User-level Threads Threads managed
Deadlock Victim. dimanche 6 mai 12
Deadlock Victim by Dr Heinz Kabutz && Olivier Croisier The Java Specialists Newsletter && The Coder's Breakfast [email protected] && [email protected] 1 You discover a race condition 2
EVALUATION. WA1844 WebSphere Process Server 7.0 Programming Using WebSphere Integration COPY. Developer
WA1844 WebSphere Process Server 7.0 Programming Using WebSphere Integration Developer Web Age Solutions Inc. USA: 1-877-517-6540 Canada: 1-866-206-4644 Web: http://www.webagesolutions.com Chapter 6 - Introduction
Topics. Producing Production Quality Software. Concurrent Environments. Why Use Concurrency? Models of concurrency Concurrency in Java
Topics Producing Production Quality Software Models of concurrency Concurrency in Java Lecture 12: Concurrent and Distributed Programming Prof. Arthur P. Goldberg Fall, 2005 2 Why Use Concurrency? Concurrent
Lecture 6: Introduction to Monitors and Semaphores
Concurrent Programming 19530-V (WS01) Lecture 6: Introduction to Monitors and Semaphores Dr. Richard S. Hall [email protected] Concurrent programming November 27, 2001 Abstracting Locking Details
Real-Time Systems Prof. Dr. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur
Real-Time Systems Prof. Dr. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No. # 26 Real - Time POSIX. (Contd.) Ok Good morning, so let us get
Processes and Non-Preemptive Scheduling. Otto J. Anshus
Processes and Non-Preemptive Scheduling Otto J. Anshus 1 Concurrency and Process Challenge: Physical reality is Concurrent Smart to do concurrent software instead of sequential? At least we want to have
Common Data Structures
Data Structures 1 Common Data Structures Arrays (single and multiple dimensional) Linked Lists Stacks Queues Trees Graphs You should already be familiar with arrays, so they will not be discussed. Trees
Performance Improvement In Java Application
Performance Improvement In Java Application Megha Fulfagar Accenture Delivery Center for Technology in India Accenture, its logo, and High Performance Delivered are trademarks of Accenture. Agenda Performance
Java DB Performance. Olav Sandstå Sun Microsystems, Trondheim, Norway Submission ID: 860
Java DB Performance Olav Sandstå Sun Microsystems, Trondheim, Norway Submission ID: 860 AGENDA > Java DB introduction > Configuring Java DB for performance > Programming tips > Understanding Java DB performance
OPERATING SYSTEMS PROCESS SYNCHRONIZATION
OPERATING SYSTEMS PROCESS Jerry Breecher 6: Process Synchronization 1 OPERATING SYSTEM Synchronization What Is In This Chapter? This is about getting processes to coordinate with each other. How do processes
Operating Systems and Networks
recap Operating Systems and Networks How OS manages multiple tasks Virtual memory Brief Linux demo Lecture 04: Introduction to OS-part 3 Behzad Bordbar 47 48 Contents Dual mode API to wrap system calls
language 1 (source) compiler language 2 (target) Figure 1: Compiling a program
CS 2112 Lecture 27 Interpreters, compilers, and the Java Virtual Machine 1 May 2012 Lecturer: Andrew Myers 1 Interpreters vs. compilers There are two strategies for obtaining runnable code from a program
CSE 544 Principles of Database Management Systems. Magdalena Balazinska Fall 2007 Lecture 5 - DBMS Architecture
CSE 544 Principles of Database Management Systems Magdalena Balazinska Fall 2007 Lecture 5 - DBMS Architecture References Anatomy of a database system. J. Hellerstein and M. Stonebraker. In Red Book (4th
Operating Systems Concepts: Chapter 7: Scheduling Strategies
Operating Systems Concepts: Chapter 7: Scheduling Strategies Olav Beckmann Huxley 449 http://www.doc.ic.ac.uk/~ob3 Acknowledgements: There are lots. See end of Chapter 1. Home Page for the course: http://www.doc.ic.ac.uk/~ob3/teaching/operatingsystemsconcepts/
ODROID Multithreading in Android
Multithreading in Android 1 Index Android Overview Android Stack Android Development Tools Main Building Blocks(Activity Life Cycle) Threading in Android Multithreading via AsyncTask Class Multithreading
Outline. Review. Inter process communication Signals Fork Pipes FIFO. Spotlights
Outline Review Inter process communication Signals Fork Pipes FIFO Spotlights 1 6.087 Lecture 14 January 29, 2010 Review Inter process communication Signals Fork Pipes FIFO Spotlights 2 Review: multithreading
Performance Evaluation and Optimization of A Custom Native Linux Threads Library
Center for Embedded Computer Systems University of California, Irvine Performance Evaluation and Optimization of A Custom Native Linux Threads Library Guantao Liu and Rainer Dömer Technical Report CECS-12-11
Programming real-time systems with C/C++ and POSIX
Programming real-time systems with C/C++ and POSIX Michael González Harbour 1. Introduction The C language [1], developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories, is the most widely
Introduction to Java
Introduction to Java The HelloWorld program Primitive data types Assignment and arithmetic operations User input Conditional statements Looping Arrays CSA0011 Matthew Xuereb 2008 1 Java Overview A high
Socket-based Network Communication in J2SE and J2ME
Socket-based Network Communication in J2SE and J2ME 1 C/C++ BSD Sockets in POSIX POSIX functions allow to access network connection in the same way as regular files: There are special functions for opening
6 Synchronization with Semaphores
32 6 Synchronization with Semaphores The too-much-milk solution is much too complicated. The problem is that the mutual exclusion mechanism was too simple-minded: it used only atomic reads and writes.
How to design and implement firmware for embedded systems
How to design and implement firmware for embedded systems Last changes: 17.06.2010 Author: Rico Möckel The very beginning: What should I avoid when implementing firmware for embedded systems? Writing code
Classes and Objects in Java Constructors. In creating objects of the type Fraction, we have used statements similar to the following:
In creating objects of the type, we have used statements similar to the following: f = new (); The parentheses in the expression () makes it look like a method, yet we never created such a method in our
Java Coding Practices for Improved Application Performance
1 Java Coding Practices for Improved Application Performance Lloyd Hagemo Senior Director Application Infrastructure Management Group Candle Corporation In the beginning, Java became the language of the
RTOS Debugger for ecos
RTOS Debugger for ecos TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... RTOS Debugger... RTOS Debugger for ecos... 1 Overview... 2 Brief Overview of Documents for New Users... 3
EECE 276 Embedded Systems
EECE 276 Embedded Systems Embedded SW Architectures Round-robin Function-queue scheduling EECE 276 Embedded Systems Embedded Software Architectures 1 Software Architecture How to do things how to arrange
Monitors and Semaphores
Monitors and Semaphores Annotated Condition Variable Example Condition *cv; Lock* cvmx; int waiter = 0; await() { cvmx->lock(); waiter = waiter + 1; /* I m sleeping */ cv->wait(cvmx); /* sleep */ cvmx->unlock();
Fair Scheduler. Table of contents
Table of contents 1 Purpose... 2 2 Introduction... 2 3 Installation... 3 4 Configuration...3 4.1 Scheduler Parameters in mapred-site.xml...4 4.2 Allocation File (fair-scheduler.xml)... 6 4.3 Access Control
Centralized Systems. A Centralized Computer System. Chapter 18: Database System Architectures
Chapter 18: Database System Architectures Centralized Systems! Centralized Systems! Client--Server Systems! Parallel Systems! Distributed Systems! Network Types! Run on a single computer system and do
Definition of SOA. Capgemini University Technology Services School. 2006 Capgemini - All rights reserved November 2006 SOA for Software Architects/ 2
Gastcollege BPM Definition of SOA Services architecture is a specific approach of organizing the business and its IT support to reduce cost, deliver faster & better and leverage the value of IT. November
A Thread Monitoring System for Multithreaded Java Programs
A Thread Monitoring System for Multithreaded Java Programs Sewon Moon and Byeong-Mo Chang Department of Computer Science Sookmyung Women s University, Seoul 140-742, Korea [email protected], [email protected]
Tasks Schedule Analysis in RTAI/Linux-GPL
Tasks Schedule Analysis in RTAI/Linux-GPL Claudio Aciti and Nelson Acosta INTIA - Depto de Computación y Sistemas - Facultad de Ciencias Exactas Universidad Nacional del Centro de la Provincia de Buenos
Threads Scheduling on Linux Operating Systems
Threads Scheduling on Linux Operating Systems Igli Tafa 1, Stavri Thomollari 2, Julian Fejzaj 3 Polytechnic University of Tirana, Faculty of Information Technology 1,2 University of Tirana, Faculty of
Lesson Objectives. To provide a grand tour of the major operating systems components To provide coverage of basic computer system organization
Lesson Objectives To provide a grand tour of the major operating systems components To provide coverage of basic computer system organization AE3B33OSD Lesson 1 / Page 2 What is an Operating System? A
Monday, April 8, 13. Creating Successful Magento ERP Integrations
Creating Successful Magento ERP Integrations Happy Together Creating Successful Magento ERP Integrations David Alger CTO / Lead Engineer www.classyllama.com A Little About Me Exclusively focused on Magento
Resurrecting Ada s Rendez-Vous in Java
Resurrecting Ada s Rendez-Vous in Java Luis Mateu, José M. Piquer and Juan León DCC - Universidad de Chile Casilla 2777, Santiago, Chile [email protected] Abstract Java is a programming language designed
Debugging Multi-threaded Applications in Windows
Debugging Multi-threaded Applications in Windows Abstract One of the most complex aspects of software development is the process of debugging. This process becomes especially challenging with the increased
Systemnahe Programmierung KU
S C I E N C E P A S S I O N T E C H N O L O G Y Systemnahe Programmierung KU A6,A7 www.iaik.tugraz.at 1. Virtual Memory 2. A7 - Fast-Food Restaurant 2 Course Overview A8, A9 System Programming A7 Thread
1 An application in BPC: a Web-Server
1 An application in BPC: a Web-Server We briefly describe our web-server case-study, dwelling in particular on some of the more advanced features of the BPC framework, such as timeouts, parametrized events,
First Java Programs. V. Paúl Pauca. CSC 111D Fall, 2015. Department of Computer Science Wake Forest University. Introduction to Computer Science
First Java Programs V. Paúl Pauca Department of Computer Science Wake Forest University CSC 111D Fall, 2015 Hello World revisited / 8/23/15 The f i r s t o b l i g a t o r y Java program @author Paul Pauca
Introduction to Parallel Programming and MapReduce
Introduction to Parallel Programming and MapReduce Audience and Pre-Requisites This tutorial covers the basics of parallel programming and the MapReduce programming model. The pre-requisites are significant
Intel TSX (Transactional Synchronization Extensions) Mike Dai Wang and Mihai Burcea
Intel TSX (Transactional Synchronization Extensions) Mike Dai Wang and Mihai Burcea 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Example: toy banking application with RTM Code written and tested in
Tuple spaces and Object spaces. Distributed Object Systems 12. Tuple spaces and Object spaces. Communication. Tuple space. Mechanisms 2.
Distributed Object Systems 12 Tuple spaces and Object spaces Tuple spaces and Object spaces Tuple spaces Shared memory as a mechanism for exchanging data in a distributed setting (i.e. separate from processes)
An Overview of Java. overview-1
An Overview of Java overview-1 Contents What is Java Major Java features Java virtual machine Java programming language Java class libraries (API) GUI Support in Java Networking and Threads in Java overview-2
3.5. cmsg Developer s Guide. Data Acquisition Group JEFFERSON LAB. Version
Version 3.5 JEFFERSON LAB Data Acquisition Group cmsg Developer s Guide J E F F E R S O N L A B D A T A A C Q U I S I T I O N G R O U P cmsg Developer s Guide Elliott Wolin [email protected] Carl Timmer [email protected]
Introduction to Data Structures
Introduction to Data Structures Albert Gural October 28, 2011 1 Introduction When trying to convert from an algorithm to the actual code, one important aspect to consider is how to store and manipulate
CS161: Operating Systems
CS161: Operating Systems Matt Welsh [email protected] Lecture 2: OS Structure and System Calls February 6, 2007 1 Lecture Overview Protection Boundaries and Privilege Levels What makes the kernel different
Java Interview Questions and Answers
1. What is the most important feature of Java? Java is a platform independent language. 2. What do you mean by platform independence? Platform independence means that we can write and compile the java
Crash Course in Java
Crash Course in Java Based on notes from D. Hollinger Based in part on notes from J.J. Johns also: Java in a Nutshell Java Network Programming and Distributed Computing Netprog 2002 Java Intro 1 What is
