Rez Delamasa
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # `useServerEvents` Composable In order to notify the user of changes in the lifecycle of asynchronous backend processes without resorting to long polling, we need to be able to push messages to the client. Institution's team is building a serverless WebSocket service using the AWS WebSocket API Gateway that the Adoption's front-end web client will interact with. The AWS WebSocket API Gateway imposes the following [limits](https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html): * Message payload size 128 KB * Connection duration for WebSocket API 2 hours * Idle Connection Timeout 10 minute ## Type Definitions ``` // Received from WS type Message = { uuid: string; timestamp: string; topic: string; namespace: string; detailType: string; detail: Record<string, unknown>; } type WebSocketStatus = 'OPEN' | 'CONNECTING' | 'CLOSED' type Subscription = (Message)=>void; type Subscriptions = Record<string, Subscription[]>; ``` ## Problems 1) The WS connection will close automatically after 10 mins. of inactivity, potentially causing the user to miss messages sent by the server after timeout 2) The server could potentially emit duplicate events, causing the frontend to invoke event/msg handlers multiple times for the same event. 3) When the 2 hr. connection duration limit is reached, the WS connection will have to be reestablished. There will some indeterminate time interval, ~ a second, during which the client will be unable to receive messages pushed by the server. ## Proposed Changes To deal with Problem #1, the Idle Connection Timeout, we will implement a heartbeat to keep the connection open even when idle. To deal with Problem #2, we keep an object in memory where the key is a concatenation of `detailType` and `topic` of each WS message received and the value is the timestamp of the DynamoDB insertion that triggered the WS message to be emitted. We will filter all WS messages received from the server by DB timestamp of received event > DB timestamp of last received event, and then update our map with the new event/msg. To deal with the 2 hr. max connection duration, we will use the `autoReconnect` feature of `useWebSocket` with a delay of 0. Institution's is implementing a replay feature. When a new WS connection is opened to the WS service, the last n events will be sent to the client. This will allow the client to catch events missed during the reconnection period. The solution to Problem #2 will be applied again here to dedupe replay messages/events. ## Terminology "topic" - A topic is like a message "channel" or category of messages that the client subscribes to ### Create a `useServerEvents` Composable We'll be able to leverage `useWebSocket from '@vueuse/core'` then extend functionality to handle the deduping of messages. We will configure `useWebSocket` to use a "heartbeat" in order to keep the connection open to API Gateway for longer than 10 mins. `heartbeat: { message: 'ping', interval: 1000, pongTimeout: 1000, }` The Websocket API Gateway endpoint will be defined by an environment variable, WEBSOCKET_ENPOINT. `useWebSocket` exposes a `status: Ref<WebSocketStatus>` ref that reflects the [`readyState` property](https://websockets.spec.whatwg.org/#websocket-ready-state) exposed by the browser-native WebSocket API. Example `useServerEvents.ts` ``` import { useWebSocket } from '@vueuse/core' const useServerEvents = () => { const { status, close, subscribe, unsubscribe } = useWebSocket(WEBSOCKET_ENPOINT); open(); function subscribe() {...} function unsubscribe() {...} return { status, subscribe, unsubscribe } } ``` This composable will be invoked at the root level component right after login so that the websocket exists throughout the whole user session. #### `lastReceivedMessages` object In order to dedupe messages received from the WS connection, the composable will keep a `lastReceivedMessages` object in memory where the key is `${topic}:${eventDetail}` and the value is a timestamp. #### `onUnmounted` hook We will use the [`onUnmounted`](https://vuejs.org/api/composition-api-lifecycle.html#onunmounted) lifecycle hook to invoke the `close` function returned by `useWebSocket`. #### `data: Ref<T | null>` watcher We will use a watcher on the `data` ref returned by `useWebSocket` to pass each msg received from the backend to a `_onMessage` function. #### `status: Ref<WebSocketStatus>` watcher We will use a watcher on the `status` ref returned by `useWebSocket` to invoke `_onOpen`, `_onConnecting`, and `_onClosed` lifecycle callbacks. #### `_onMessage(msg: Message) function` The `_onMessage` function will parse and validate the received `data.value`. It will return `void` if the incoming data is a heartbeat pong or otherwise not of the expected `Message` type. It will then check to see if the message timestamp > timestamp of any corresponding message in `lastReceivedMessages` object and update the object. If `incomingmsg.timestamp < cachedmsg.timestamp` it will return `void`. It will then check the `subscriptions` map to see if it has a keys equal to `${data.value.topic:data.value.eventDetail}`. If not, it will return `void`. Then it will invoke all handlers in the subscription map with that key. #### `subscriptions` map This will keep track of active subscriptions for the purpose of unsubscribing and invoking handlers. `subscriptions` will be a map, where the keys are `${topic}:${eventDetail}` and the values are an Array of handler callback functions that take the server `msg:Message` as an argument. #### Create and expose a `async function subscribe(topicEventDetail: string, (msg:Message)=>void)` When `subscribe` is invoked we will pass: - the topic that we want to subscribe to - the callback to execute when a matching message is received Upsert the handler function into the array of the associated key in `subscriptions` map . Will call the tRPC route for subscribing to a "topic". Given the exact same arguments, `subscribe` is idempotent if the backend is implemented that way as well). It's comparable to `addEventListener`. #### Create and expose an `async function unsubscribe(topicEventDetail: string, (msg:Message)=>void)` When `unsubscribe` is invoked we will again pass: - the topic to use as a key for the `subscriptions` object - the callback Then remove the pair from the object. Then call the tRPC route for unsubscribing to a "topic". Just like with `removeEventListener`, you have to hold a reference the callback you passed to `subscribe` to `unsuscribe` it. `unsubscribe` will also be idempotent if the backend is implemented that way. #### Create and expose a `async function waitForEvent(eventKey: string)` This is helper to allow us to `await` server pushed events in a more readable way. `eventKey` is `${topic}:${eventDetail}`. `waitForEvent` creates a `Promise`. It then invokes `subscribe` with a callback that resolves the Promise and then unsubscribes. It returns this promise. Example: `showSpinner(); await waitForEvent("upload:processing-complete"); hideSpinner();` ### Two-hour connection limit `useWebSocket` has an `autoReconnect` option that accepts a `delay` option which will be set to 0. Our theory is that once the 2 hour limit is hit and AWS closes the connection, an error will be thrown forcing the WS to attempt to reconnect immediately. Institutions will implement a replay feature. When a new WS connection is opened to the WS service, the last n events will be sent to the client. This will allow the client to catch events missed during the reconnection period. ### 10 minute idle connection close https://vueuse.org/core/usewebsocket/#heartbeat ## Contingencies `useWebSocket`'s `autoReconnect` feature playing nicely with AWS APIGateway We will need to test if `autoReconnect` will work with the AWS APIGateway endpoint as soon as the endpoint is available. If not, then we will have to resort to our contingency plan of opening a second connection in the renewal window. ## QA Call out things to test. ## Communication Is there anyone we need to notify about the changes? We will need to discuss a replay feature with Institutions on the server side --- ## Document Checklist - [x] Describe why the work is being carried out - [x] Provide a high level technical plan for work carried out - [ ] Included testing strategy if applicable - [x] Included any potential issues or roadblocks - [ ] Included areas of technical debt that can be resolved - [x] Included external teams or people who need to be kept in the loop

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully