Open tushdante opened 3 years ago
What line in src/driver.py
did you add self.options.add_argument('--disable-dev-shm-usage')
to?
Added it to line 73 (after the self.options.add_argument('--window-size=1920,1080')
) argument
Thank you for posting!
I was so happy to see a fix for the Chromium issue. Unfortunately, it hasn't worked for me on the Pi 4. Even more annoyingly, the Chromium issue seems to exponentially increase disk usage as it runs.
Oh that's unfortunate. Have you tried splitting your config up by domain?
Oh that's unfortunate. Have you tried splitting your config up by domain?
if you mean between Best Buy and NewEgg for example, yes, I have separate files/images running for each. The ones searching on NewEgg and Microcenter are working flawlessly, while Amazon and BestBuy are giving me the Chromium error.
Oh that's unfortunate. Have you tried splitting your config up by domain?
if you mean between Best Buy and NewEgg for example, yes, I have separate files/images running for each. The ones searching on NewEgg and Microcenter are working flawlessly, while Amazon and BestBuy are giving me the Chromium error.
Have you found a solution for this? I'm running a 20.04 on a VM and I am getting a chromium error (only on amazon and bestbuy) and my disk fills up to 100%
Oh that's unfortunate. Have you tried splitting your config up by domain?
if you mean between Best Buy and NewEgg for example, yes, I have separate files/images running for each. The ones searching on NewEgg and Microcenter are working flawlessly, while Amazon and BestBuy are giving me the Chromium error.
Have you found a solution for this? I'm running a 20.04 on a VM and I am getting a chromium error (only on amazon and bestbuy) and my disk fills up to 100%
I found a workaround. Check out #127
Hey all,
Leaving some feedback here from some learnings I've had deploying to azure and playing around with the configs. Along with the fix for an error I've seen reported a few times (e.g., #120)
gtx3080_newegg
,gtx3080_bestbuy
, etc.). I noticed that trying to dump all URLs into a single file would often cause the chromium driver to crash.self.options.add_argument('--disable-dev-shm-usage')
to thesrc/driver.py
file which fixed the other issue I kept seeing (#120)docker-compose.yml
file helped as well, so I can manage all my alerters easily. See example below:where
docker-compose-common.yaml
isIf anyone has any suggestions to improve on my own solution I'd love to hear em. Also, huge thanks to the maintainer for setting this up!
Happy hunting everyone!