The CPU usage makes sense. The reason why this happens is that when you attach lldb, the process is halted. If you send lldb the continue command, the CPU usage should go back to where it was before.
The thing that could be the culprit is:
thread #27: tid = 0x68743, 0x000000010239fbf2 mysqld`fil_space_get_by_id(unsigned long) + 30
frame #0: 0x000000010239fbf2 mysqld`fil_space_get_by_id(unsigned long) + 30
frame #1: 0x00000001023aff89 mysqld`fil_space_get_crypt_data(unsigned long) + 247
frame #2: 0x00000001023b3590 mysqld`fil_crypt_find_space_to_rotate(key_state_t*, rotate_thread_t*, bool*) + 1583
frame #3: 0x00000001023b473e mysqld`fil_crypt_thread + 763
frame #4: 0x00007fff81ef499d libsystem_pthread.dylib`_pthread_body + 131
frame #5: 0x00007fff81ef491a libsystem_pthread.dylib`_pthread_start + 168
frame #6: 0x00007fff81ef2351 libsystem_pthread.dylib`thread_start + 13
This seems to be the thread that is actually performing some work.
Can you acquire a stack trace (or better several consequent stack traces) from the running server?