Add document_mode option and AUTH_DISABLED env var for self-hosted#2133
Open
DivMode wants to merge 5 commits intosequinstream:mainfrom
Open
Add document_mode option and AUTH_DISABLED env var for self-hosted#2133DivMode wants to merge 5 commits intosequinstream:mainfrom
DivMode wants to merge 5 commits intosequinstream:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
document_mode for Meilisearch sink
PR #2025 changed the Meilisearch client from
PUT(add or update) toPOST(add or replace). This makes sense as the default — users expect documents to be fully replaced.However, for multi-table CDC (multiple Postgres tables → one Meilisearch index),
PUTpartial merge is essential. Each sink sends only its table's columns, and Meilisearch merges them at document level. WithPOST, each sink overwrites the entire document, erasing other sinks' data.This adds a
document_modeconfig option::replace(default) —POST, same behavior as today:update—PUT, partial merge for multi-table CDCYAML config example
AUTH_DISABLED env var
Self-hosted deployments behind reverse proxies (Cloudflare Access, Authelia, Authentik, etc.) don't need Sequin's built-in login — the proxy handles authentication. Setting
AUTH_DISABLED=trueauto-logs in the default provisioned user, skipping the login page entirely.Self-hosted build fixes
config/prod.exs— treat emptySENTRY_DSNas nil (crashes Sentry at startup)Dockerfile— skipmix sentry.package_source_codewhenSELF_HOSTED=1.gitignore— ignoresst-env.d.ts(auto-generated by SST in monorepo builds)Changes
meilisearch_sink.exdocument_modeEcto.Enum fieldclient.exReq.putvsReq.posttransforms.exmeilisearch_client_test.exsmeilisearch_sink_test.exsuser_auth.exAUTH_DISABLEDauto-login bypassaccounts.exget_first_user/0helperconfig/prod.exsDockerfile.gitignore