ancient_architecture_notes.rst 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .. WARNING::
  2. These architecture notes are spectacularly old, and date back to when Synapse
  3. was just federation code in isolation. This should be merged into the main
  4. spec.
  5. = Server to Server =
  6. == Server to Server Stack ==
  7. To use the server to server stack, home servers should only need to interact with the Messaging layer.
  8. The server to server side of things is designed into 4 distinct layers:
  9. 1. Messaging Layer
  10. 2. Pdu Layer
  11. 3. Transaction Layer
  12. 4. Transport Layer
  13. Where the bottom (the transport layer) is what talks to the internet via HTTP, and the top (the messaging layer) talks to the rest of the Home Server with a domain specific API.
  14. 1. Messaging Layer
  15. This is what the rest of the Home Server hits to send messages, join rooms, etc. It also allows you to register callbacks for when it get's notified by lower levels that e.g. a new message has been received.
  16. It is responsible for serializing requests to send to the data layer, and to parse requests received from the data layer.
  17. 2. PDU Layer
  18. This layer handles:
  19. * duplicate pdu_id's - i.e., it makes sure we ignore them.
  20. * responding to requests for a given pdu_id
  21. * responding to requests for all metadata for a given context (i.e. room)
  22. * handling incoming backfill requests
  23. So it has to parse incoming messages to discover which are metadata and which aren't, and has to correctly clobber existing metadata where appropriate.
  24. For incoming PDUs, it has to check the PDUs it references to see if we have missed any. If we have go and ask someone (another home server) for it.
  25. 3. Transaction Layer
  26. This layer makes incoming requests idempotent. I.e., it stores which transaction id's we have seen and what our response were. If we have already seen a message with the given transaction id, we do not notify higher levels but simply respond with the previous response.
  27. transaction_id is from "GET /send/<tx_id>/"
  28. It's also responsible for batching PDUs into single transaction for sending to remote destinations, so that we only ever have one transaction in flight to a given destination at any one time.
  29. This is also responsible for answering requests for things after a given set of transactions, i.e., ask for everything after 'ver' X.
  30. 4. Transport Layer
  31. This is responsible for starting a HTTP server and hitting the correct callbacks on the Transaction layer, as well as sending both data and requests for data.
  32. == Persistence ==
  33. We persist things in a single sqlite3 database. All database queries get run on a separate, dedicated thread. This that we only ever have one query running at a time, making it a lot easier to do things in a safe manner.
  34. The queries are located in the synapse.persistence.transactions module, and the table information in the synapse.persistence.tables module.