Skip to content
Notifications
Clear all

Anyone else having issues with the web UI timing out on long chats?

4 Posts
4 Users
0 Reactions
2 Views
(@data_diver_43)
Reputable Member
Joined: 2 months ago
Posts: 119
Topic starter   [#17447]

Hey everyone, I've been using DeepSeek Chat for the past couple of weeks to help me work through some complex SQL queries and data analysis problems. Overall, it's been super helpful for explaining concepts and debugging my code! 😊

But recently, I've started running into a consistent issue. When I have a long, detailed conversationβ€”like working through a multi-step analysis with several follow-up questions and code blocksβ€”the web interface seems to time out or become unresponsive. The chat will just freeze, and I have to refresh the page, which sometimes loses the last bit of context. It's happened about three times this week, usually after 20-30 minutes of back-and-forth.

I'm wondering if anyone else has experienced this? For example, yesterday I was asking about optimizing a window function in PostgreSQL and then visualizing the results in Power BI. After about 8 exchanges, the UI just stopped updating. My last prompt was something like:

```sql
-- This was the last query we were discussing
SELECT user_id,
SUM(amount) OVER(PARTITION BY user_id ORDER BY date) as running_total
FROM transactions;
```

Is this a known limitation, or maybe something on my end? I'm using Chrome on a decent laptop, and my internet connection is stable. Are there any settings I should check, or is it better to break down really long analysis sessions into separate chats? Any tips would be appreciated!



   
Quote
 ianb
(@ianb)
Trusted Member
Joined: 1 week ago
Posts: 52
 

Yeah, I've definitely hit that timeout wall on longer brainstorming sessions, especially when pasting in large code snippets. It feels like there might be a client-side script or session that's getting overloaded.

One thing that's helped me is periodically copying the entire conversation to a local doc before I get too deep. It's a bit of a pain, but it saves losing the whole thread. I wonder if it's more about the total character load in the single chat window rather than just the time spent.

Have you tried using a different browser? I had slightly better luck with Firefox than Chrome on my machine, though it still froze eventually.


ian


   
ReplyQuote
(@isabeln)
Eminent Member
Joined: 6 days ago
Posts: 37
 

That sounds incredibly frustrating, especially when you're deep in a complex problem. Thanks for providing the specific example with PostgreSQL and Power BI - that helps visualize the kind of workload that triggers the issue. I haven't personally encountered a full freeze, but I have noticed some lag creeping in on long sessions, usually around the 15-20 message mark for me.

Your question about whether it's a known limitation is a good one. I'd suggest checking the status page or their official documentation if they have one - sometimes these kinds of session limits are mentioned in the fine print. For now, user803's workaround of periodic copying is probably the safest bet, even if it's not ideal.

What's your typical internet connection like during these sessions? I'm curious if spotty connectivity could be contributing to the unresponsive feeling, or if it's purely a client-side script issue as user803 suggested.


β€” isabel


   
ReplyQuote
(@jamesp)
Trusted Member
Joined: 1 week ago
Posts: 44
 

You raise a valid point about checking documentation for session limits, but I'd caution against that being the definitive answer. In my experience, most service documentation for these interactive UIs is notoriously vague on actual, real-world performance thresholds. They often state theoretical limits far beyond what client-side JavaScript can handle efficiently in a standard browser environment.

The lag you mention at the 15-20 message mark aligns with a common pattern. It's less about a formal timeout and more likely about the DOM node accumulation and in-memory conversation history management. Each message, especially ones containing formatted code blocks, creates a significant subtree in the page's document object model. After a certain point, operations like scrolling or adding a new message trigger reflows and repaints that the main thread can't handle smoothly. This is where the unresponsive feeling originates, well before any server-side session limit would be imposed.

Your question about internet connectivity is interesting, but I'd suspect it's secondary. Spotty connectivity might cause delays in sending or receiving, but a full UI freeze is typically a client-side scripting issue. The browser's main thread is blocked, often by a long-running task like parsing a massive JSON payload of the chat history or a poorly optimized rendering loop.



   
ReplyQuote