4.2 Routing (Fault Tolerance)

CSN-1.E.1 The Internet has been engineered to be fault-tolerant, with abstractions for routing and transmitting data.

CSN-1.E.2 Redundancy is the inclusion of extra components that can be used to mitigate failure of a system if other components fail.

CSN-1.E.3 One way to accomplish network redundancy is by having more than one path between any two connected devices.

CSN-1.E.4 If a particular device or connection on the Internet fails, subsequent data will be sent via a different route, if possible.

CSN-1.E.5 When a system can support failures and still continue to function, it is called fault-tolerant. This is important because elements of complex systems fail at unexpected times, often in groups, and fault tolerance allows users to continue to use the network.

CSN-1.E.6 Redundancy within a system often requires additional resources but can provide the benefit of fault tolerance.

CSN-1.E.7 The redundancy of routing options between two points increases the reliability of the Internet and helps it scale to more devices and more people.

Network Examples

In these examples the letters represent computing devices and the lines represent wires that connect the devices.

Redundancy Example Fault Tolerance Example

4.3 Sequential, Parallel, and Distributed Computing

Computer Tasks

  • A computer needs to handle many tasks as it operates:
    • System Tasks

      : the operating system has dozens of tasks, like scheduling what it will be doing next, managing hardware, working with the network, etc.

    • User Tasks

      : executing programs that the user has selected, such as running MS Excel and MS Word, or computer games

  • Tasks need to be scheduled by the operating system. Balance tasks so all CPUs are being used evenly and fully.
  • Running tasks can be done sequentially, in parallel, and be distributed to other computers.

Sequential Computing

  • Sequential Computing

    : Tasks are done one after another. It is a computational model in which operations are performed in order one at a time.

  • The computer works tasks A, B, C, … one at a time.
  • Why do this?
    • It has limited hardware: It only has one CPU (older hardware)
    • Its tasks are dependent: Task B depends on Task A, Task C depends on Task B, so the needed order is A, B, and finally C.
  • Execution Time: Sequential Operations add up all the individual task execution times.
  • Example:
    • Task A takes 50 ms
    • Task B takes 40 ms
    • Task C takes 35 ms
    • Total processing time is 50 ms + 40 ms + 35 ms = 125 ms
  • Think of sequential computing as items one at a time on a conveyor belt.

    Sequential Computing

Parallel Computing

  • Parallel Computing

    : A computational model where the program is broken into multiple smaller sequential computing operations, some of which are performed simultaneously.

    • schedules tasks to be executed at the same time
    • normally done on the same computer
    • consists of a parallel portion and a sequential portion
  • Comparing efficiency of solutions can be done by comparing the time it takes to perform the same set task.
  • Why Parallel Computing?
    • Hardware Driven

      : New hardware has several processors in one system, called cores. 1 CPU can have 64+ cores. Graphic cards for gaming can have thousands of cores.

    • Faster Operations: Supercomputers link hundreds of CPUs together to work the same problem.
    • Data Driven

      : A lot of data can be processed the same way (video gaming), called SIMD (Single Instruction Multiple Data)

    • Solutions that use parallel computing can scale more effectively than solutions that use sequential computing
  • Execution Time:
    • Time equals the longest time taken on any given processor,
    • A parallel computing solution takes as long as its sequential tasks plus the longest of its parallel tasks.
    • Parallel processing works best when the tasks are independent from each other– they don’t depend on each other’s answers.
  • Example:
    • Core 1: Task A takes 45 ms
    • Core 2: Task B takes 50 ms
    • Core 3: Task C takes 25 ms; Task D takes 30 ms
    • Core 4: Task E takes 40 ms
    • Total time needed: 55 ms (Core 3 with Tasks C and D in sequence)

    Parallel Computing

Popcorn Hack 1

A particular computer has two identical processors which can run in parallel. Each process must be executed on a single processor and each processor can only run one process at a time. The table below lists the amount of time it takes to execute each of the processes on a single computer. None of the processes are dependent on any of the others. What is the minimum amount of time (approximate) to execute all three processes when the two processors are run in parallel? - 50 seconds as the total time is usally the most time that a singular process takes. Z and Y run simulatanous that takes up 30 seconds in total and x takes up 20 more to a total of 50 seconds. | Process | Execution Time on Either Processor | | ----------- | ----------- | | X | 50 seconds | | Y | 10 seconds | | Z | 30 seconds |

