What the housekeeping dispatcher costs
There is no model in this system and nothing is emailed: the output is a list on a phone. Six thousand room-days a month is a two-hundred-room hotel. Here is where each cent goes.
Key takeaways
- About $10 a month at 6,000 room-days. Roughly $37 at 24,000 room-days.
- One Bedrock read per room-day is the only line that scales. Everything else is rounding.
- Nothing is always-on, so a quiet month genuinely costs almost nothing.
- State changes and the morning allocation are the whole workload, and both are trivial at hotel scale.
- The duplicate test runs before the read, so resends are free.
- The three real risks: a retry loop, storage nobody expires, and a bigger model than the job needs.
The bill at three volumes
These are US East prices at the time of writing, at three volumes that bracket most small businesses. Find the bar closest to your own and read across.
Line by line
| Line | At 6,000 room-days | How it scales |
|---|---|---|
| Bedrock read | $0.00 | Linear. One call per room-day, roughly 1,800 in and 200 out tokens. |
| SES | $3.00 | Linear. About 0 messages per room-day. |
| DynamoDB + S3 | $1.24 | Storage grows with what you retain, not with throughput. |
| Lambda + SQS | $0.12 | Linear, and effectively free at this scale. |
| CloudWatch | $0.16 | Flat, if you set retention. Unbounded if you do not. |
| Secrets Manager | $0.40 | Flat. One secret, $0.40 a month. |
| AWS Budgets | $0.46 | Flat. Two actions, so you find out before the bill does. |
There is no read line and no messaging line. Compute for the morning allocation and writes for state changes are the entire variable cost.
The three ways this bill surprises you
Every one of these has happened to somebody, and all three are cheap to prevent.
- Polling for room status from the device. Push the allocation once and let state changes flow the other way; a phone polling every ten seconds across a team is the only way to make this expensive.
- Storing every state transition forever. The timing data is valuable for a year and not after. Roll up to per-room medians and expire the transitions.
- Reallocating continuously through the day. Allocate in the morning and adjust by exception; a list that changes under somebody is not usable.
What it costs when nothing happens
This matters more than the headline number for a seasonal business. In a month with nothing to process the bill is the fixed band: Secrets Manager at forty cents, AWS Budgets at forty-six, and a few cents of storage. Call it a dollar. There is no instance to stop and nothing to remember to turn off.
- Management
- Analytics
- Front-end & mobile
Set these on day one
- A dead-letter queue on every SQS queue, with a maximum receive count of three.
- Thirty-day retention on every CloudWatch log group. There is no default that is safe.
- An S3 lifecycle rule on the object prefix, tiering at 90 days and expiring at your actual record-keeping horizon.
- Two AWS Budgets actions — one that emails at half your expected spend, one at double it. The second is how you find out about a loop in an hour instead of a month.
- Provisioned concurrency: none. Nothing here is latency-sensitive enough to justify paying for a warm function.
Next: the same system drawn for engineers — service names, resource identifiers, IAM scopes, table schemas and the model id.
All posts