Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/694ab010-3e7c-8000-b0e8-b98c22b7a063
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== ## === What you used before: <syntaxhighlight>One Docker container βββ Streamlit UI βββ FastAPI backend βββ OpenAI API key inside the container </syntaxhighlight> This works. Many people start here. But it creates hidden problems as soon as you move from βdemoβ to βreal systemβ. AWS best practices are about reducing blast radius, separating concerns, and using the right AWS service for the right traffic. Letβs go point by point. ==== ### ==== A secret is something that must never reach: * the browser * JavaScript * frontend logs * UI containers that users indirectly interact with ===== If Streamlit and FastAPI are in the same container: ===== * The OpenAI key is available to both * The UI process can read it (even if you donβt intend it) * A bug, debug print, exception, or misconfiguration can leak it Even worse: * Streamlit executes Python code dynamically * Any vulnerability in UI code could expose environment variables ===== <syntaxhighlight>Frontend (UI) ===== β No secrets β No credentials β No cloud permissions Backend (API) β Has secrets β Talks to OpenAI β Protected behind API Gateway </syntaxhighlight> By physically separating containers, AWS guarantees: * The UI container literally does not have access to the secret * Even if the UI is compromised, the attacker still cannot call OpenAI This is called least privilege and blast-radius reduction. : ==== ### ==== API Gateway is optimized for: * Short-lived HTTP API calls * JSON request/response * Authentication * Rate limiting * Logging * WAF integration This is perfect for: <syntaxhighlight>POST /api/chat GET /api/health </syntaxhighlight> ===== Streamlit is not just an API. ===== Streamlit: * Opens multiple internal endpoints * Uses background refreshes * Sends many small requests * Sometimes holds connections open * Assumes stable headers and paths API Gateway: * Rewrites paths * Enforces timeouts * Is optimized for stateless request/response This mismatch causes: * Broken UI updates * Random freezes * Partial page loads * Hard-to-debug behavior ===== <syntaxhighlight>API Gateway β FastAPI ===== ALB β Streamlit </syntaxhighlight> Each service gets traffic it is designed to handle. : ==== ### ==== Application Load Balancer: * For websites * Handles large responses * Stable HTTP behavior * Works perfectly with browsers ===== - Supports all Streamlit internal routes ===== * No path rewriting surprises * No websocket/streaming confusion * Predictable browser behavior So: <syntaxhighlight>Browser β ALB β Streamlit </syntaxhighlight> This is exactly what ALB was built for. ==== ### ==== If UI + API are together: * 1 user opens the page β UI load * 1 user chats β API load * You must scale both together Example: * 100 users browsing UI * Only 10 users chatting You still pay for 100 backend LLM-capable containers ===== <syntaxhighlight>UI service: 2β3 tasks ===== API service: autoscale on CPU / requests </syntaxhighlight> Result: * UI stays cheap and stable * API scales only when chat traffic increases * Much lower cost * Much better reliability This is why every serious SaaS separates frontend and backend. ==== No. It was correct for a prototype. ==== But the moment you add: * API Gateway * Secrets Manager * WAF * Scaling * Cost control * Security You must split them. :
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)