dzlandis
dzlandis
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
As far as I can tell RAM usage appears to be improved! Issue is hosting has been having networking issues lately so I can't actually tell how long the systemctl process will stay online for at a given time yet. At least for a fact, I know the current crashes aren't RAM/CPU related. I have been getting lots of Abort Errors lately, which I believe are caused by having to reimplement await enterState back into things, but I'm also attributing them to the networking issues the host has been having, so not changing anything yet. Once host fully resolves network inconsistencies, I'll be able to more accurately tell what's going on. I am still concerned that there is a crash occurring, but the error is generic and could either be caused by a cluster crash caused by network issues or a longer running previous issue. Will do my best to keep updated :)
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
RAM usage appears to be fluctuating, which I hadn't really seen before and is very promising. Previously RAM would just increase forever and that was that. Now I'm seeing it go up and then go down which is very very good.
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
So far so good. Of course, the memory still goes up a little as the bot is used and voice channels are joined, but it hasn't gone up so high to where the systemctl process has needed to crash restart yet. Will keep updated :) Real test will be if I can see the systemctl process staying alive for more than like a day. That will confirm to me that the issue has been resolved fully.
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
I've deployed changes to production, will report back about the results. Thanks again for all the help, I really really appreciate it :) And of course, lmk if you figure out that enterState stuff haha
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
Lmk if that doesn't make sense
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
That's why I theorized await enterState would fix the issue and make it play the first time since it would wait for the connection to happen.
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
And for whatever reason, it plays once the connection is already initialized
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
So the connection is already initialized
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
Because of the way joinVoiceChannel works, since the bot is already in the voice channel, it doesn't try to join again
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
So when I run the command, the bot joins the voice channel and tries to play
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
Fair enough lol
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
I'll just set it all to use res.body and scrap all that other hacky stuff 👍
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
And it returned true
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
I confirmed by doing:
const audio = Readable.fromWeb(res.body as ReadableStream<any>);
const resource = createAudioResource(audio);
player.once(AudioPlayerStatus.Idle, () => console.log(res.bodyUsed));
const audio = Readable.fromWeb(res.body as ReadableStream<any>);
const resource = createAudioResource(audio);
player.once(AudioPlayerStatus.Idle, () => console.log(res.bodyUsed));
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
It is getting consumed
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
Yeah, you are right
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
I suppose it's possible it may be getting consumed by the actual discord.js audio player stuff 🤔
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
As in, passing res.body into Readable.fromWeb()?
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
The question now is how to properly consume it.
181 replies
DIAdiscord.js - Imagine an app
Created by dzlandis on 2/2/2025 in #djs-questions
General DJS Memory Leaks & Potential Voice Issues
So that was definitely the problem
181 replies