Skip to content

Commit

Permalink
chore: Allow websockets and collaboration service to run in the same …
Browse files Browse the repository at this point in the history
…process (outline#2674)
  • Loading branch information
tommoor authored Oct 20, 2021
1 parent 3610a7f commit d443abf
Show file tree
Hide file tree
Showing 11 changed files with 67 additions and 76 deletions.
4 changes: 2 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ REDIS_URL=redis://localhost:6479
URL=http://localhost:3000
PORT=3000

# ALPHA – See [documentation](docs/SERVICES.md) on running the alpha version of
# the collaboration server.
# See [documentation](docs/SERVICES.md) on running a separate collaboration
# server, for normal operation this does not need to be set.
COLLABORATION_URL=

# To support uploading of images for avatars and document attachments an
Expand Down
16 changes: 7 additions & 9 deletions app/components/Sidebar/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,13 @@ function SettingsSidebar() {
label={t("Security")}
/>
)}
{can.update &&
env.COLLABORATION_URL &&
env.DEPLOYMENT !== "hosted" && (
<SidebarLink
to="/settings/features"
icon={<BeakerIcon color="currentColor" />}
label={t("Features")}
/>
)}
{can.update && env.DEPLOYMENT !== "hosted" && (
<SidebarLink
to="/settings/features"
icon={<BeakerIcon color="currentColor" />}
label={t("Features")}
/>
)}
<SidebarLink
to="/settings/members"
icon={<UserIcon color="currentColor" />}
Expand Down
18 changes: 7 additions & 11 deletions app/scenes/Settings/Features.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import Checkbox from "components/Checkbox";
import Heading from "components/Heading";
import HelpText from "components/HelpText";
import Scene from "components/Scene";
import env from "env";
import useCurrentTeam from "hooks/useCurrentTeam";
import useStores from "hooks/useStores";
import useToasts from "hooks/useToasts";
Expand Down Expand Up @@ -53,16 +52,13 @@ function Features() {
all team members.
</Trans>
</HelpText>

{env.COLLABORATION_URL && (
<Checkbox
label={t("Collaborative editing")}
name="collaborativeEditing"
checked={data.collaborativeEditing}
onChange={handleChange}
note="When enabled multiple people can edit documents at the same time (Beta)"
/>
)}
<Checkbox
label={t("Collaborative editing")}
name="collaborativeEditing"
checked={data.collaborativeEditing}
onChange={handleChange}
note="When enabled multiple people can edit documents at the same time (Beta)"
/>
</Scene>
);
}
Expand Down
13 changes: 6 additions & 7 deletions docs/SERVICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,13 @@ At least one worker process is required to process the [queues](../server/queues

## Collaboration

The service is in alpha and as such is not started by default. It must run
separately to the `websockets` service, and will not start in the same process.
The `COLLABORATION_URL` must be set to the publicly accessible URL when running
the service. For example, if the app is hosted at `https://docs.example.com` you
may use something like: `COLLABORATION_URL=wss://docs-collaboration.example.com`.

Start the service with:
The service is in alpha and as such is not started by default. Start the service with:

```bash
yarn start --services=collaboration
```

The collaboration service is ideally run on a separate server. If this is the
case the `COLLABORATION_URL` env can be set to the publicly accessible URL. For
example, if the app is hosted at `https://docs.example.com` you may use something
like: `COLLABORATION_URL=wss://docs-collaboration.example.com`.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build:webpack": "webpack --config webpack.config.prod.js",
"build": "yarn clean && yarn build:webpack && yarn build:i18n && yarn build:server",
"start": "node ./build/server/index.js",
"dev": "yarn concurrently -n api,collaboration -c \"blue,magenta\" \"node --inspect=0.0.0.0 build/server/index.js --services=websockets,admin,web,worker\" \"node build/server/index.js --services=collaboration --port=4000\"",
"dev": "yarn concurrently -n api,collaboration -c \"blue,magenta\" \"node --inspect=0.0.0.0 build/server/index.js --services=collaboration,websockets,admin,web,worker\"",
"dev:watch": "nodemon --exec \"yarn build:server && yarn build:i18n && yarn dev\" -e js --ignore build/ --ignore app/ --ignore flow-typed/",
"lint": "eslint app server shared",
"deploy": "git push heroku master",
Expand Down Expand Up @@ -101,7 +101,6 @@
"koa-body": "^4.2.0",
"koa-compress": "2.0.0",
"koa-convert": "1.2.0",
"koa-easy-ws": "^1.3.0",
"koa-helmet": "5.2.0",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.1",
Expand Down Expand Up @@ -175,6 +174,7 @@
"uuid": "^8.3.2",
"validator": "5.2.0",
"winston": "^3.3.3",
"ws": "^7.5.3",
"y-indexeddb": "^9.0.6",
"y-prosemirror": "^1.0.9",
"yjs": "^13.5.12"
Expand Down
23 changes: 11 additions & 12 deletions server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,17 @@ const serviceNames = uniq(

// The number of processes to run, defaults to the number of CPU's available
// for the web service, and 1 for collaboration during the beta period.
const processCount = serviceNames.includes("collaboration")
? 1
: env.WEB_CONCURRENCY || undefined;
let processCount = env.WEB_CONCURRENCY || undefined;

if (serviceNames.includes("collaboration")) {
if (env.WEB_CONCURRENCY !== 1) {
Logger.info(
"lifecycle",
"Note: Restricting process count to 1 due to use of collaborative service"
);
}
processCount = 1;
}

// This function will only be called once in the original process
function master() {
Expand Down Expand Up @@ -72,15 +80,6 @@ async function start(id: string, disconnect: () => void) {
router.get("/_health", (ctx) => (ctx.body = "OK"));
app.use(router.routes());

if (
serviceNames.includes("websockets") &&
serviceNames.includes("collaboration")
) {
throw new Error(
"Cannot run websockets and collaboration services in the same process"
);
}

// loop through requested services at startup
for (const name of serviceNames) {
if (!Object.keys(services).includes(name)) {
Expand Down
2 changes: 1 addition & 1 deletion server/presenters/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function present(env: Object): Object {
return {
URL: env.URL.replace(/\/$/, ""),
CDN_URL: (env.CDN_URL || "").replace(/\/$/, ""),
COLLABORATION_URL: (env.COLLABORATION_URL || "")
COLLABORATION_URL: (env.COLLABORATION_URL || env.URL)
.replace(/\/$/, "")
.replace(/^http/, "ws"),
DEPLOYMENT: env.DEPLOYMENT,
Expand Down
5 changes: 1 addition & 4 deletions server/presenters/team.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// @flow
import env from "../env";
import { Team } from "../models";

export default function present(team: Team) {
Expand All @@ -8,9 +7,7 @@ export default function present(team: Team) {
name: team.name,
avatarUrl: team.logoUrl,
sharing: team.sharing,
collaborativeEditing: !!(
team.collaborativeEditing && env.COLLABORATION_URL
),
collaborativeEditing: team.collaborativeEditing,
documentEmbeds: team.documentEmbeds,
guestSignin: team.guestSignin,
subdomain: team.subdomain,
Expand Down
25 changes: 10 additions & 15 deletions server/services/collaboration.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
// @flow
import http from "http";
import url from "url";
import { Server } from "@hocuspocus/server";
import Koa from "koa";
import websocket from "koa-easy-ws";
import Router from "koa-router";
import WebSocket from "ws";
import AuthenticationExtension from "../collaboration/authentication";
import LoggerExtension from "../collaboration/logger";
import PersistenceExtension from "../collaboration/persistence";
import TracingExtension from "../collaboration/tracing";

export default function init(app: Koa, server: http.Server) {
const router = new Router();
const path = "/collaboration";
const wss = new WebSocket.Server({ noServer: true });

const hocuspocus = Server.configure({
extensions: [
Expand All @@ -21,22 +22,16 @@ export default function init(app: Koa, server: http.Server) {
],
});

// Websockets for collaborative editing
router.get("/collaboration/:documentName", async (ctx) => {
let { documentName } = ctx.params;
server.on("upgrade", function (req, socket, head) {
if (req.url.indexOf(path) > -1) {
const documentName = url.parse(req.url).pathname?.split("/").pop();

if (ctx.ws) {
const ws = await ctx.ws();
hocuspocus.handleConnection(ws, ctx.request, documentName);
wss.handleUpgrade(req, socket, Buffer.alloc(0), (client) => {
hocuspocus.handleConnection(client, req, documentName);
});
}

ctx.response.status = 101;
});

app.use(websocket());
app.use(router.routes());
app.use(router.allowedMethods());

server.on("shutdown", () => {
hocuspocus.destroy();
});
Expand Down
17 changes: 16 additions & 1 deletion server/services/websockets.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,28 @@ import { getUserForJWT } from "../utils/jwt";
const { can } = policy;

export default function init(app: Koa, server: http.Server) {
const path = "/realtime";

// Websockets for events and non-collaborative documents
const io = IO(server, {
path: "/realtime",
path,
serveClient: false,
cookie: false,
});

// Remove the upgrade handler that we just added when registering the IO engine
// And re-add it with a check to only handle the realtime path, this allows
// collaboration websockets to exist in the same process as engine.io.
const listeners = server.listeners("upgrade");
const ioHandleUpgrade = listeners.pop();
server.removeListener("upgrade", ioHandleUpgrade);

server.on("upgrade", function (req, socket, head) {
if (req.url.indexOf(path) > -1) {
ioHandleUpgrade(req, socket, head);
}
});

server.on("shutdown", () => {
Metrics.gaugePerInstance("websockets.count", 0);
});
Expand Down
16 changes: 4 additions & 12 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9261,14 +9261,6 @@ [email protected], koa-convert@^1.2.0:
co "^4.6.0"
koa-compose "^3.0.0"

koa-easy-ws@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/koa-easy-ws/-/koa-easy-ws-1.3.0.tgz#dbf8eeb126ca11eed4c4e3af7904a47c25be2347"
integrity sha512-06lHAwm25HBdplTpwHiZqKcl39vS4KiVzRPneUExCHVvQ9TPHmFlUFO/gjQrUdLj3+kvqQpqdlIPNb91wn6EwA==
dependencies:
debug "^4.1.1"
ws "^7.3.1"

[email protected]:
version "5.2.0"
resolved "https://registry.yarnpkg.com/koa-helmet/-/koa-helmet-5.2.0.tgz#6529f64dd4539261a9bb0a56e201e4976f0200f0"
Expand Down Expand Up @@ -15496,10 +15488,10 @@ [email protected]:
dependencies:
mkdirp "^0.5.1"

ws@^7.2.3, ws@^7.3.1, ws@^7.4.3:
version "7.5.3"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74"
integrity sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==
ws@^7.2.3, ws@^7.4.3, ws@^7.5.3:
version "7.5.5"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881"
integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==

ws@~7.4.2:
version "7.4.6"
Expand Down

0 comments on commit d443abf

Please sign in to comment.