Message to users of quitter.no. I've decided to close this site on it's 4th birthday, that is 5th September -18. I do not have the energy and capacity to host the site anymore. Please "migrate" or find a new GNU Social home. I've decided to not handover the maintenance or data to anyone else - so please do not ask to get the data to host this site further. Thank you all for using Quitter this period and for following it's users. - A. !quitterno #gnusocial #quitter
@ai @mcscx2 yeah... something went wrong - I don't know what, so the local guy at the hackerspace was needed to kick it alive (or to fix the network issue - the server was never down).
@mcscx2 Been away for a while .... Thanks for all your effort and investigation. Interesting stuff. Did some config now, not sure if it helps. Tell me if you see some changes - and yes, I'm on IPv6 at home.
@mcscx2 @lakwnikos @xrevan86 @maiyannah ohhh - please share if you have a patch for this! I tried running the queries manually and yes - they are slow... (typically 16seconds pr. run - if you re-run, they will be in memory and execute less than a second)
@mcscx2 @lakwnikos don't think there is a ddos. A classical slow query is the following example (examine 3mill rows). "# Query_time: 16.042286 Lock_time: 0.000140 Rows_sent: 104 Rows_examined: 3776090 # Rows_affected: 0 SET timestamp=1527533585; SELECT id FROM notice WHERE ( notice.created > "2018-01-14 23:36:01" ) AND ( notice.id IN (SELECT notice_id FROM reply WHERE profile_id=45991) OR notice.profile_id IN (SELECT subscribed FROM subscription WHERE subscriber=45991) OR notice.id IN (SELECT notice_id FROM group_inbox WHERE group_id IN (SELECT group_id FROM group_member WHERE profile_id=45991))OR notice.id IN (SELECT notice_id FROM attention WHERE profile_id=45991) ) ORDER BY notice.id DESC LIMIT 0, 200;" Also query's from the search field do a "LIKE '%yoursearch%" - which takes a long time - like does not use indexes. However, the select above (example 1) is the one reporting often as the slow queries.