1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
---
layout: guide
doc_stub: false
search: true
section: Subscriptions
title: Ably Implementation
desc: GraphQL subscriptions over Ably
index: 7
pro: true
---
[GraphQL Pro](https://graphql.pro) includes a subscription system based on [Redis](https://redis.io) and [Ably](https://ably.io) which works with any Ruby web framework.
After creating an app on Ably, you can hook it up to your GraphQL schema.
## How it Works
This subscription implementation uses a hybrid approach:
- __Your app__ takes GraphQL queries an runs them
- __Redis__ stores subscription data for later updates
- __Ably__ sends updates to subscribed clients
So, the lifecycle goes like this:
- A `subscription` query is sent by HTTP Post to your server (just like a `query` or `mutation`)
- The response contains an Ably channel ID (as an HTTP header) which the client may subscribe to
- The client opens that Ably channel
- When the server triggers updates, they're delivered over the Ably channel
- When the client unsubscribes, the server receives a webhook and responds by removing its subscription data
Here's another look:
```
1. Subscription is created in your app
HTTP POST
.----------> write to Redis
📱 ⚙️ -----> 💾
<---------'
X-Subscription-ID: 1234
2. Client opens a connection to Ably
websocket
📱 <---------> ☁️
3. The app sends updates via Ably
⚙️ ---------> ☁️ ------> 📱
POST update
(via gem) (via websocket)
4. When the client unsubscribes, Ably notifies the app
webhook
⚙️ <-------- ☁️ (disconnect) 📱
```
By using this configuration, you can use GraphQL subscriptions without hosting a push server yourself!
## Ably setup
Add `ably-rest` to your `Gemfile`:
```ruby
gem 'ably-rest'
```
and `bundle install`.
## Database setup
Subscriptions require a _persistent_ Redis database, configured with:
```sh
maxmemory-policy noeviction
# optional, more durable persistence:
appendonly yes
```
Otherwise, Redis will drop data that doesn't fit in memory (read more in ["Redis persistence"](https://redis.io/topics/persistence)).
If you're already using Redis in your application, see ["Storing Data in Redis"](https://www.mikeperham.com/2015/09/24/storing-data-with-redis/) for options to isolate data and tune your configuration.
## Schema configuration
Add `redis` to your `Gemfile`:
```ruby
gem 'redis'
```
and `bundle install`. Then create a Redis instance:
```ruby
# for example, in an initializer:
$graphql_subscriptions_redis = Redis.new # default connection
```
Then, that Redis client is passed to the Subscription configuration:
```ruby
class MySchema < GraphQL::Schema
use GraphQL::Pro::AblySubscriptions,
redis: $graphql_subscriptions_redis,
ably: Ably::Rest.new(key: ABLY_API_KEY)
end
```
That connection will be used for managing subscription state. All writes to Redis are prefixed with `graphql:sub:`.
There are also two configurations for managing persistence:
- `stale_ttl_s:` expires subscription data after the given number of seconds without any update. After `stale_ttl_s` has passed, the data will expire from Redis. Each time a subscription receives an update, its TTL is refreshed. (Generally, this isn't required because the backend is built to clean itself up. But, if you find that Redis is collecting stale queries, you can set them to expire after some very long time as a safeguard.)
- `cleanup_delay_s:` (default: `5`) prevents deleting a subscription during those first seconds after it's created. Usually, a longer delay isn't necessary, but if you observe latency between the subscription's initial response and the client's subscription to the delivery channel, you can set this configuration to account for it.
### Connection Pool
For better performance reading and writing to Redis, you can pass a `connection_pool:` instead of `redis:`, using the [`connection_pool` gem]():
```ruby
use GraphQL::Pro::AblySubscriptions,
connection_pool: ConnectionPool.new(size: 5, timeout: 5) { Redis.new },
ably: Ably::Rest.new(key: ABLY_API_KEY)
```
## Execution configuration
During execution, GraphQL will assign a `subscription_id` to the `context` hash. The client will use that ID to listen for updates, so you must return the `subscription_id` in the response headers.
Return `result.context[:subscription_id]` as the `X-Subscription-ID` header. For example:
```ruby
result = MySchema.execute(...)
# For subscriptions, return the subscription_id as a header
if result.subscription?
response.headers["X-Subscription-ID"] = result.context[:subscription_id]
end
render json: result
```
This way, the client can use that ID as a Ably channel.
For __CORS requests__, you need a special header so that clients can read the custom header:
```ruby
if result.subscription?
response.headers["X-Subscription-ID"] = result.context[:subscription_id]
# Required for CORS requests:
response.headers["Access-Control-Expose-Headers"] = "X-Subscription-ID"
end
```
Read more here: ["Using CORS"](https://www.html5rocks.com/en/tutorials/cors/).
## Webhook configuration
Your server needs to receive webhooks from Ably when clients disconnect. This keeps your local subscription database in sync with Ably.
### Server
*Note: if you're setting up in a development environment you should follow the [Developing with webhooks](#Developing-with-webhooks) section first*
Mount the Rack app for handling webhooks from Ably. For example, on Rails:
```ruby
# config/routes.rb
# Include GraphQL::Pro's routing extensions:
using GraphQL::Pro::Routes
Rails.application.routes.draw do
# ...
# Handle webhooks for subscriptions:
mount MySchema.ably_webhooks_client, at: "/ably_webhooks"
end
```
__Alternatively__, you can configure the routes to load your schema lazily, during the first request:
```ruby
# Provide the fully-qualified class name of your schema:
lazy_routes = GraphQL::Pro::Routes::Lazy.new("MySchema")
mount lazy_routes.ably_webhooks_client, at: "/ably_webhooks"
```
### Ably
1. Go to the Ably dashboard
2. Click on your application
3. Select the **"Integrations"** tab
4. Click on the **"+ New Integration Rule"** button
5. Click on the "Choose" button for **"Webhook"**
6. Click on the "Choose" button for **"Webhook"** (again)
7. Enter **your URL (including the webhooks path from above)** in the URL field.
8. Select **"Batch request"** for "Request Mode"
9. Under "Source", select **"Presence"**
10. Under "Sign with key", select the API Key prefix that matches the prefix of the `ABLY_API_KEY` you provided
11. Click **"Create"**
## Authorization
You can use Ably's [token authentication](https://www.ably.io/documentation/realtime/authentication#token-authentication) by implementing an endpoint in your app, for example:
```ruby
class AblyController < ActionController::Base
def auth
render status: 201, json: ably_rest_client.auth.create_token_request(
capability: { '*' => ['presence', 'subscribe'] },
client_id: 'graphql-subscriber',
)
end
end
```
[Ably's tutorial](https://www.ably.io/tutorials/webhook-chuck-norris#tutorial-step-4) also demonstrates some of the setup for this.
## Encryption
You can use Ably's [end-to-end encryption](https://www.ably.io/documentation/realtime/encryption) with GraphQL subscriptions. To enable it, add `cipher_base:` to your setup:
```ruby
use GraphQL::Pro::AblySubscriptions,
redis: $graphql_subscriptions_redis,
ably: Ably::Rest.new(key: ABLY_API_KEY),
# Add `cipher_base:` to enable end-to-end encryption
cipher_base: "ff16381ae2f2b6c6de6ff696226009f3"
```
(Any random string will do, eg `ruby -e "require 'securerandom'; puts SecureRandom.hex"`.)
Also, return a header to client so that it can decrypt subscription updates. The key is put in `context[:ably_cipher_base64]`, and `graphql-ruby-client` expects to find it in the `X-Subscription-Key` header:
```ruby
result = MySchema.execute(...)
# For subscriptions, return the subscription_id as a header
if result.subscription?
response.headers["X-Subscription-ID"] = result.context[:subscription_id]
# Also return the encryption key so that clients
# can decode subscription updates
response.headers["X-Subscription-Key"] = result.context[:ably_cipher_base64]
end
```
(Also, if you're using CORS requests, update `Access-Control-Expose-Headers` to include `X-Subscription-Key`)
With this setup,
- `GraphQL::Pro::AblySubscriptions` will generate per-subscription keys (using `cipher_base` and the subscription ID) and use them to encrypt Ably payloads
- Those keys will be returned to clients in `X-Subscription-Key`
- Clients will use those keys to decrypt incoming messages
__Backwards compatibility:__ `GraphQL::Pro::AblySubscriptions` will only encrypt payloads whose `query.context[:ably_cipher_base64]` is present. Any subscriptions created _before_ `cipher_base:` was added to the setup will _not_ be encrypted. (There was no key to encrypt them, and clients don't have a key to _decrypt_ them!)
## Serializing Context
Since subscription state is stored in the database, then reloaded for pushing updates, you have to serialize and reload your query `context`.
By default, this is done with {{ "GraphQL::Subscriptions::Serialize" | api_doc }}'s `dump` and `load` methods, but you can provide custom implementations as well. To customize the serialization logic, create a subclass of `GraphQL::Pro::AblySubscriptions` and override `#dump_context(ctx)` and `#load_context(ctx_string)`:
```ruby
class CustomSubscriptions < GraphQL::Pro::AblySubscriptions
def dump_context(ctx)
context_hash = ctx.to_h
# somehow convert this hash to a string, return the string
end
def load_context(ctx_string)
# Given the string from the DB, create a new hash
# to use as `context:`
end
end
```
Then, use your _custom_ subscriptions class instead of the built-in one for your schema:
```ruby
class MySchema < GraphQL::Schema
# Use custom subscriptions instead of GraphQL::Pro::AblySubscriptions
# to get custom serialization logic
use CustomSubscriptions, ...
end
```
That gives you fine-grained control of context reloading.
## Dashboard
You can monitor subscription state in the {% internal_link "GraphQL-Pro Dashboard", "/pro/dashboard" %}:
{{ "/subscriptions/redis_dashboard_1.png" | link_to_img:"Redis Subscription Dashboard" }}
{{ "/subscriptions/redis_dashboard_2.png" | link_to_img:"Redis Subscription Detail" }}
## Development Tips
#### Clear subscription data
At any time, you can reset your subscription database with the __"Reset"__ button in the {% internal_link "GraphQL-Pro Dashboard", "/pro/dashboard" %}, or in Ruby:
```ruby
# Wipe all subscription data from the DB:
MySchema.subscriptions.clear
```
#### Developing with webhooks
To receive webhooks in development, you can [use ngrok](https://www.ably.io/tutorials/webhook-chuck-norris). It gives you a public URL which you can setup with Ably, then any hooks delivered to that URL will be forwarded to your development environment.
## Client configuration
Install the [Ably JS client](https://github.com/ably/ably-js) then see docs for:
- {% internal_link "Apollo Client", "/javascript_client/apollo_subscriptions" %}
- {% internal_link "Relay Modern", "/javascript_client/relay_subscriptions" %}.
- {% internal_link "GraphiQL", "/javascript_client/graphiql_subscriptions" %}
|