LearningTech

Reliability

Bulkhead Pattern

Description

See 'Bulkhead' in Distributed Systems. Isolating resources.

Where to use

  • Fault tolerance.

Real World Example

Thread pools.

Code Example

class BulkheadPattern:
    def __init__(self):
        pass

    def execute(self):
        print('Executing Bulkhead Pattern')