Excessive data volume leads to process stuck
See original GitHub issue// IN RENDERER PROCESS
import log from 'electron-log'
log.transports.file.sync = false
console.log = log.info
But excessive data volume leads to process stuck
I use
var log4js = require('log4js');
There will be no such problem, I guess it may be that IPC does not allow too much data to be sent. I set “sync” is “false” but no effect
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Problems with large volume of data - interface process gets ...
Hi! Has anybody come across the problem that interface, which is pumping large volume of data, is stuck in the middle?
Read more >Orchestrator stuck when processing High volume data (with ...
Orchestrator gets stuck when processing high volume data. ... which means concurrency will be very poor, leading to poor throughput.
Read more >About system overload - Stuck in the loop
Overload is normally detected at higher level, when something goes down, or, if we have metrics, when we see high cpu usage, errors...
Read more >Amazon OpenSearch Service domain is stuck in "Processing"
Nodes are out of service because of a heavy processing load caused by high JVM memory pressure and CPU usage. To resolve this...
Read more >10 Ways to Resolve a 100% Disk Usage on Windows 10 (2022)
Even Windows Defender can cause problems by increasing I/O and network usage which might lead to high disk usage. Way 8: Reset Virtual...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You don’t need to disable file and console transport. You need to disable rendererConsole and mainConsole transports.
I have used the above code, but it has no effect and will still be stuck.