ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Cloud Computing
    COMP4123
    Progress0 / 16 topics
    Topics
    1. Introduction to cloud computing2. Cloud benefits and challenges3. Cloud service providers and cloud ecosystem4. Concurrency in the cloud5. Parallel and distributed systems6. Cloud access and cloud interconnection networks7. Cloud data storage8. Cloud applications9. Cloud hardware10. Cloud software11. Cloud resource management and scheduling12. Cloud security13. Privacy and compliance issues14. Portability and interoperability issues15. Big Data16. Data streaming and Mobile cloud
    COMP4123›Parallel and distributed systems
    Cloud ComputingTopic 5 of 16

    Parallel and distributed systems

    3 minread
    543words
    Beginnerlevel

    🌩️ Parallel and Distributed Systems

    🖥️ 1. What is a Parallel System?

    📌 Definition

    A Parallel System is a computing system where multiple processors (CPUs) work together simultaneously to solve a single problem.

    👉 In simple words: Breaking one big task into smaller parts and solving them at the same time on one system


    ⚙️ How Parallel Systems Work (Step-by-Step)

    Task → Split into Parts → Processors (CPU1, CPU2, CPU3) → Combine Results
    

    🧠 Steps:

    1. A large task is divided into smaller tasks
    2. Each processor handles one part
    3. All parts are executed at the same time
    4. Results are combined

    📦 Example

    • Image processing (splitting image into parts)
    • Scientific calculations
    • Video rendering

    🎯 Key Features of Parallel Systems ⭐

    ✔ Multiple processors in one machine ✔ Shared memory ✔ High speed ✔ Tight coupling (closely connected components)


    🌐 2. What is a Distributed System?

    📌 Definition

    A Distributed System is a collection of multiple independent computers (nodes) connected through a network that work together as a single system.

    👉 In simple words: Many computers in different locations working together


    ⚙️ How Distributed Systems Work (Step-by-Step)

    User → Network → Computer 1
                   → Computer 2
                   → Computer 3 → Results Combined
    

    🧠 Steps:

    1. Task is divided into parts
    2. Each part is sent to different machines
    3. Machines process independently
    4. Results are combined

    📦 Example

    • Cloud computing systems
    • Web services
    • Online banking systems

    🎯 Key Features of Distributed Systems ⭐

    ✔ Multiple independent computers ✔ Connected via network ✔ No shared memory ✔ Loosely coupled


    ⚖️ 3. Parallel vs Distributed Systems (VERY IMPORTANT ⭐)

    Feature Parallel System Distributed System
    Definition Multiple processors in one system Multiple computers connected via network
    Location Same machine Different locations
    Memory Shared memory Separate memory
    Coupling Tight Loose
    Communication Very fast Slower (network-based)
    Example Multi-core CPU Cloud computing

    🔗 4. Relationship with Cloud Computing

    ☁️ Cloud uses Distributed Systems

    👉 Cloud computing is mainly based on distributed systems

    ✔ Data stored across many servers ✔ Tasks processed in different locations


    🧠 Combined Use:

    • Parallel processing inside servers
    • Distributed processing across data centers

    🧩 5. Advantages of Parallel Systems

    🟢 Benefits

    ✔ Faster execution ✔ Efficient resource usage ✔ Handles complex problems


    🧩 6. Advantages of Distributed Systems

    🟢 Benefits

    ✔ Scalability (add more machines) ⭐ ✔ Reliability (failure of one node doesn’t stop system) ✔ Resource sharing ✔ Geographic distribution


    ⚠️ 7. Challenges

    🔴 Parallel System Challenges

    • Synchronization issues
    • Deadlocks
    • Complex programming

    🔴 Distributed System Challenges ⭐

    • Network failures
    • Data consistency
    • Security issues
    • Latency (delay)

    📊 8. Diagram: Combined View

              Cloud System
                   |
         ---------------------
         |                   |
     Parallel Processing   Distributed Systems
     (Inside server)      (Across servers)
    

    📝 9. Important Exam Questions ⭐

    👉 Define parallel system 👉 Define distributed system 👉 Difference between parallel and distributed systems 👉 Advantages of distributed systems 👉 Role in cloud computing


    📊 10. Final Summary Table (Quick Revision)

    Topic Parallel System Distributed System
    Basic Idea One system, many processors Many systems connected
    Speed Very fast Depends on network
    Memory Shared Separate
    Location Same place Different places
    Scalability Limited High
    Reliability Moderate High
    Example Multi-core CPU Cloud computing

    🧠 Final Revision Tips

    ✔ Remember key difference: same machine vs multiple machines ✔ Learn shared vs separate memory ✔ Understand cloud = distributed system ✔ Use examples in answers


    Previous topic 4
    Concurrency in the cloud
    Next topic 6
    Cloud access and cloud interconnection networks

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time3 min
      Word count543
      Code examples0
      DifficultyBeginner