▲ | knome 2 days ago | |||||||
there's a lot of interesting problems just in the networking. if it took four years for a message to cross the void from where you are to the recipient, you certainly wouldn't want to wait a full eight years to see they didn't send a receipt message and only then retransmit. eight years is some awful latency. you'd probably want to send each message at something like a fibonacci over the months. so, gaps of (1, 1, 2, 3, 5, 8, etc) would mean sending the message on months (1, 2, 4, 7, 12, 20, 33, etc) until you got a confirmation message that they had received it. they would similarly want to send confirmations in the same sort of pattern until they stopped receiving copies of that message. spreading the resends out over time would ensure not all of your bandwidth was going to retransmissions. you'd want that higher number of initial transmissions in hopes that enough of the message makes it across the void that they would have started sending receipts reasonably close to the four years the initial message would take to get there. if you had the equivalent of a galactic fido-net system, it could be decades and lifetimes between messages sent to distant stars and messages sent back. | ||||||||
▲ | furyofantares 2 days ago | parent | next [-] | |||||||
Wouldn't you want to completely saturate your bandwidth? Just always be transmitting whatever message has been transmitted the least. | ||||||||
| ||||||||
▲ | toast0 2 days ago | parent | prev | next [-] | |||||||
You'd want to do a lot of work with erasure codes as well. | ||||||||
▲ | Sanzig 2 days ago | parent | prev | next [-] | |||||||
It would be a lot more efficient to use erasure coding + heavy interleaving with other traffic so that you can withstand a maximum predicted outage period. | ||||||||
▲ | scottyah 2 days ago | parent | prev [-] | |||||||
and you'd probably want to take orbits/vectors into account, a djikstra-esque algorithm where the distances change is crazy. Also, our signals are usually going very short distances very quickly and are very protected from solar/cosmic waves by the ionosphere. What kind of data loss could you get transmitting in open space across vast distances and time? | ||||||||
|