Electrolysis

Revision as of 02:18, 26 August 2014 by Cpeterson (talk | contribs) (→‎People: Update people lists)

Goal

The goal of the project is to run web content in a separate process from Firefox itself. The two major advantages of this model are security and performance. Security would improve because the content processes could be sandboxed (although sandboxing the content processes is a separate project from Electrolysis). Performance would improve because the browser UI would not be affected by poor performance of content code (be it layout or JavaScript). Also, content processes could be isolated from each other, which would have similar security and performance benefits.

Although the Gecko platform supports multiple processes, the Firefox frontend is not designed to use them. Work to make the frontend (including addons) support multiple processes was begun in early 2013. The project roadmap has more details.

Enabling Electrolysis

We're developing off of mozilla-central. Therefore, it's possible to enable Electrolysis right now in Firefox nightlies.

  • Update to a current nightly.
  • We strongly recommend you create a new profile!
  • Set the browser.tabs.remote preference to true.
  • As of Firefox 30 set browser.tabs.remote.autostart to true to always enable e10s; otherwise, create a new e10s window.
  • Restart Firefox.

What to Expect

Basic browsing should work as expected. Tabs that are loaded remotely (i.e., in a separate process) will have their title underlined. By default, only one content process is used. You can control this with the dom.ipc.processCount preference.

For a list of known issues that people commonly run into, see https://etherpad.mozilla.org/e10s-known-issues

Contributing

The simplest way to help out is to file bugs when you find them. The tracking bugs are fxe10s and core-e10s.

Most bugs in electrolysis occur because code in the chrome process tries to access data in a content process. All of the DOM objects for a XUL browser element, as well as its DocShell, live in the content process. Typical access paths are via browser.contentWindow, browser.docShell, or some variation of them. Often, these property accesses will generate errors in the console, which makes these bugs fairly easy to detect.

The ideal way to solve these problems is with the message manager. Any code that touches data in the content process should run in a content script. Content scripts communicate with chrome by message passing. Often, it's fairly easy to partition code into content and chrome portions and use message passing to communicate.

However, there are cases where it is awkward to partition code in this way. In these cases, it may be beneficial to use cross-process object wrappers (CPOWs). CPOWs make it easy to transparently access content objects from chrome. The main drawback of CPOWs is that they are slow and they cause the chrome process to block, which can lead to jank. However, there are times when it makes sense to use CPOWs. For example, CPOWs are used to generate the menu items for the Firefox context menu. Creating the context menu sends a small number of CPOW messages since it doesn't touch the content document very much. And while the main event loop will be blocked while generating the context menu, users are unlikely to notice since they're just waiting for the menu to appear.

Communication

Weekly Team Meeting Thursday at 2:00pm PT for 30 mins
  • Vidyo: "e10s"
  • Invitation: Contact billm@mozilla.com to get added to the meeting invite list.
  • Dial In Information:
  • Meeting Notes Etherpad
  • Historical Notes: Meeting Agendas and Notes
  • We are currently looking into a time that could work for Australian eastern timezone.
IRC
  • Server: irc.mozilla.org
  • Channel: #e10s
Tracking bugs
Newsgroup/Mailing List
Project branch

People

Project Champion
  • Andreas Gal ( A )
High Level Oversight
  • Johnathan Nightingale ( I )
  • Gavin Sharp ( A )
Engineering Management
  • Brad Lassey ( R )
Project Management
  • Chris Peterson ( R )
QA
  • Juan Becerra (QA lead)
Development Team
  • Nicholas Alexander ( R )
  • Mike Conley ( R )
  • Felipe Gomes (Firefox front-end) ( R )
  • Blake Kaplan ( R )
  • William McCloskey ( R )
  • Jim Mathies ( R )
  • Allison Naaktgeboren ( R )
  • John Schoenick (plugins) ( R )
  • Tom Schuster ( R )
  • Tomislav Jovanovic (addon-sdk) ( R )
Other Teams
  • Accessibility: Alexander Surkov and Trevor Saunders (bug 646596)
  • Addon Developer Relations: Jorge Villalobos
  • Developer Tools: Rob Campbell (bug 875871)
  • IME: Makoto Kato (alternately, Masayuki Nakano) (bug 926798)
  • Jetpack: Dave Townsend
  • OMTC/Windows: Nick Cameron (bug 756608)
  • Printing: bz (bug 927188)
  • Plugins: Josh Aas (OS X), Karl Tomlinson (Linux)
  • Sandboxing: Brian Bondy, Sid Stamm (bug 925570)
  • WebAudio: Ehsan Akhgari (WebAudio currently works on B2G, but Ehsan says he's not sure how the audio backend handles IPC.)
  • WebRTC: Randell Jesup or Eric Rescorla. WebRtc is currently getting ready to go into B2G - mozGetUserMedia will be in 26/1.2, and PeerConnections will be in 28/1.3.
  • e10s tests: Mark Hammond

Here is what the letters following each name stand for, those higher on the list include all those below:

  • R = Responsible for deliverable, in most cases this is anyone writing code.
  • A = Accountable for the final decision making on some aspect of the project, often leadership that is not working on code but have go, no go decision making.
  • C = Needs to be consulted on key topics, often this would be for subject mater experts that need to be consulted but don't have decision making power.
  • I = Needs to be kept informed, those that just need regular status reports sent to them.

Reference

Meeting Notes

For latest meeting notes, see the Meeting Notes Etherpad.

Create a new weekly agenda from the template: <createbox> align=left type=create preload=Electrolysis/Meetings/0-0-0 default=2025-07-03 prefix=Electrolysis/Meetings/ </createbox>