ITEC 3030 TERMS I HAVE TO REMEMBER

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/21

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Single point of failure

One part whose failure stops the entire system from working.

2
New cards

Cascading failure

One failure triggers a chain of failures through dependencies or load shifts.

3
New cards

Workload

tasks

4
New cards

throughput

tasks handled/time

5
New cards

response time

wait per task; higher throughput lowers wait if workload fixed.

6
New cards

The knee

Load point where performance worsens rapidly; small load increases cause big response time jumps.

7
New cards

Partition and Parallelize

Split work into independent parts and process them simultaneously for speed.

8
New cards

Reduce Contention via Replication

Duplicate resources so users share load, reducing bottlenecks.

9
New cards

Scaling up (vertical)

Add power to one machine (CPU, RAM) to handle more.

10
New cards

Scaling out (horizontal)

Add more machines/nodes to share workload in parallel.

11
New cards

Graceful degradation under overload

Reduce service to protect current users instead of failing completely.

12
New cards

Load balancing

Distribute incoming work evenly across multiple resources.

13
New cards

Caching

Store recent results for faster repeated access.

14
New cards

Fault tolerance by redundancy

Use backup components to continue service after a failure.

15
New cards

ADP

No dependency loops; components should not form cycles in dependency graphs.

16
New cards

SDP

Depend on more stable components to prevent frequent changes affecting others.

17
New cards

Connectors

Infrastructure that links components for interaction, without performing domain tasks.

18
New cards

MVC

Controller handles input, updates Model; Model notifies View to update display.

19
New cards

Functional scenario

Describes step-by-step system actions for a specific task.

20
New cards

Quality scenario

Tests system’s performance or behavior under specific conditions.

21
New cards

Scenario

Story to test architecture against requirements

22
New cards

Good scenario

Clear, realistic, specific, and measurable for success.