Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] WebWorker Demo (to improve search performance) #47432

Closed
wants to merge 9 commits into from

Conversation

hannojg
Copy link
Contributor

@hannojg hannojg commented Aug 14, 2024

Fixed Issues

$#47627

Details

This PR shows how web workers can be used to offload computational heavy work to another thread.
This PR is probably going to be closed and split into multiple smaller PRs, but this is the PoC implementation.

Demo

Screen.Recording.2024-08-14.at.16.59.47.mov

How the new API works in the expensify code

We can simply replace our useMemos that do computational heavy work with useWorkerMemo:

- const newOptions = useMemo(() => {
-	 return OptionsListUtils.filterOptions(searchOptions, debouncedSearchValue, {sortByReportTypeInSearch: true, preferChatroomsOverThreads: true});
- }, [searchOptions, debouncedSearchValue])

+ const newOptionsData = useWorkerMemo(
+     workerFilterOptions,
+      [searchOptions, debouncedSearchValue, {sortByReportTypeInSearch: true, preferChatroomsOverThreads: true}]
+ );

The difference is that the function we want to invoke in our useWorkerMemo needs to be defined in a separate file (to conform to how web workers work on web). This function here is called workerFilterOptions and is defined like this:

const workerFilterOptions = createWorkerFactory(() => new Worker(new URL('@libs/worker/exampleWorker.ts', import.meta.url)));

createWorkerFactory is basically a helper function that creates a new worker, which is loaded from the URL provided (which points to a new file in our code which exposes the worker function).

Lets have a look at how exampleWorker.ts is implemented:

import * as FilterListUtils from '@libs/FilterListUtils';
import type {FilterOptionsConfig, Options} from '@libs/OptionsListUtils';
import {expose} from '@libs/Worker';

const worker = expose((options: Options, searchInputValue: string, config?: FilterOptionsConfig) => {
    return FilterListUtils.filterOptions(options, searchInputValue, config);
});

export default worker;

A worker is exported that uses our expose API. expose is used to define a function. That is the function our useWorkerMemo "will call" (though web worker APIs).
It basically just forwards a call to a library utility of ours for filtering the search results.

Note

I choose this API as it:

  • Hides the raw web worker APIs which can be complex to think about
  • Provides a way to easily migrate an existing useMemo to an offloaded one
  • Provides a way to also provide a mobile implementation (that will use something else than web workers)

Now, as our computation happens on another thread, the data retrieval is asynchronous. Thus useWorkerMemo can't directly return the data. Instead it returns an object that is either:

{
	state: "loading"
}

while we are requesting data or its:

{
	state: "data"
	result: [...] // the data we computed
}

There is also an error state in case the worker function had any problems.
Using this data we can display a loading UI while we wait for the data.

How it can work on mobile

Web Workers is an API only available on the web/desktop. For mobile we'll need a different implementation. The idea is to still use the same API on mobile, but the implementation details will be different.

Running code on a separate thread is something we already do in expensify: we use "worklet" functions from reanimated to run on the UI thread.

However, for those extra computations we don't won't to run them on the UI thread, but a special separate thread. Additionally reanimated worklets lack some functionality such as being able to return a value from the worklet function.

At Margelo we developed react-native-worklets-core, which works very similar to the worklets we know from reanimated.
However, with react-native-worklets-core we can run on different threads and return values from our worklets. Additionally in react-native-worklets-core we can support loading code from custom bundles (which reanimated worklets can't). This way we can implement the "workers" on mobile as follows using worklets:

We simply add the worklet directive to our worker:

// ..
import {expose} from '@libs/Worker';

const worker = expose((options: Options, searchInputValue: string, config?: FilterOptionsConfig) => {
+  "worklet";
    return FilterListUtils.filterOptions(options, searchInputValue, config);
});

We'd construct our worker factory differently on mobile:

const workerFilterOptions = createWorkerFactory(async () => {
  "worklet";
  return await import('@libs/worker/exampleWorker.ts');
}));

react-native-worklets-core will taking care of creating a separate bundle that can be imported at runtime.
Internally in useWorkerMemo instead of using the message pattern from the web workers, we will simply call our worklet function:

const result = await context.runAsync(() => {
  'worklet'
  return ourExposedFunction(...args)
})
// The result now has the value on the JS thread!

Currently the library doesn't support await import which we'd need. We reckon that implementing this behaviour would take between 3-5 days.

Next steps

  • First I want to agree with engineers about the design choice for web workers.
  • Make a PR that adds the useWebWorker, expose, createWorkerFactory, etc API
  • Make PR to split out the filterOptions function
    • The problem is that the filterOption functions lives in OptionListUtils which is huge and imports API code that imports pusher, which depends on window., which is not available in workers. It would be a waste to include so much code in our worker anyway.
    • Thats the reason why I created this separate FilterListUtils utility, as it contains the filterOptions function isolated.
  • Make a PR to use filterOptions with useWorkerMemo
  • Make PR to use OptionsListUtils.getSearchOptions with useWorkerMemo (thats also quite heavy and blocking the search page)
  • Discuss ways how to implement that on mobile (I already have an idea for a PoC which I can present once we are done here on the web part)

Fixed Issues

$ #46591
PROPOSAL: https://expensify.slack.com/archives/C05LX9D6E07/p1723454316012939?thread_ts=1723209631.007999&cid=C05LX9D6E07

Tests

  • Verify that no errors appear in the JS console

Offline tests

QA Steps

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

@hannojg
Copy link
Contributor Author

hannojg commented Aug 22, 2024

#46591 (comment)

@hannojg hannojg closed this Aug 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant