Draft
Conversation
Replace Lorem ipsum placeholders with real feature bullet points and target audience descriptions for each pricing tier. https://claude.ai/code/session_018BN3sP9BUYKkLiCmErHK8Z
Filtering operations in Electric (Postgres streams) are significantly more compute-intensive than simple appends to durable streams, which justifies the higher base rate. https://claude.ai/code/session_018BN3sP9BUYKkLiCmErHK8Z
…es Sync Durable Streams writes stay at the $1/1M baseline. Postgres Sync writes carry a $3/1M premium because shape filtering is significantly more compute-intensive than a simple stream append. - pricing.yaml: two base rates (durableStreamsWritesPerMillion, postgresSyncWritesPerMillion) - pricing.data.ts: compute effective rates for both services per tier - ComparisonTable: show separate write rate rows per service - PricingCalculator: separate write volume inputs per service - PAYG plan card: split pricing bullet into per-service lines https://claude.ai/code/session_018BN3sP9BUYKkLiCmErHK8Z
- PAYG: 10K shapes - Pro: 100K shapes - Scale: contact sales for custom quote - Enterprise: unlimited https://claude.ai/code/session_018BN3sP9BUYKkLiCmErHK8Z
✅ Deploy Preview for electric-next ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
|
small note: counting postgres writes as 3 write units would also be slightly simpler for billing (to avoid introducing a separate invoice line) and maintain observability and breakdown at dashboard level |
Contributor
Author
|
I specifically wanted to not model 1 postgres write as a cost of 3 durable stream writes because that is a bad mental model. |
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.
Note: This is a proposal that has not been discussed yet.
Summary
Changes
website/data/pricing.yaml— two base write rates per servicewebsite/data/pricing.data.ts— compute effective rates for both serviceswebsite/data/plans/*.yaml— plan cards with real content, shapes limitswebsite/src/components/pricing/ComparisonTable.vue— separate write rate rows + shapes rowwebsite/src/components/pricing/PricingCalculator.vue— per-service write volume inputs