Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Draft notes to be formed into a white paper

Define the problem:

  • Course-grained access to fine-grained resources

  • Getting rid of composites

  • Alternate security protocols

Solution: the Backend Facade pattern.

  • Inspired by the BFF. Originally “front end” referred to a user interface; in this context, it could be a UI or another backend system.

  • Solves the impedance mismatch between systems.

  • Similar to the Facade pattern in OO systems

Alternatives

  • GraphQL - why not? Well-defined need is easier to express and reason about. Create a simple single definition of an API.

Design

  • BEF app needs a key and secret to an ODS/API. Maybe to many of them.

  • Analyze your authorization strategy and needs.

  • Cache local data for higher performance.

    • Possible implication: ETL

  • Change Queries (ETL!)

    • Show basic interaction

    • Definitely(?) implies caching.

  • Storing multiple tenants' data? Decide on a multi-tenancy pattern for segregating the data in the caching layer.

  • Evolutionary diagrams:

    • FE to BFF to BEF to ODS/API

    • Add caching layer and ETL

  • No labels