Skip to content

Commit 266d40d

Browse files
committed
docs: add cloud shutdown doc
1 parent a8887b0 commit 266d40d

File tree

3 files changed

+92
-3
lines changed

3 files changed

+92
-3
lines changed

docs/shutdown.mdx

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: Sequin Cloud shutdown
3+
description: Important information about the Sequin Cloud shutdown and migration to self-hosting.
4+
---
5+
6+
**Sequin Cloud has been acquired and will be shutting down on October 23, 2025**.
7+
8+
We know this creates disruption, and we want to make the transition as smooth as possible. Since Sequin is fully open-source under the MIT license, we're committed to helping you migrate to a self-hosted deployment.
9+
10+
In the near term, the core Sequin team's input to the open-source project will scale down to maintenance mode. We'll continue prioritizing security patches and critical bug fixes, though new feature development will slow significantly. Looking ahead, we're excited about the potential for renewed investment in the project inside the acquiring company, though the timeline isn't set and may extend into 2026.
11+
12+
## What's happening
13+
14+
- **Today (August 21, 2025)**: We're announcing the shutdown. All Cloud subscriptions will be automatically canceled and we'll issue refunds for unused months if you are on an annual plan.
15+
- **Over the next 60 days**: Sequin Cloud services will continue to run as you migrate to self-hosting or another solution.
16+
- **October 23, 2025**: Sequin Cloud will be turned off, pipelines will stop, and all hosted data will be permanently and securely deleted.
17+
18+
## Migration options
19+
20+
### Self-hosting Sequin (Recommended)
21+
22+
Since Sequin is open-source, you can run it on your own infrastructure with full feature parity to the cloud version. We have comprehensive guides to help you get started:
23+
24+
- **[Running Sequin](/running-sequin)** - Overview of deployment options
25+
- **[Deploy to Production](/how-to/deploy-to-production)** - Production deployment guide
26+
- **[Helm Chart](github.com/sequinstream/helm-chart-sequin)** - Helm chart
27+
- **[sequin.yaml](/docs/reference/sequin-yaml)** - Configuration file reference for exporting and importing data
28+
29+
### Migration support
30+
31+
We're committed to making this transition smooth:
32+
33+
- **Migration and deployment assistance**: We'll help you stand up your own deployment
34+
- **Technical support**: Direct access to our engineering team during the transition
35+
36+
## Getting help
37+
38+
We're available to answer questions and provide hands-on migration support:
39+
40+
- Email us at **support@sequinstream.com**
41+
- Join our [Discord community](https://discord.gg/BV8wFXvNtY)
42+
- Join our [Slack community](https://join.slack.com/t/sequin-community/shared_invite/zt-37begzach-4aUwR5xt_XgivdvctZDemA)
43+
- Schedule a migration consultation call
44+
45+
## Timeline
46+
47+
| Date | Milestone |
48+
|------|-----------|
49+
| Today (August 21, 2025) | Shutdown announcement, subscriptions canceled |
50+
| Next 60 days | Cloud services continue running, migration period |
51+
| October 23, 2025 | Sequin Cloud shutdown, all data deleted |
52+
53+
## Frequently asked questions
54+
55+
**Will my self-hosted deployment have the same features as the cloud version?**
56+
57+
Yes, Sequin is fully open-source with no feature limitations. You'll have access to all the same capabilities.
58+
59+
**Can I export my current configuration?**
60+
61+
Absolutely. You can use [sequin.yaml](/docs/reference/sequin-yaml) to export your configuration.
62+
63+
**Will you help with the migration?**
64+
65+
Yes, we're committed to helping every user successfully migrate. We'll provide hands-on assistance to ensure your deployment is running smoothly.
66+
67+
**What happens to the open-source project after the Cloud shutdown?**
68+
69+
The open-source project will continue in maintenance mode with security patches and critical bug fixes. New feature development will slow as the team has been acquired. However, we're excited about the future of the project, as there's potential for renewed investment inside the acquiring company.
70+
71+
We apologize for the inconvenience this creates and are dedicated to ensuring a smooth transition. Thank you for using Sequin.

lib/sequin_web/components/layouts.ex

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,29 @@ defmodule SequinWeb.Layouts do
2323
def app_no_sidenav(assigns) do
2424
assigns = assign(assigns, :show_nav, false)
2525

26-
app(assigns)
26+
assigns
27+
|> put_common_assigns()
28+
|> app()
2729
end
2830

2931
def app_no_main(assigns) do
3032
assigns = assign(assigns, :no_main, true)
3133

32-
app(assigns)
34+
assigns
35+
|> put_common_assigns()
36+
|> app()
3337
end
3438

3539
def app_no_main_no_sidenav(assigns) do
3640
assigns = assign(assigns, :show_nav, false)
3741
assigns = assign(assigns, :no_main, true)
3842

39-
app(assigns)
43+
assigns
44+
|> put_common_assigns()
45+
|> app()
46+
end
47+
48+
defp put_common_assigns(assigns) do
49+
assign(assigns, :self_hosted, Application.fetch_env!(:sequin, :self_hosted))
4050
end
4151
end

lib/sequin_web/components/layouts/app.html.heex

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<%= if Map.get(assigns, :self_hosted, false) == false do %>
2+
<div class="bg-amber-400 text-black px-4 py-2 text-center text-sm">
3+
Sequin Cloud is shutting down on October 23, 2025. <a
4+
href="https://sequinstream.com/docs/shutdown"
5+
class="underline hover:no-underline"
6+
>Learn more</a>.
7+
</div>
8+
<% end %>
19
<div class="flex min-h-screen">
210
<%= if @show_nav do %>
311
<.live_component

0 commit comments

Comments
 (0)