• 422 Posts
  • 1.02K Comments
Joined 4 年前
cake
Cake day: 2021年12月19日

help-circle
  • It depends. In my experience: in an academic laboratory I have been able to use common sense.

    For example, gloves go on when working with strong acids/bases. The statement:

    gloves apparently only give researchers a false sense of security that can dull the sense of touch and prevent you from recognizing chemical exposure

    Does not apply as much when you are working with such corrosive agents, because you really should never be in a position where spilling 4 M HCl into your hands would go unnoticed.

    When working with large quantitites of oils, even if non-hazardous, gloves go on and they will probably get oil in them.

    When working with cell cultures, the goal is often to not contaminate the cultures. Some people prefer to wash their hands thoroughly and not use gloves, and they have been working at it for many years and they seem to do just fine. It’s a risk mitigation strategy - if the cultures have antibiotics and fungicides, risk is already not too high.

    In an industry setting it is different. Companies often comply with specific standards and health and safety regulations. While the individual can use common sense, the people in charge of ascertaining compliance (sometimes ‘EHS’, Environment, health and safety personnel) aren’t necessarily chemists themselves, nor should they need to be aware of the identity of the transparent liquid in the flask that you are holding. So, generic rules are often set in place not only because of their practical utility but also to simplify enforcement. In some cases external auditors can come in (announced or not) and verify compliance - this, again is much simpler when the rule is ‘lab coat behind yellow line, gloves always on when touching a container with a liquid’ than having to interview each person to understand what they were touching without gloves and to understand their philosophy of why they chose to do so.


  • I have experienced issues both over tor and over clearnet. The tor front-end exists on its own server, but it connects to the mander server. So, the server that hosts the front-end via Tor will see the exit node connecting to it, and then the mander server gets the requests via that Tor server. Ultimately some bandwidth is used for both servers because the data travels from mander, to the tor front-end, and then to the exit node. There is also another server that hosts and serves the images.

    What I see is not a bandwidth problem, though. It seems like the database queries are the bottleneck. There is a limited number of connections to the database, and some of the queries are complex and use a lot of CPU. It is the intense searching through the database what appears to throttle the website.

















  • I did not update or change anything in the past few days.

    But, now that you mentioned an AI scrapper I looked into the logs and noticed some heavy requests to the API from a specific IP.

    Requests look consistent to scraping - just consistently and continuously issuing GET requests to different API endpoints.

    XX.XX.XX.XX - - [14/Oct/2025:21:28:54 +0000] "GET /api/v3/community/list?limit=20&sort=TopAll HTTP/2.0" 403 107 "-" "Mlmym"
    
    

    I have started denying their requests and it is the first thing that seems to have actually helped!

    I don’t want to speak too early but I think you may have identified the cause. Thanks!


  • So far, I have been able to ‘control’ the CPU use by setting limits to the process that pulls stuff from the database (pool size, CPU, memory).

    This does release some of the CPU for other tasks, but I think that that what creates the lag might actually be the clogged database queries. So, constraining those resources might not solve the lag problem.



  • I can see that since October 13 the CPU use spiked to 100%…

    I just reset the server to check if that would fix it quickly. It don’t think it did.

    I can see the processes that are taking up a lot of CPU (parallell database queries it seems), but I still don’t understand what is causing these and why they have spiked since Oct 13. I will need to investigate.