visit
For example, let’s considera car rental service that uses the database per service principle:
Geoareas microservice owns data about different geographic polygons — cities, and regions. The schema looks like this: {id, geometry}
Tariffs microservice, in turn, manages the data of the rental price. Schema looks something like this: {id, geoarea_id, price_per_minute}. It has a dependence on the Geoareas microservice.
At some point, we need to delete an object from the Geoareas microservice — call the endpoint:
DELETE /geoarea?id={id}.
This can lead to a number of problems, even including the inaccessibility of the service, since we still have tariffs referencing a removed geoarea.
An unpleasant dependence appears: in order to remove a geoarea from Geoareas
you need to make a request to Tariffs
at the time of removal to check which tariff depends on it. (sorry for this)
Dangerous cohesion appears — with this approach, in the future, Geoareas
will send requests to all microservices where geoareas are used.
By the way, databases have
For our example, the webhook inthe Geoareas microservice would look like this:
WEBHOOK target=”pre-delete” action=”POST tariffs/check_delete?geoarea_id={id}”
In the Tariffs microservice, respectively, you need to implement endpoint /check_delete to check that the zone can be deleted and that the Tariffs
microservice “is not against”.
The uniformity of these hooks makes them easy to configure on the fly. When a new microservice that uses Geoareas appears, add a new check to the list of hooks.
Thus, Geoareas supports the mechanism of unified webhooks but knows nothing about what kind of business logic is behind these hooks.
In this option, we will keep an eye on who uses Geoareas.
Extending the API of our microservice with these new endpoints:
POST /hold?geoarea_id={id}&holder={holder}
POST /release?geoarea_id={id}&holder={holder}
Thus, if we want to create a new tariff in a zone, then before that we need to block this zone in the Geoareas microservice, for example:
POST /hold?
geoarea_id=moscow&holder=tariffs_tariffmoscow1
Next to geoareas in the Geoareas microservice, we store a list of those who “hold” these zones.
When trying to delete a geoarea, we check the list of holders and do not allow deleting if the list is not empty.
/release?geoarea_id=moscow&holder=tariffs_tariffmoscow1