urbit/pkg/landscape
Philip Monk e1419d1787 contact-store: no-op if adding old contact
%contact-store is responsible for sending updates about contacts, eg
profile color.  When it hears an update, it fans that out to its
subsribers, unless that update is stale.  If you reguarly fan out stale
updates, then they reverberate across the network indefinitely -- we
call this "echoing".

To cut off this echoing, all edits have a timestamp, and we consider any
updates from before this timestamp to be stale.  Additions are separate
from edits, and for them we instead do a value comparison on the contact
-- if it didn't change, we consider the update stale.

The problem with this scheme is that if an addition and edit happen one
after the other in quick succession, you might have the following
sequence:

- add comes in with timestamp T1
- edit comes in with timestamp T2 after T1
- we hear an echo of the add, and that errantly applies because it
  passes our "did the contact actually change" check
- we hear an echo of the edit, which applies because T2 is after T1
- GOTO 3

Each time we apply the stale update, we fan that out to our subscribers,
and if any two hosts subscribe to each other, this will loop.  This may
even loop unconditionally because the ship that made the profile changes
seems like it might not recognize that those changes didn't come from
itself, so it sends them to all the groups it's in.  If so, that's an
important issue to fix.

Fixes tloncorp/landscape-issues#1442
2022-12-12 13:03:41 -07:00
..
app contact-store: no-op if adding old contact 2022-12-12 13:03:41 -07:00
gen landscape: correct mark 2021-12-04 20:55:15 -08:00
lib Merge branch 'lf/gladio-2' 2022-12-09 15:23:18 +10:00
mar Merge pull request #5519 from urbit/lf/fix-admin-remove 2022-01-10 11:06:58 -06:00
sur landscape: include club migration 2022-11-23 14:29:40 +10:00
ted Merge branch 'lf/gladio-2' 2022-12-09 15:23:18 +10:00
tests/lib bitcoin: split into seperate desk 2021-08-26 13:00:58 +10:00
desk.bill bill: removing notify 2022-12-08 07:56:21 -06:00
desk.ship various: update pills, jams, docket 2021-09-29 22:53:18 +10:00
sys.kelvin kelvin: update 2022-12-08 11:01:48 -06:00