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:\n    def __init__(self):\n        pass\n\n    def execute(self):\n        print('Executing Bulkhead Pattern')