Antony Dovgal
Antony Dovgal
Inserting values into the tables shouldn't work by design - Pinba tables are just virtual 'views', allowing read-only access to the data stored inside (nothing is written on the disk,...
Well, you can re-create the same tables with the same data, but using simple MyISAM or InnoDB tables instead of Pinba, if you need this exact data to stay for...
Does this patch help: https://gist.github.com/17ee3f9cde526a4eae28 ?
Are you using OS X too, by any chance?
Ok, what do you get with `thread info` in gdb? You should see quite a lot of threads and some of them are apparently stuck somewhere, so the main thread...
Okay, so pthread_cancel() doesn't seem to break the eventloop on OS X. I've seen a similar problem on FreeBSD iirc. I'll try look to it up and see if there's...
If you're using this MySQL instance for Pinba only (which I do recommend), then you can safely kill it with `kill`, since Pinba doesn't write any data on the disk.
Yes, it seems that this problem is inherited throughout all *BSD family. Please try this patch: https://gist.github.com/tony2001/9ba9067be681d8febb8a
Yes, recompiling MySQL and pinba with debug symbols would help to pinpoint the place where it's stuck, but I'm fairly sure I know where it is. The problem is that...
Please try & see if branch devel_kevent_workaround fixes it for you.