We want to ensure that UUIDs are unique, even if there are multiple directories and nodes in play. We need to adapt our UUID generator to use these constraints as domains. Currently we are using uuid4, which just generates a completely random id. If we change to uuid5, the ids will be unique with respect to the node that generates them.
We want to ensure that UUIDs are unique, even if there are multiple directories and nodes in play. We need to adapt our UUID generator to use these constraints as domains. Currently we are using uuid4, which just generates a completely random id. If we change to uuid5, the ids will be unique with respect to the node that generates them.