Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2026 02:21 PM
I have .NextJS Databricks Apps with streaming enabled by setting "stream:true" in the JSON body which tells serve to return a streaming response (SSE format). Now this works just fine when I run the app locally via npm run dev but once I deploy the app via Databricks Apps, streaming is not longer available. It waits until the whole response is done and then displays the whole response all at once. It appears that Databrics App has a proxy that is preventing streaming when stream:true is set.