Lucas Schatz wrote 10.02.2024 13:49:
> So, in the case of a distributed system it's a very useful resource.
It actually depends on the method and purpose of distribution.
Firebird is usually used with duplication so every node contains exactly the
same data and cross-queries are not needed.
In sharding information is not intersected between nodes so every query is
executed on exactly one shard (otherwise architect chose wrong sharding criteria).
Cross-queries used to be used in horizontal scaling that uses partial
sharding. This approach is very questionary.
--
WBR, SD.