Coder Social home page Coder Social logo

theg6284 / streaming-02-multiple-processes Goto Github PK

View Code? Open in Web Editor NEW

This project forked from denisecase/streaming-02-multiple-processes

0.0 0.0 0.0 31 KB

Get started with multiple processes and concurrent access to shared resources

Python 100.00%

streaming-02-multiple-processes's Introduction

streaming-02-multiple-processes

Multiple processes accessing a shared resource concurrently

Oveview

This example starts up a shared database and three different processes.

The processes represent multiple users, or locations, or programs hitting a shared database at the same time.

Prerequisite

Complete the setup at streaming-01-getting-started.

About

Execute about.py to generate some useful information.

First Run

Executing multiple_processes.py script.

Read the output. Read the code. Try to figure out what's going on.

  1. What libraries did we import?
  2. Where do we set the task_duration?
  3. How many functions are defined?
  4. What are the function names?
  5. In general, what does each function do?
  6. Where does the execution begin?
  7. How many processes do we start?
  8. How many records does each process insert?

In this first run, we start 3 processes, each inserting 2 records into a shared database (for a total of 6 records inserted.)

In each case, the process gets a connection to the database, and a cursor to execute SQL statements. They insert a record, and get out of the database quickly.

In general, we're successful and six new records get inserted.

Second Run

For the second run, modify the task_duration to make each task take 3 seconds. Run it again. With the longer tasks, we now get into trouble - one process will have the database open and be working on it - then when another process tries to do the same, it can't and we end up with an error.

Document Results After Each Run

To clear the terminal, in the terminal window, type clear and hit enter or return.

clear

To document results, clear the terminal, run the script, and paste all of the terminal contents into the output file.

Use out0.txt to document the first run.

Use out3.txt to document the second run.

Select All, Copy, Paste

On Windows the select all, copy, paste hotkeys are:

  • CTRL a
  • CTRL c
  • CTRL v

On a Mac the select all, copy, paste hotkeys are:

  • Command a
  • Command c
  • Command v

Detailed copy/paste instructions (as needed)

  1. To use these keys to transfer your output into a file, clear the terminal, run the script, then click in the terminal to make it active.
  2. To select all terminal content, hold CTRL and the 'a' key together.
  3. To copy the selected content, hold CTRL and the 'c' key together.
  4. To paste, open the destination file (e.g. out0.py) for editing.
  5. Click somewhere in the destination file to make it the active window.
  6. Now hit CTRL a (both together) to select all of the destination file.
  7. Hit CTRL v (both together) to paste the content from your clipboard.

Do a web search to find helpful videos on anything that seems confusing.

Reading Error Messages

Python has pretty helpful error messages. When you get an error, read them carefully.

  • What error do you get?
  • Can you tell what line it was executing when it failed?

Database Is Locked Error

Do a web search on the sqlite3 'database is locked' error.

  • What do you learn?
  • Once a process fails, it crashes the main process and everything stops.

Deadlock

Deadlock is a special kind of locking issue where a proces is waiting on a resource or process, that is waiting also.

Rather than crashing, a system in deadlock may wait indefinitely, with no process able to move forward and make progress.

Learn More

Check out Wikipedia's article on deadlock and other sources to learn how to prevent and avoid locking issues in concurrent processes.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.