MySQL kill Process dauert ewig?



  • Hab folgende Abfrage ausgeführt...

    select count(*) from tbl_images where link_url_status != 200
    

    dann ein

    show processlist;
    

    mit ausgabe:

    8899810 | root | localhost       | pqXXX | Killed  | 4833 | Sending data | select count(*) from tbl_images where link_url_status != 200
    

    gefolgt von

    kill 8899810;
    

    und verdammt, ich warte schon wieder fast eine stunde 😡

    IST DAS NORMAL 😕



  • SHOW CREATE TABLE tbl_images
    EXPLAIN select count(*) from tbl_images where link_url_status != 200


Anmelden zum Antworten