Comparing Efficiency of Solutions

  • Comparing efficiency of solutions can be done by comparing the time it takes them to perform the same task.
  • Sequential Execution Time

    :

    • Sequential Operations add up all the individual task execution times.
      • Core 1: Task A takes 50 ms
      • Core 1: Task B takes 40 ms
      • Core 1: Task C takes 35 ms
      • Total processing time is 50 ms + 40 ms + 35 ms = 125 ms
  • Parallel Execution Time

    :

    • Time equals the longest time taken on any given processor.
    • Parallel processing works best when the tasks are independent from each other–they don’t depend on each other’s answers.
      • Core 1: Task A takes 50 ms
      • Core 2: Task B takes 40 ms + Task C takes 35 ms
      • Total time needed: 75 ms (Core 2 with Tasks B and C in sequence)
Parallel Sequential
time = longest time taken on any given processor, aka faster time = add up all individual task times aka slower
tasks done simultaneously tasks done individually
good for big problems good for small problems
harder to implement easier to implement
less portable more portable

Speedup Time

  • The “speedup” of a parallel solution is measured in the time it took to complete the task sequentially divided by the time it took to complete the task when done in parallel.
    • Sequential Total processing time is 50 ms + 40 ms + 35 ms = 125 ms
    • Parallel Total time needed = 75 ms
    • Speedup 125 ms / 75 ms = 1.67 ms

NOTE: When increasing the use of parallel computing in a solution, the efficiency of the solution is still restricted by the sequential portion. This means that at some point, adding parallel portions will no longer significantly increase efficiency.

Distributed Computing

  • Distributed Computing

    : the sending of tasks from one computer to one or more others. It is a model in which multiple devices are used to run a program.

    • can mix sequential and parallel computing, based on how it sends out tasks to other computers to work
    • allows problems to be solved that could not be solved on a single computer because of either the processing time or storage needs involved
  • Examples:
    • Google Web Search: you ask for a search, and Google sends the request to its thousand of servers in the background.
    • Web Services: standards on how computers can ask for task execution over the web. This includes protocols like SOAP, RSS, REST, etc.
    • Beowulf Clusters

      : special software to group different computers together

  • How is it different from sequential and parallel execution?
    • Uses more than one physical computer
    • The computers, data, and tasks can be very different from each other
    • Needs a network
    • Is a mix of sequential and parallel execution of tasks
    • Can take longer based on the network and waiting for responses from other computers

    Distributed Computing

Hacks: Multiple Choice

Record your answers in the cell below, titled “Write Answers Here.”

  1. Which of the following is NOT a benefit of a fault-tolerant network?
    • A) Data has more than one path to travel from one device to another.
    • B) If part of the netowrk fails, the network can still function by using other parts.
    • C) Data will only take one route from one device to another, no matter the number of routes available.
    • D) More devices creates more connections and makes the network stronger.
  2. What causes network redundancy?
    • A) Having more than one path between any two connected devices
    • B) Having one path between any two connected devices
    • C) Having no path between any two connected devices
    • D) All networks are redundant


  1. A computer has two duplicate processors that are able to run in parallel. The table below shows the amount of time it takes each processor to execute each of the two processes. Neither process is dependent on the other.
Process Execution Time on Either Processor
A 25 seconds
B 45 seconds

What is the difference in execution time between running the two processes in parallel in place of running them one after the other on a single processor?

  • A) 50 seconds
  • B) 25 seconds
  • C) 70 seconds
  • D) 22 seconds


  1. A computer has two processors that can run in parallel. The table below indicates the amount of time it takes each processor to execute four different processes. None of the processes is dependent on any of the other processes.
Process Execution Time on Either Processor
A 25 seconds
B 25 seconds
C 10 seconds
D 40 seconds

How should the program assign the four processes to optimize execution time?

  • A) Processes B and C should be assigned to one processor and A and D to the other processor.
  • B) Process B should be assigned to one processor and Process C to the other processor.
  • C) There is no way to optimize execution time; this will be very slow.
  • D) Processes A and B should be assigned to one processor and C and D to the other processor.

Write Answers Here

After you record your answers in this cell, take a screen shot of the cell and DM it to Nikki Hekmat on Slack. There will be a penalty of 10% off your grade for each day the assignment is late. The homework will be due Monday December 4th at 11:59 PM.

Popcorn Hack Answer

[50] seconds
50 seconds as the total time is usally the most time that a singular process takes. Z and Y run simulatanous that takes up 30 seconds in total and x takes up 20 more to a total of 50 seconds.

MC Hacks Answers

Simply put A, B, C, or D next to each number to indicate the correct answers for the questions above.

  1. C
  2. A
  3. B
  4. D

””