Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

System freezes or reboots importing a degraded mirror image #806

Closed
wq9578 opened this issue Apr 2, 2023 · 52 comments
Closed

System freezes or reboots importing a degraded mirror image #806

wq9578 opened this issue Apr 2, 2023 · 52 comments

Comments

@wq9578
Copy link

wq9578 commented Apr 2, 2023

The system freezes with: sudo zpool import -d pool.mirror1.img pool

The system reboots with (readonly mode): sudo zpool import -N -d pool.mirror1.img pool

This happens although the pool is recognized:

$ sudo zpool import -d pool.mirror1.img
   pool: pool
     id: [...]
  state: DEGRADED
status: One or more devices are missing from the system.
 action: The pool can be imported despite missing or damaged devices.  The
	fault tolerance of the pool may be compromised if imported.
   see: https://openzfs.github.io/openzfs-docs/msg/ZFS-8000-2Q
 config:

	pool                                                                     DEGRADED
	  mirror-0                                                               DEGRADED
	    pool.mirror1.img                                                     ONLINE
	    pool.mirror2.img                                                     UNAVAIL  cannot open
$ sw_vers 
ProductName:	macOS
ProductVersion:	12.6.3
BuildVersion:	21G419
$ zfs version
zfs-macOS-2.1.6-1
zfs-kmod-2.1.6-1

Diagnose after reboot:

panic(cpu 1 caller 0xffffff80003cdd43): Kernel trap at 0xffffff7f9a5344bd, type 14=page fault, registers:
[...]
      Kernel Extensions in backtrace:
         org.openzfsonosx.zfs(2.1.6)[...]@0xffffff7f9a3ee000->0xffffff7f9a74efff
            dependency: com.apple.iokit.IOStorageFamily(2.1)[...]@0xffffff8002f7b000->0xffffff8002f91fff

Process name corresponding to current thread (0xffffff94dfb4caa0): kernel_task

Mac OS version:
21G419
@lundman
Copy link
Contributor

lundman commented Apr 4, 2023

OK so, if that is Intel, can we boot with keepsyms=1 on so we get a stack trace?

I will create a 2 file mirror pool and offline one to see if I can make it happen here.

@lundman
Copy link
Contributor

lundman commented Apr 4, 2023

OK don't need stack, I can reproduce here. One sec

@lundman
Copy link
Contributor

lundman commented Apr 5, 2023

6a1d646

@wq9578
Copy link
Author

wq9578 commented Apr 5, 2023

Update:
I was able to import the image with: sudo zpool import -o readonly=on -N -d pool.mirror.img -a
Mounting also works: sudo zfs mount -al
But unmounting freezes the system again: sudo zfs umount -a

@lundman
Copy link
Contributor

lundman commented Apr 5, 2023

Is this with todays build?

@wq9578
Copy link
Author

wq9578 commented Apr 5, 2023

No, the homebrew version installed a few days ago:

$ brew info openzfs
==> openzfs: 2.1.6,434
https://openzfsonosx.org/
/opt/homebrew/Caskroom/openzfs/2.1.6,434 (19.9MB)

The file OpenZFSonOsX-2.1.6-Ventura-13-arm64.pkg at /opt/homebrew/Caskroom/openzfs/2.1.6,434 is dated on Dec. 1st.

It would be better being able to import the pool in readwrite mode and continue using it.
Is this possible with the today's build? If so, how can I install it?
It says ALLOC 0, I hope the pool is not corrupted.

Update: Sorry, I need a different version, for Monterey-12 (not arm64). I made a mistake and ran the command on the wrong computer. The correct output is:

$ brew info openzfs     
==> openzfs: 2.1.6,432
https://openzfsonosx.org/
Not installed
From: https://github.com/Homebrew/homebrew-cask/blob/HEAD/Casks/openzfs.rb
==> Name
OpenZFS on OS X
==> Description
ZFS driver and utilities
==> Artifacts
OpenZFSonOsX-2.1.6-Monterey-12.pkg (Pkg)
==> Caveats
openzfs requires a kernel extension to work.
If the installation fails, retry after you enable it in:
  System Preferences → Security & Privacy → General

For more information, refer to vendor documentation or this Apple Technical Note:
  https://developer.apple.com/library/content/technotes/tn2459/_index.html

==> Analytics
install: 3 (30 days), 179 (90 days), 831 (365 days)

$ sw_vers 
ProductName:	macOS
ProductVersion:	12.6.4
BuildVersion:	21G526

@lundman
Copy link
Contributor

lundman commented Apr 5, 2023

Ah ok, so you run arm64 - let me make you a build

@wq9578
Copy link
Author

wq9578 commented Apr 5, 2023

Thanks.
The installer says that other ZFS versions have to be removed first.

First a note here to improve the homebrew version. The uninstall should work without manually issuing commands as root.

I ran:

$ brew uninstall openzfs
==> Uninstalling Cask openzfs
==> Removing launchctl service org.openzfsonosx.InvariantDisks
Not privileged to remove service.
Error: Failure while executing; `/usr/bin/env /bin/launchctl remove org.openzfsonosx.InvariantDisks` exited with 1. Here's the output:
Not privileged to remove service.

Running as root didn't work:

# brew uninstall openzfs
Error: Running Homebrew as root is extremely dangerous and no longer supported.
As Homebrew does not drop privileges on installation you would be giving all
build scripts full access to your system.

So I manually had to remove the services as root:

# /usr/bin/env /bin/launchctl remove org.openzfsonosx.InvariantDisks
# /usr/bin/env /bin/launchctl remove org.openzfsonosx.zconfigd
# /usr/bin/env /bin/launchctl remove org.openzfsonosx.zed
# /usr/bin/env /bin/launchctl remove org.openzfsonosx.zpool-import-all

Then it worked (as regular user):

$ brew uninstall openzfs
==> Uninstalling Cask openzfs
==> Removing launchctl service org.openzfsonosx.InvariantDisks
==> Removing launchctl service org.openzfsonosx.zconfigd
==> Removing launchctl service org.openzfsonosx.zed
==> Removing launchctl service org.openzfsonosx.zpool-import
==> Removing launchctl service org.openzfsonosx.zpool-import-all
==> Uninstalling packages; your password may be necessary:
org.openzfsonosx.zfs
==> Purging files for version 2.1.6,432 of Cask openzfs

@wq9578
Copy link
Author

wq9578 commented Apr 5, 2023

From above:

Update: Sorry, I need a different version, for Monterey-12 (not arm64). I made a mistake and ran the command on the wrong computer. The correct output is:

$ brew info openzfs     
==> openzfs: 2.1.6,432
[...]
OpenZFSonOsX-2.1.6-Monterey-12.pkg (Pkg)
[...]
$ sw_vers 
ProductName:	macOS
ProductVersion:	12.6.4
BuildVersion:	21G526

Thanks!

@lundman
Copy link
Contributor

lundman commented Apr 5, 2023

The homebrew issues you might have to bring up with them, looks like it needs sudo on the launchctl lines.

The Intel version was also posted, it is next to the arm64 one today.

https://openzfsonosx.org/forum/download/file.php?id=458

and yes, Catalina will work on Monterey.

(You can easily check what your machine is with "uname -a" or just "arch" since the brew info isnt clear)

@wq9578
Copy link
Author

wq9578 commented Apr 6, 2023

It seems to work now!

I brought both mirror images online, and they resilvered.
Then I had to upgrade, as the feature block_cloning was not enabled.
Data is accessible.

status: Some supported and requested features are not enabled on the pool.
	The pool can still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
	the pool may no longer be accessible by software that does not support
	the features. See zpool-features(7) for details.
  scan: resilvered 2.04M in 00:02:45 with 0 errors on Fri Apr  7 00:32:37 2023

Now scrub is running.

However, I wonder whether there is something making the system slow.
It takes two minutes after sudo zpool scrub pool until the prompt is shown again.
Similarly with importing, exporting, mounting and unmounting.
And the scrub currently running has nearly zero read or write shown in sudo zpool iostat -v 2, but top shows a launchd or kernel_task process with 100% cpu usage.
The images have a size of 2 T, use encryption, sha512 checksum+dedup, and lz4 compression.
But nothing of that should slow down the pool in that manner, in particular not a simple scrub.
After half an hour, only 12.0G are scanned, but 0B issued and 0B repaired:

 state: ONLINE
  scan: scrub in progress since Fri Apr  7 01:06:43 2023
	12.0G scanned at 6.83M/s, 0B issued at 0B/s, 1.23T total
	0B repaired, 0.00% done, no estimated completion time

@lundman
Copy link
Contributor

lundman commented Apr 6, 2023

Run a spindump while its being slow? Maybe there is a process taking all the cpu. Scrubbing does start slow, but just 12G in 30mins does seem too-slow. You could reboot in case it is something taking CPU, the scrub should restart.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Made spindumps and a reboot, but the system remains slow.
Shutting down required a lot of time, and after reboot there was an error message that the system was restarted because an error occurred.
Importing after reboot required a very long time.
One image seems to have been damaged:

 state: ONLINE
status: One or more devices has experienced an unrecoverable error.  An
	attempt was made to correct the error.  Applications are unaffected.
action: Determine if the device needs to be replaced, and clear the errors
	using 'zpool clear' or replace the device with 'zpool replace'.
   see: https://openzfs.github.io/openzfs-docs/msg/ZFS-8000-9P
  scan: scrub in progress since Fri Apr  7 01:06:43 2023
	217M scanned at 335K/s, 0B issued at 0B/s, 1.23T total
	0B repaired, 0.00% done, no estimated completion time


 state: ONLINE
status: One or more devices is currently being resilvered.  The pool will
	continue to function, possibly in a degraded state.
action: Wait for the resilver to complete.
  scan: resilver in progress since Fri Apr  7 02:32:54 2023
	60K scanned at 2.86K/s, 24K issued at 1.14K/s, 1.23T total
	0B resilvered, 0.00% done, no estimated completion time


  pool: pool
 state: ONLINE
status: One or more devices has experienced an unrecoverable error.  An
	attempt was made to correct the error.  Applications are unaffected.
action: Determine if the device needs to be replaced, and clear the errors
	using 'zpool clear' or replace the device with 'zpool replace'.
   see: https://openzfs.github.io/openzfs-docs/msg/ZFS-8000-9P
  scan: resilvered 0B in 00:03:10 with 0 errors on Fri Apr  7 02:36:04 2023
config:

	NAME                                                                STATE     READ WRITE CKSUM
	pool                                                                ONLINE       0     0     0
	  mirror-0                                                          ONLINE       0     0     0
	    /Volumes/MyUSBDrive1/pool.mirror1.img                           ONLINE       0     0     0
	    /Volumes/MyUSBDrive2/pool.mirror2.img                           ONLINE       0     0     3

errors: No known data errors


$ sudo zpool clear pool


$ time sudo zpool scrub pool
sudo zpool scrub pool  0,01s user 0,01s system 0% cpu 2:29,23 total


$ sudo zpool status
  pool: pool
 state: ONLINE
  scan: scrub in progress since Fri Apr  7 02:39:43 2023
	2.31G scanned at 2.99M/s, 0B issued at 0B/s, 1.23T total
	0B repaired, 0.00% done, no estimated completion time
config:

	NAME                                                                STATE     READ WRITE CKSUM
	pool                                                                ONLINE       0     0     0
	  mirror-0                                                          ONLINE       0     0     0
	    /Volumes/MyUSBDrive1/pool.mirror1.img                           ONLINE       0     0     0
	    /Volumes/MyUSBDrive2/pool.mirror2.img                           ONLINE       0     0     0

Because of the size and for privacy reasons I have sent you the full spindumps via email to the address mentioned here, but the relevant threads (cpu time > 9.0s) seem to be:

kernel_task:

Process:          launchd [1]
UUID:             9EC5D75E-9126-3447-9EF1-A8558D95BF25
Path:             /sbin/launchd
Codesigning ID:   com.apple.xpc.launchd
Shared Cache:     E93D070C-AA95-3E71-9D41-4C2C422D2DCF slid base address 0x7ff81f19b000, slide 0x1f19b000
Architecture:     x86_64
Parent:           kernel_task [0]
UID:              0
Footprint:        15.53 MB
Time Since Fork:  8689s
Num samples:      1001 (1-1001)
CPU Time:         9.785s (28.7G cycles, 21.8G instructions, 1.31c/i)
Note:             5 idle work queue threads omitted

  Thread 0xacb8    DispatchQueue "com.apple.xpc.launchd.bgioq"(25)    1001 samples (1-1001)    priority 46 (base 4)    cpu time 9.773s (28.6G cycles, 21.8G instructions, 1.31c/i)
  1001  start_wqthread + 15 (libsystem_pthread.dylib + 8023) [0x7ff81f4b7f57]
    1001  _pthread_wqthread + 326 (libsystem_pthread.dylib + 12240) [0x7ff81f4b8fd0]
      1001  _dispatch_workloop_worker_thread + 753 (libdispatch.dylib + 81646) [0x7ff81f315eee]
        1001  _dispatch_lane_invoke + 366 (libdispatch.dylib + 40445) [0x7ff81f30bdfd]
          1001  _dispatch_lane_serial_drain + 342 (libdispatch.dylib + 37325) [0x7ff81f30b1cd]
            1001  _dispatch_source_invoke + 2179 (libdispatch.dylib + 94728) [0x7ff81f319208]
              1001  _dispatch_continuation_pop + 453 (libdispatch.dylib + 23932) [0x7ff81f307d7c]
                1001  sync + 10 (libsystem_kernel.dylib + 155890) [0x7ff81f4a40f2]
                 *1001  hndl_unix_scall64 + 22 (kernel + 49718) [0xffffff800021c236]
                   *1001  unix_syscall64 + 507 (kernel + 7826107) [0xffffff8000986abb]
                     *1001  sync + 23 (kernel + 3272631) [0xffffff800052efb7]
                       *1001  vfs_iterate + 508 (kernel + 3188188) [0xffffff800051a5dc]
                         *1001  ??? (kernel + 3272766) [0xffffff800052f03e]
                           *1001  exfat_vfs_sync + 270 (exfat + 3738) [0xffffff7f9969ce9a]
                             *1001  vnode_iterate + 650 (kernel + 3189050) [0xffffff800051a93a]
                               *1001  exfat_sync_callback + 66 (exfat + 3439) [0xffffff7f9969cd6f]
                                 *1001  exfat_fsync_internal + 181 (exfat + 26583) [0xffffff7f996a27d7]
                                   *1001  ubc_msync + 166 (kernel + 6859462) [0xffffff800089aac6]
                                     *1001  memory_object_lock_request + 268 (kernel + 1098812) [0xffffff800031c43c]
                                       *927   ??? (kernel + 1102667) [0xffffff800031d34b]
                                         *423   vm_page_lookup + 509 (kernel + 1417805) [0xffffff800036a24d] (running)
                                         *92    vm_page_lookup + 541 (kernel + 1417837) [0xffffff800036a26d]
                                           *40    ??? (kernel + 526097) [0xffffff8000290711] (running)
                                           *24    ??? (kernel + 526144) [0xffffff8000290740]
                                             *24    ??? (kernel + 47728) [0xffffff800021ba70]
                                               *24    kernel_trap + 744 (kernel + 1824696) [0xffffff80003cd7b8]
                                                 *24    ??? (kernel + 401007) [0xffffff8000271e6f]
                                                   *24    thread_block_reason + 199 (kernel + 607719) [0xffffff80002a45e7]
                                                     *24    ??? (kernel + 616530) [0xffffff80002a6852]
                                                       *24    machine_switch_context + 219 (kernel + 1796827) [0xffffff80003c6adb] (runnable)
                                           *8     ??? (kernel + 526099) [0xffffff8000290713] (running)
                                           *5     ??? (kernel + 526112) [0xffffff8000290720] (running)
                                           *5     return_to_iret + 272 (kernel + 48432) [0xffffff800021bd30]
                                             *5     ??? (kernel + 401007) [0xffffff8000271e6f]
                                               *5     thread_block_reason + 199 (kernel + 607719) [0xffffff80002a45e7]
                                                 *5     ??? (kernel + 616530) [0xffffff80002a6852]
                                                   *5     machine_switch_context + 219 (kernel + 1796827) [0xffffff80003c6adb] (runnable)
                                           *4     ??? (kernel + 526144) [0xffffff8000290740] (running)
                                           *2     ??? (kernel + 526108) [0xffffff800029071c] (running)
                                           *1     ??? (kernel + 526084) [0xffffff8000290704] (running)
                                           *1     ??? (kernel + 526078) [0xffffff80002906fe] (running)
                                           *1     ??? (kernel + 526071) [0xffffff80002906f7] (running)
                                           *1     ??? (kernel + 47852) [0xffffff800021baec]
                                             *1     ??? (kernel + 401007) [0xffffff8000271e6f]
                                               *1     thread_block_reason + 199 (kernel + 607719) [0xffffff80002a45e7]
                                                 *1     ??? (kernel + 616530) [0xffffff80002a6852]
                                                   *1     machine_switch_context + 219 (kernel + 1796827) [0xffffff80003c6adb] (runnable)
                                         *81    vm_page_lookup + 351 (kernel + 1417647) [0xffffff800036a1af]
                                           *57    ??? (kernel + 525662) [0xffffff800029055e] (running)
                                           *7     ??? (kernel + 525647) [0xffffff800029054f] (running)
                                           *5     ??? (kernel + 525650) [0xffffff8000290552] (running)
                                           *3     ??? (kernel + 525670) [0xffffff8000290566] (running)
                                           *3     ??? (kernel + 525655) [0xffffff8000290557] (running)
                                           *3     ??? (kernel + 525638) [0xffffff8000290546] (running)
                                           *2     ??? (kernel + 525664) [0xffffff8000290560] (running)
                                           *1     ??? (kernel + 525626) [0xffffff800029053a] (running)
                                         *54    vm_page_lookup + 512 (kernel + 1417808) [0xffffff800036a250] (running)
                                         *53    vm_page_lookup + 243 (kernel + 1417539) [0xffffff800036a143] (running)
                                         *20    vm_page_lookup + 135 (kernel + 1417431) [0xffffff800036a0d7] (running)
                                         *12    vm_page_lookup + 6 (kernel + 1417302) [0xffffff800036a056] (running)
                                         *10    vm_page_lookup + 434 (kernel + 1417730) [0xffffff800036a202] (running)
                                         *10    return_to_iret + 272 (kernel + 48432) [0xffffff800021bd30]
                                           *10    ??? (kernel + 401007) [0xffffff8000271e6f]
                                             *10    thread_block_reason + 199 (kernel + 607719) [0xffffff80002a45e7]
                                               *10    ??? (kernel + 616530) [0xffffff80002a6852]
                                                 *10    machine_switch_context + 219 (kernel + 1796827) [0xffffff80003c6adb] (runnable)
                                         *9     vm_page_lookup + 198 (kernel + 1417494) [0xffffff800036a116] (running)
                                         *8     vm_page_lookup + 138 (kernel + 1417434) [0xffffff800036a0da] (running)
                                         *7     vm_page_lookup + 427 (kernel + 1417723) [0xffffff800036a1fb] (running)
                                         *7     vm_page_lookup + 357 (kernel + 1417653) [0xffffff800036a1b5] (running)
                                         *7     vm_page_lookup + 221 (kernel + 1417517) [0xffffff800036a12d] (running)
                                         *7     vm_page_lookup + 188 (kernel + 1417484) [0xffffff800036a10c] (running)
                                         *7     vm_page_lookup + 166 (kernel + 1417462) [0xffffff800036a0f6] (running)
                                         *6     vm_page_lookup + 551 (kernel + 1417847) [0xffffff800036a277] (running)
                                         *6     vm_page_lookup + 516 (kernel + 1417812) [0xffffff800036a254] (running)
                                         *5     vm_page_lookup + 480 (kernel + 1417776) [0xffffff800036a230] (running)
                                         *5     vm_page_lookup + 176 (kernel + 1417472) [0xffffff800036a100] (running)
                                         *5     vm_page_lookup + 105 (kernel + 1417401) [0xffffff800036a0b9] (running)
                                         *5     vm_page_lookup + 54 (kernel + 1417350) [0xffffff800036a086] (running)
                                         *5     vm_page_lookup + 8 (kernel + 1417304) [0xffffff800036a058] (running)
                                         *5     ??? (kernel + 526064) [0xffffff80002906f0] (running)
                                         *4     vm_page_lookup + 533 (kernel + 1417829) [0xffffff800036a265] (running)
                                         *4     vm_page_lookup + 503 (kernel + 1417799) [0xffffff800036a247] (running)
                                         *4     vm_page_lookup + 210 (kernel + 1417506) [0xffffff800036a122] (running)
                                         *4     vm_page_lookup + 117 (kernel + 1417413) [0xffffff800036a0c5] (running)
                                         *3     vm_page_lookup + 550 (kernel + 1417846) [0xffffff800036a276] (running)
                                         *3     vm_page_lookup + 95 (kernel + 1417391) [0xffffff800036a0af] (running)
                                         *3     vm_page_lookup + 12 (kernel + 1417308) [0xffffff800036a05c] (running)
                                         *3     ??? (kernel + 525617) [0xffffff8000290531] (running)
                                         *3     ??? (kernel + 525616) [0xffffff8000290530] (running)
                                         *2     vm_page_lookup + 559 (kernel + 1417855) [0xffffff800036a27f] (running)
                                         *2     vm_page_lookup + 555 (kernel + 1417851) [0xffffff800036a27b] (running)
                                         *2     vm_page_lookup + 553 (kernel + 1417849) [0xffffff800036a279] (running)
                                         *2     vm_page_lookup + 541 (kernel + 1417837) [0xffffff800036a26d] (running)
                                         *2     vm_page_lookup + 501 (kernel + 1417797) [0xffffff800036a245] (running)
                                         *2     vm_page_lookup + 493 (kernel + 1417789) [0xffffff800036a23d] (running)
                                         *2     vm_page_lookup + 486 (kernel + 1417782) [0xffffff800036a236] (running)
                                         *2     vm_page_lookup + 472 (kernel + 1417768) [0xffffff800036a228] (running)
                                         *2     vm_page_lookup + 455 (kernel + 1417751) [0xffffff800036a217] (running)
                                         *2     vm_page_lookup + 336 (kernel + 1417632) [0xffffff800036a1a0] (running)
                                         *2     vm_page_lookup + 309 (kernel + 1417605) [0xffffff800036a185] (running)
                                         *2     vm_page_lookup + 249 (kernel + 1417545) [0xffffff800036a149] (running)
                                         *2     vm_page_lookup + 172 (kernel + 1417468) [0xffffff800036a0fc] (running)
                                         *2     vm_page_lookup + 48 (kernel + 1417344) [0xffffff800036a080] (running)
                                         *2     vm_page_lookup + 28 (kernel + 1417324) [0xffffff800036a06c] (running)
                                         *2     vm_page_lookup + 13 (kernel + 1417309) [0xffffff800036a05d] (running)
                                         *2     vm_page_lookup + 10 (kernel + 1417306) [0xffffff800036a05a] (running)
                                         *1     vm_page_lookup + 546 (kernel + 1417842) [0xffffff800036a272] (running)
                                         *1     vm_page_lookup + 543 (kernel + 1417839) [0xffffff800036a26f] (running)
                                         *1     vm_page_lookup + 498 (kernel + 1417794) [0xffffff800036a242] (running)
                                         *1     vm_page_lookup + 490 (kernel + 1417786) [0xffffff800036a23a] (running)
                                         *1     vm_page_lookup + 449 (kernel + 1417745) [0xffffff800036a211] (running)
                                         *1     vm_page_lookup + 365 (kernel + 1417661) [0xffffff800036a1bd] (running)
                                         *1     vm_page_lookup + 351 (kernel + 1417647) [0xffffff800036a1af] (running)
                                         *1     vm_page_lookup + 312 (kernel + 1417608) [0xffffff800036a188] (running)
                                         *1     vm_page_lookup + 304 (kernel + 1417600) [0xffffff800036a180] (running)
                                         *1     vm_page_lookup + 213 (kernel + 1417509) [0xffffff800036a125] (running)
                                         *1     vm_page_lookup + 112 (kernel + 1417408) [0xffffff800036a0c0] (running)
                                         *1     vm_page_lookup + 67 (kernel + 1417363) [0xffffff800036a093] (running)
                                         *1     ??? (kernel + 525675) [0xffffff800029056b] (running)
                                       *11    ??? (kernel + 1102638) [0xffffff800031d32e] (running)
                                       *10    ??? (kernel + 1102645) [0xffffff800031d335] (running)
                                       *10    ??? (kernel + 1102201) [0xffffff800031d179] (running)
                                       *9     ??? (kernel + 1102190) [0xffffff800031d16e] (running)
                                       *7     ??? (kernel + 1102656) [0xffffff800031d340] (running)
                                       *6     vm_page_lookup + 1 (kernel + 1417297) [0xffffff800036a051] (running)
                                       *4     ??? (kernel + 1102167) [0xffffff800031d157] (running)
                                       *3     ??? (kernel + 1102667) [0xffffff800031d34b] (running)
                                       *3     ??? (kernel + 1102659) [0xffffff800031d343] (running)
                                       *3     ??? (kernel + 1102207) [0xffffff800031d17f] (running)
                                       *3     ??? (kernel + 1102160) [0xffffff800031d150] (running)
                                       *2     vm_page_lookup + 0 (kernel + 1417296) [0xffffff800036a050] (running)
                                       *1     vm_page_lookup + 560 (kernel + 1417856) [0xffffff800036a280] (running)
                                       *1     ??? (kernel + 1102512) [0xffffff800031d2b0] (running)
                                       *1     ??? (kernel + 1102197) [0xffffff800031d175] (running)

launchd:

  Thread 0x3906    Thread name "z_ioctl_iss"    1000 samples (1-1000)    priority 46-79 (base 79)    cpu time 9.975s (30.4G cycles, 27.7G instructions, 1.09c/i)
 *1000  call_continuation + 46 (kernel + 45470) [0xffffff800021b19e]
   *1000  taskq_thread + 549 (zfs + 72213) [0xffffff7f9a3ffa15]
     *1000  zio_execute + 162 (zfs + 1227682) [0xffffff7f9a519ba2]
       *1000  zio_vdev_io_start + 539 (zfs + 1247099) [0xffffff7f9a51e77b]
         *1000  vdev_file_io_start + 205 (zfs + 1328765) [0xffffff7f9a53267d]
           *1000  zfs_file_fsync + 50 (zfs + 1386514) [0xffffff7f9a540812]
             *1000  VNOP_FSYNC + 77 (kernel + 3452493) [0xffffff800055ae4d]
               *1000  exfat_vnop_fsync + 90 (exfat + 26895) [0xffffff7f996a290f]
                 *1000  exfat_fsync_internal + 181 (exfat + 26583) [0xffffff7f996a27d7]
                   *1000  ubc_msync + 166 (kernel + 6859462) [0xffffff800089aac6]
                     *1000  memory_object_lock_request + 268 (kernel + 1098812) [0xffffff800031c43c]
                       *933   ??? (kernel + 1102667) [0xffffff800031d34b]
                         *462   vm_page_lookup + 509 (kernel + 1417805) [0xffffff800036a24d] (running)
                         *112   vm_page_lookup + 351 (kernel + 1417647) [0xffffff800036a1af]
                           *87    ??? (kernel + 525662) [0xffffff800029055e] (running)
                           *11    ??? (kernel + 525650) [0xffffff8000290552] (running)
                           *6     ??? (kernel + 525638) [0xffffff8000290546] (running)
                           *3     ??? (kernel + 525647) [0xffffff800029054f] (running)
                           *3     ??? (kernel + 525620) [0xffffff8000290534] (running)
                           *1     ??? (kernel + 525670) [0xffffff8000290566] (running)
                           *1     ??? (kernel + 525623) [0xffffff8000290537] (running)
                         *72    vm_page_lookup + 243 (kernel + 1417539) [0xffffff800036a143] (running)
                         *47    vm_page_lookup + 541 (kernel + 1417837) [0xffffff800036a26d]
                           *29    ??? (kernel + 526097) [0xffffff8000290711] (running)
                           *7     ??? (kernel + 526112) [0xffffff8000290720] (running)
                           *4     ??? (kernel + 526071) [0xffffff80002906f7] (running)
                           *3     ??? (kernel + 526144) [0xffffff8000290740]
                             *3     ??? (kernel + 47728) [0xffffff800021ba70]
                               *3     kernel_trap + 744 (kernel + 1824696) [0xffffff80003cd7b8]
                                 *3     ??? (kernel + 401007) [0xffffff8000271e6f]
                                   *3     thread_block_reason + 199 (kernel + 607719) [0xffffff80002a45e7]
                                     *3     ??? (kernel + 616530) [0xffffff80002a6852]
                                       *3     machine_switch_context + 219 (kernel + 1796827) [0xffffff80003c6adb] (runnable)
                           *3     ??? (kernel + 526099) [0xffffff8000290713] (running)
                           *1     ??? (kernel + 526114) [0xffffff8000290722] (running)
                         *43    vm_page_lookup + 512 (kernel + 1417808) [0xffffff800036a250] (running)
                         *22    vm_page_lookup + 135 (kernel + 1417431) [0xffffff800036a0d7] (running)
                         *11    vm_page_lookup + 13 (kernel + 1417309) [0xffffff800036a05d] (running)
                         *11    vm_page_lookup + 6 (kernel + 1417302) [0xffffff800036a056] (running)
                         *9     vm_page_lookup + 188 (kernel + 1417484) [0xffffff800036a10c] (running)
                         *8     vm_page_lookup + 117 (kernel + 1417413) [0xffffff800036a0c5] (running)
                         *8     vm_page_lookup + 48 (kernel + 1417344) [0xffffff800036a080] (running)
                         *7     vm_page_lookup + 221 (kernel + 1417517) [0xffffff800036a12d] (running)
                         *6     vm_page_lookup + 553 (kernel + 1417849) [0xffffff800036a279] (running)
                         *6     vm_page_lookup + 210 (kernel + 1417506) [0xffffff800036a122] (running)
                         *6     vm_page_lookup + 28 (kernel + 1417324) [0xffffff800036a06c] (running)
                         *6     ??? (kernel + 526064) [0xffffff80002906f0] (running)
                         *5     vm_page_lookup + 546 (kernel + 1417842) [0xffffff800036a272] (running)
                         *5     vm_page_lookup + 516 (kernel + 1417812) [0xffffff800036a254] (running)
                         *5     vm_page_lookup + 336 (kernel + 1417632) [0xffffff800036a1a0] (running)
                         *5     vm_page_lookup + 166 (kernel + 1417462) [0xffffff800036a0f6] (running)
                         *4     vm_page_lookup + 541 (kernel + 1417837) [0xffffff800036a26d] (running)
                         *4     vm_page_lookup + 533 (kernel + 1417829) [0xffffff800036a265] (running)
                         *4     vm_page_lookup + 503 (kernel + 1417799) [0xffffff800036a247] (running)
                         *4     vm_page_lookup + 480 (kernel + 1417776) [0xffffff800036a230] (running)
                         *4     vm_page_lookup + 434 (kernel + 1417730) [0xffffff800036a202] (running)
                         *4     vm_page_lookup + 357 (kernel + 1417653) [0xffffff800036a1b5] (running)
                         *4     vm_page_lookup + 105 (kernel + 1417401) [0xffffff800036a0b9] (running)
                         *4     vm_page_lookup + 95 (kernel + 1417391) [0xffffff800036a0af] (running)
                         *4     ??? (kernel + 525616) [0xffffff8000290530] (running)
                         *3     vm_page_lookup + 329 (kernel + 1417625) [0xffffff800036a199] (running)
                         *3     vm_page_lookup + 198 (kernel + 1417494) [0xffffff800036a116] (running)
                         *2     vm_page_lookup + 559 (kernel + 1417855) [0xffffff800036a27f] (running)
                         *2     vm_page_lookup + 551 (kernel + 1417847) [0xffffff800036a277] (running)
                         *2     vm_page_lookup + 550 (kernel + 1417846) [0xffffff800036a276] (running)
                         *2     vm_page_lookup + 486 (kernel + 1417782) [0xffffff800036a236] (running)
                         *2     vm_page_lookup + 465 (kernel + 1417761) [0xffffff800036a221] (running)
                         *2     vm_page_lookup + 312 (kernel + 1417608) [0xffffff800036a188] (running)
                         *2     vm_page_lookup + 227 (kernel + 1417523) [0xffffff800036a133] (running)
                         *2     vm_page_lookup + 183 (kernel + 1417479) [0xffffff800036a107] (running)
                         *2     vm_page_lookup + 112 (kernel + 1417408) [0xffffff800036a0c0] (running)
                         *2     ??? (kernel + 526065) [0xffffff80002906f1] (running)
                         *1     vm_page_lookup + 543 (kernel + 1417839) [0xffffff800036a26f] (running)
                         *1     vm_page_lookup + 501 (kernel + 1417797) [0xffffff800036a245] (running)
                         *1     vm_page_lookup + 498 (kernel + 1417794) [0xffffff800036a242] (running)
                         *1     vm_page_lookup + 472 (kernel + 1417768) [0xffffff800036a228] (running)
                         *1     vm_page_lookup + 455 (kernel + 1417751) [0xffffff800036a217] (running)
                         *1     vm_page_lookup + 427 (kernel + 1417723) [0xffffff800036a1fb] (running)
                         *1     vm_page_lookup + 343 (kernel + 1417639) [0xffffff800036a1a7] (running)
                         *1     vm_page_lookup + 318 (kernel + 1417614) [0xffffff800036a18e] (running)
                         *1     vm_page_lookup + 309 (kernel + 1417605) [0xffffff800036a185] (running)
                         *1     vm_page_lookup + 304 (kernel + 1417600) [0xffffff800036a180] (running)
                         *1     vm_page_lookup + 259 (kernel + 1417555) [0xffffff800036a153] (running)
                         *1     vm_page_lookup + 249 (kernel + 1417545) [0xffffff800036a149] (running)
                         *1     vm_page_lookup + 230 (kernel + 1417526) [0xffffff800036a136] (running)
                         *1     vm_page_lookup + 10 (kernel + 1417306) [0xffffff800036a05a] (running)
                         *1     ??? (kernel + 525617) [0xffffff8000290531] (running)
                       *10    vm_page_lookup + 0 (kernel + 1417296) [0xffffff800036a050] (running)
                       *10    ??? (kernel + 1102512) [0xffffff800031d2b0] (running)
                       *9     ??? (kernel + 1102656) [0xffffff800031d340] (running)
                       *8     ??? (kernel + 1102190) [0xffffff800031d16e] (running)
                       *7     vm_page_lookup + 560 (kernel + 1417856) [0xffffff800036a280] (running)
                       *7     ??? (kernel + 1102638) [0xffffff800031d32e] (running)
                       *6     ??? (kernel + 1102160) [0xffffff800031d150] (running)
                       *4     ??? (kernel + 1102201) [0xffffff800031d179] (running)
                       *2     vm_page_lookup + 1 (kernel + 1417297) [0xffffff800036a051] (running)
                       *2     ??? (kernel + 1102167) [0xffffff800031d157] (running)
                       *1     ??? (kernel + 1102667) [0xffffff800031d34b] (running)
                       *1     ??? (kernel + 1102207) [0xffffff800031d17f] (running)

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Hmm yeah what is launchd doing there, quite busy looking for memory. Does top show kernel_threads as top, or is it launchd?

Looks like it is memory starved, so we could look at halving your ARC. This is also what we would experience when we've had memory leaks in the past, so it could be worth checking how much ZFS has, and if it is ever growing.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

launchd and kernel_task (not: kernel_threads) alternate all the time at being the first process (100% cpu usage). About every five seconds they switch.

top says: PhysMem: 8114M used (1774M wired), 8270M unused.

After exactly one hour less than 10G (had to start a new scrub after reboot):

 state: ONLINE
  scan: scrub in progress since Fri Apr  7 02:39:43 2023
	9.61G scanned at 2.73M/s, 0B issued at 0B/s, 1.23T total
	0B repaired, 0.00% done, no estimated completion time

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

What is ARC, how can I halve it, and how can I check how much memory ZFS has (via ssh)?

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

OK, if launchd tries to start something over and over, it should be in the logs. Check /var/log to see, maybe system_log. Maybe one of the ZFS scripts is broken and it tries to start it.

Memory, you can use "sysctl kstat" to get all, generally far too much, so maybe add "sysctl kstat | grep inuse" . There's also the "total allocated by all ZFS".. which is... one sec

kstat.spl.misc.spl_misc.spl_osif_malloc_bytes: 268431360

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

$ tail /var/log/system.log
Apr  7 02:55:55 server syslogd[134]: ASL Sender Statistics
Apr  7 03:08:24 server syslogd[134]: ASL Sender Statistics
Apr  7 03:23:24 server syslogd[134]: ASL Sender Statistics
Apr  7 03:38:00 server sshd: username [priv][1423]: DEAD_PROCESS: 1455 ttys002
Apr  7 03:38:00 server syslogd[134]: ASL Sender Statistics
Apr  7 03:38:05 server sshd: username [priv][1424]: DEAD_PROCESS: 1452 ttys001
Apr  7 03:39:33 server sshd: username [priv][2011]: USER_PROCESS: 2018 ttys001
Apr  7 03:39:36 server sshd: username [priv][2013]: USER_PROCESS: 2039 ttys002
Apr  7 03:50:56 server syslogd[134]: ASL Sender Statistics
Apr  7 04:05:29 server syslogd[134]: ASL Sender Statistics
$ sysctl kstat | grep kstat.spl.misc.spl_misc.spl_osif_malloc_bytes
kstat.spl.misc.spl_misc.spl_osif_malloc_bytes: 268431360

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

$ sysctl kstat | grep zfs
kstat.unix.kmem_cache.zfs_btree_leaf_cache.buf_size: 4096
kstat.unix.kmem_cache.zfs_btree_leaf_cache.align: 8
kstat.unix.kmem_cache.zfs_btree_leaf_cache.chunk_size: 4096
kstat.unix.kmem_cache.zfs_btree_leaf_cache.slab_size: 4096
kstat.unix.kmem_cache.zfs_btree_leaf_cache.alloc: 8373
kstat.unix.kmem_cache.zfs_btree_leaf_cache.alloc_fail: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.free: 7727
kstat.unix.kmem_cache.zfs_btree_leaf_cache.depot_alloc: 2805
kstat.unix.kmem_cache.zfs_btree_leaf_cache.depot_free: 2822
kstat.unix.kmem_cache.zfs_btree_leaf_cache.depot_contention: 10
kstat.unix.kmem_cache.zfs_btree_leaf_cache.slab_alloc: 675
kstat.unix.kmem_cache.zfs_btree_leaf_cache.slab_free: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.buf_constructed: 12
kstat.unix.kmem_cache.zfs_btree_leaf_cache.buf_avail: 12
kstat.unix.kmem_cache.zfs_btree_leaf_cache.buf_inuse: 663
kstat.unix.kmem_cache.zfs_btree_leaf_cache.buf_total: 675
kstat.unix.kmem_cache.zfs_btree_leaf_cache.buf_max: 675
kstat.unix.kmem_cache.zfs_btree_leaf_cache.slab_create: 675
kstat.unix.kmem_cache.zfs_btree_leaf_cache.slab_destroy: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.vmem_source: 29
kstat.unix.kmem_cache.zfs_btree_leaf_cache.hash_size: 512
kstat.unix.kmem_cache.zfs_btree_leaf_cache.hash_lookup_depth: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.hash_rescale: 1
kstat.unix.kmem_cache.zfs_btree_leaf_cache.full_magazines: 10
kstat.unix.kmem_cache.zfs_btree_leaf_cache.empty_magazines: 63
kstat.unix.kmem_cache.zfs_btree_leaf_cache.magazine_size: 1
kstat.unix.kmem_cache.zfs_btree_leaf_cache.reap: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.defrag: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.scan: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_callbacks: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_yes: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_no: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_later: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_dont_need: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_dont_know: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_hunt_found: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_slabs_freed: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.move_reclaimable: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.no_vba_success: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.no_vba_fail: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.arc_no_grow_set: 0
kstat.unix.kmem_cache.zfs_btree_leaf_cache.arc_no_grow: 0
kstat.unix.kmem_cache.zfs_znode_cache.buf_size: 1744
kstat.unix.kmem_cache.zfs_znode_cache.align: 8
kstat.unix.kmem_cache.zfs_znode_cache.chunk_size: 1744
kstat.unix.kmem_cache.zfs_znode_cache.slab_size: 12288
kstat.unix.kmem_cache.zfs_znode_cache.alloc: 0
kstat.unix.kmem_cache.zfs_znode_cache.alloc_fail: 0
kstat.unix.kmem_cache.zfs_znode_cache.free: 0
kstat.unix.kmem_cache.zfs_znode_cache.depot_alloc: 0
kstat.unix.kmem_cache.zfs_znode_cache.depot_free: 0
kstat.unix.kmem_cache.zfs_znode_cache.depot_contention: 0
kstat.unix.kmem_cache.zfs_znode_cache.slab_alloc: 0
kstat.unix.kmem_cache.zfs_znode_cache.slab_free: 0
kstat.unix.kmem_cache.zfs_znode_cache.buf_constructed: 0
kstat.unix.kmem_cache.zfs_znode_cache.buf_avail: 0
kstat.unix.kmem_cache.zfs_znode_cache.buf_inuse: 0
kstat.unix.kmem_cache.zfs_znode_cache.buf_total: 0
kstat.unix.kmem_cache.zfs_znode_cache.buf_max: 0
kstat.unix.kmem_cache.zfs_znode_cache.slab_create: 0
kstat.unix.kmem_cache.zfs_znode_cache.slab_destroy: 0
kstat.unix.kmem_cache.zfs_znode_cache.vmem_source: 29
kstat.unix.kmem_cache.zfs_znode_cache.hash_size: 64
kstat.unix.kmem_cache.zfs_znode_cache.hash_lookup_depth: 0
kstat.unix.kmem_cache.zfs_znode_cache.hash_rescale: 0
kstat.unix.kmem_cache.zfs_znode_cache.full_magazines: 0
kstat.unix.kmem_cache.zfs_znode_cache.empty_magazines: 0
kstat.unix.kmem_cache.zfs_znode_cache.magazine_size: 3
kstat.unix.kmem_cache.zfs_znode_cache.reap: 0
kstat.unix.kmem_cache.zfs_znode_cache.defrag: 0
kstat.unix.kmem_cache.zfs_znode_cache.scan: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_callbacks: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_yes: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_no: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_later: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_dont_need: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_dont_know: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_hunt_found: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_slabs_freed: 0
kstat.unix.kmem_cache.zfs_znode_cache.move_reclaimable: 0
kstat.unix.kmem_cache.zfs_znode_cache.no_vba_success: 0
kstat.unix.kmem_cache.zfs_znode_cache.no_vba_fail: 0
kstat.unix.kmem_cache.zfs_znode_cache.arc_no_grow_set: 0
kstat.unix.kmem_cache.zfs_znode_cache.arc_no_grow: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.buf_size: 80
kstat.unix.kmem_cache.zfs_znode_hold_cache.align: 8
kstat.unix.kmem_cache.zfs_znode_hold_cache.chunk_size: 80
kstat.unix.kmem_cache.zfs_znode_hold_cache.slab_size: 4096
kstat.unix.kmem_cache.zfs_znode_hold_cache.alloc: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.alloc_fail: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.free: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.depot_alloc: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.depot_free: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.depot_contention: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.slab_alloc: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.slab_free: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.buf_constructed: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.buf_avail: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.buf_inuse: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.buf_total: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.buf_max: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.slab_create: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.slab_destroy: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.vmem_source: 29
kstat.unix.kmem_cache.zfs_znode_hold_cache.hash_size: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.hash_lookup_depth: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.hash_rescale: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.full_magazines: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.empty_magazines: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.magazine_size: 7
kstat.unix.kmem_cache.zfs_znode_hold_cache.reap: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.defrag: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.scan: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_callbacks: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_yes: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_no: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_later: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_dont_need: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_dont_know: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_hunt_found: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_slabs_freed: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.move_reclaimable: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.no_vba_success: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.no_vba_fail: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.arc_no_grow_set: 0
kstat.unix.kmem_cache.zfs_znode_hold_cache.arc_no_grow: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.buf_size: 1024
kstat.unix.kmem_cache.zfs_vnop_lookup.align: 8
kstat.unix.kmem_cache.zfs_vnop_lookup.chunk_size: 1024
kstat.unix.kmem_cache.zfs_vnop_lookup.slab_size: 4096
kstat.unix.kmem_cache.zfs_vnop_lookup.alloc: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.alloc_fail: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.free: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.depot_alloc: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.depot_free: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.depot_contention: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.slab_alloc: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.slab_free: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.buf_constructed: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.buf_avail: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.buf_inuse: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.buf_total: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.buf_max: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.slab_create: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.slab_destroy: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.vmem_source: 29
kstat.unix.kmem_cache.zfs_vnop_lookup.hash_size: 64
kstat.unix.kmem_cache.zfs_vnop_lookup.hash_lookup_depth: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.hash_rescale: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.full_magazines: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.empty_magazines: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.magazine_size: 3
kstat.unix.kmem_cache.zfs_vnop_lookup.reap: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.defrag: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.scan: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_callbacks: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_yes: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_no: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_later: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_dont_need: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_dont_know: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_hunt_found: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_slabs_freed: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.move_reclaimable: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.no_vba_success: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.no_vba_fail: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.arc_no_grow_set: 0
kstat.unix.kmem_cache.zfs_vnop_lookup.arc_no_grow: 0
kstat.zfs.darwin.ldi.handle_count: 0
kstat.zfs.darwin.ldi.handle_count_iokit: 0
kstat.zfs.darwin.ldi.handle_count_vnode: 0
kstat.zfs.darwin.ldi.handle_refs: 0
kstat.zfs.darwin.ldi.handle_open_rw: 0
kstat.zfs.darwin.ldi.handle_open_ro: 0
kstat.zfs.darwin.tunable.zfs_vdev_raidz_impl: cycle [fastest] original scalar sse2 ssse3 
kstat.zfs.darwin.tunable.spa_version: 5000
kstat.zfs.darwin.tunable.zpl_version: 5
kstat.zfs.darwin.tunable.active_vnodes: 0
kstat.zfs.darwin.tunable.reclaim_nodes: 0
kstat.zfs.darwin.tunable.ignore_negatives: 0
kstat.zfs.darwin.tunable.ignore_positives: 0
kstat.zfs.darwin.tunable.create_negatives: 1
kstat.zfs.darwin.tunable.force_formd_normalized: 0
kstat.zfs.darwin.tunable.skip_unlinked_drain: 0
kstat.zfs.darwin.tunable.use_system_sync: 0
kstat.zfs.darwin.tunable.do_iokit_sync: 1
kstat.zfs.darwin.tunable.zfs_expire_snapshot: 300
kstat.zfs.darwin.tunable.zfs_admin_snapshot: 1
kstat.zfs.darwin.tunable.zfs_auto_snapshot: 1
kstat.zfs.darwin.tunable.zfs_disable_spotlight: 0
kstat.zfs.darwin.tunable.zfs_disable_trashes: 0
kstat.zfs.darwin.tunable.icp_aes_impl: cycle [fastest] generic x86_64 aesni 
kstat.zfs.darwin.tunable.icp_gcm_impl: cycle [fastest] generic pclmulqdq 
kstat.zfs.darwin.tunable.icp_gcm_avx_chunk_size: 32736
kstat.zfs.darwin.tunable.zfs.compressed_arc_enabled: 1
kstat.zfs.darwin.tunable.zfs.btree_verify_intensity: 0
kstat.zfs.darwin.tunable.zfs.dbuf_state_index: 0
kstat.zfs.darwin.tunable.zfs.nopwrite_enabled: 1
kstat.zfs.darwin.tunable.zfs.per_txg_dirty_frees_percent: 30
kstat.zfs.darwin.tunable.zfs.dmu_offset_next_sync: 1
kstat.zfs.darwin.tunable.zfs.dmu_prefetch_max: 134217728
kstat.zfs.darwin.tunable.zfs.dmu_object_alloc_chunk_shift: 7
kstat.zfs.darwin.tunable.zfs.pd_bytes_max: 52428800
kstat.zfs.darwin.tunable.zfs.traverse_indirect_prefetch_limit: 32
kstat.zfs.darwin.tunable.zfs.send_holes_without_birth_time: 1
kstat.zfs.darwin.tunable.zfs.default_bs: 9
kstat.zfs.darwin.tunable.zfs.default_ibs: 17
kstat.zfs.darwin.tunable.zfs.disable_ivset_guid_check: 0
kstat.zfs.darwin.tunable.zfs.max_recordsize: 16777216
kstat.zfs.darwin.tunable.zfs.allow_redacted_dataset_mount: 0
kstat.zfs.darwin.tunable.zfs.snapshot_history_enabled: 1
kstat.zfs.darwin.tunable.zfs.zvol_enforce_quotas: 1
kstat.zfs.darwin.tunable.zfs.dirty_data_max_percent: 10
kstat.zfs.darwin.tunable.zfs.dirty_data_max_max_percent: 25
kstat.zfs.darwin.tunable.zfs.delay_min_dirty_percent: 60
kstat.zfs.darwin.tunable.zfs.dirty_data_max: 805306368
kstat.zfs.darwin.tunable.zfs.wrlog_data_max: 1610612736
kstat.zfs.darwin.tunable.zfs.dirty_data_max_max: 2013265920
kstat.zfs.darwin.tunable.zfs.dirty_data_sync_percent: 20
kstat.zfs.darwin.tunable.zfs.delay_scale: 500000
kstat.zfs.darwin.tunable.zfs.sync_taskq_batch_pct: 75
kstat.zfs.darwin.tunable.zfs.scan_vdev_limit: 16777216
kstat.zfs.darwin.tunable.zfs.scrub_min_time_ms: 1000
kstat.zfs.darwin.tunable.zfs.obsolete_min_time_ms: 500
kstat.zfs.darwin.tunable.zfs.free_min_time_ms: 1000
kstat.zfs.darwin.tunable.zfs.resilver_min_time_ms: 3000
kstat.zfs.darwin.tunable.zfs.scan_suspend_progress: 0
kstat.zfs.darwin.tunable.zfs.no_scrub_io: 0
kstat.zfs.darwin.tunable.zfs.no_scrub_prefetch: 0
kstat.zfs.darwin.tunable.zfs.async_block_max_blocks: -1
kstat.zfs.darwin.tunable.zfs.max_async_dedup_frees: 100000
kstat.zfs.darwin.tunable.zfs.free_bpobj_enabled: 1
kstat.zfs.darwin.tunable.zfs.scan_blkstats: 0
kstat.zfs.darwin.tunable.zfs.scan_mem_lim_fact: 20
kstat.zfs.darwin.tunable.zfs.scan_issue_strategy: 0
kstat.zfs.darwin.tunable.zfs.scan_legacy: 0
kstat.zfs.darwin.tunable.zfs.scan_checkpoint_intval: 7200
kstat.zfs.darwin.tunable.zfs.scan_max_ext_gap: 2097152
kstat.zfs.darwin.tunable.zfs.scan_mem_lim_soft_fact: 20
kstat.zfs.darwin.tunable.zfs.scan_strict_mem_lim: 0
kstat.zfs.darwin.tunable.zfs.scan_fill_weight: 3
kstat.zfs.darwin.tunable.zfs.scan_report_txgs: 0
kstat.zfs.darwin.tunable.zfs.resilver_disable_defer: 0
kstat.zfs.darwin.tunable.zfs.multilist_num_sublists: 0
kstat.zfs.darwin.tunable.zfs.max_missing_tvds: 0
kstat.zfs.darwin.tunable.zfs.autoimport_disable: 1
kstat.zfs.darwin.tunable.zfs.unflushed_max_mem_amt: 1073741824
kstat.zfs.darwin.tunable.zfs.unflushed_max_mem_ppm: 1000
kstat.zfs.darwin.tunable.zfs.unflushed_log_block_max: 131072
kstat.zfs.darwin.tunable.zfs.unflushed_log_block_min: 1000
kstat.zfs.darwin.tunable.zfs.unflushed_log_txg_max: 1000
kstat.zfs.darwin.tunable.zfs.unflushed_log_block_pct: 400
kstat.zfs.darwin.tunable.zfs.max_log_walking: 5
kstat.zfs.darwin.tunable.zfs.keep_log_spacemaps_at_export: 0
kstat.zfs.darwin.tunable.zfs.max_logsm_summary_length: 10
kstat.zfs.darwin.tunable.zfs.min_metaslabs_to_flush: 1
kstat.zfs.darwin.tunable.zfs.flags: 0
kstat.zfs.darwin.tunable.zfs.recover: 0
kstat.zfs.darwin.tunable.zfs.free_leak_on_eio: 0
kstat.zfs.darwin.tunable.zfs.ddt_data_is_special: 1
kstat.zfs.darwin.tunable.zfs.user_indirect_is_special: 1
kstat.zfs.darwin.tunable.zfs.special_class_metadata_reserve_pct: 25
kstat.zfs.darwin.tunable.zfs.read_history: 0
kstat.zfs.darwin.tunable.zfs.read_history_hits: 0
kstat.zfs.darwin.tunable.zfs.slow_io_events_per_second: 20
kstat.zfs.darwin.tunable.zfs.checksum_events_per_second: 20
kstat.zfs.darwin.tunable.zfs.scan_ignore_errors: 0
kstat.zfs.darwin.tunable.zfs.nocacheflush: 0
kstat.zfs.darwin.tunable.zfs.embedded_slog_min_ms: 64
kstat.zfs.darwin.tunable.zfs.initialize_value: -2401053088876216594
kstat.zfs.darwin.tunable.zfs.initialize_chunk_size: 1048576
kstat.zfs.darwin.tunable.zfs.rebuild_max_segment: 1048576
kstat.zfs.darwin.tunable.zfs.rebuild_vdev_limit: 67108864
kstat.zfs.darwin.tunable.zfs.rebuild_scrub_enabled: 1
kstat.zfs.darwin.tunable.zfs.zap_iterate_prefetch: 1
kstat.zfs.darwin.tunable.zfs.zap_micro_max_size: 131072
kstat.zfs.darwin.tunable.zfs.max_nvlist_src_size: 0
kstat.zfs.darwin.tunable.zfs.history_output_max: 1048576
kstat.zfs.darwin.tunable.zfs.immediate_write_sz: 32768
kstat.zfs.darwin.tunable.zfs.zil_saxattr: 1
kstat.zfs.darwin.tunable.zfs.commit_timeout_pct: 5
kstat.zfs.darwin.tunable.zfs.sync_pass_deferred_free: 2
kstat.zfs.darwin.tunable.zfs.sync_pass_dont_compress: 8
kstat.zfs.darwin.tunable.zfs.sync_pass_rewrite: 2
kstat.zfs.darwin.tunable.zfs.xattr_compat: 0
kstat.zfs.darwin.tunable.zfs.unlink_suspend_progress: 0
kstat.zfs.darwin.tunable.zfs.fletcher_4_impl: [fastest] scalar superscalar superscalar4 sse2 ssse3 
kstat.zfs.darwin.tunable.zfs.max_dataset_nesting: 50
kstat.zfs.darwin.tunable.zfs.blake3_impl: cycle [fastest] generic sse2 sse41 
kstat.zfs.darwin.tunable.zfs.sha256_impl: cycle [fastest] generic x64 ssse3 
kstat.zfs.darwin.tunable.zfs.sha512_impl: cycle [fastest] generic x64 
kstat.zfs.darwin.tunable.zfs.earlyabort_pass: 1
kstat.zfs.darwin.tunable.zfs.abort_size: 131072
kstat.zfs.darwin.tunable.zfs_arc.min: 0
kstat.zfs.darwin.tunable.zfs_arc.max: 0
kstat.zfs.darwin.tunable.zfs_arc.meta_balance: 500
kstat.zfs.darwin.tunable.zfs_arc.grow_retry: 0
kstat.zfs.darwin.tunable.zfs_arc.shrink_shift: 0
kstat.zfs.darwin.tunable.zfs_arc.pc_percent: 0
kstat.zfs.darwin.tunable.zfs_arc.average_blocksize: 8192
kstat.zfs.darwin.tunable.zfs_arc.min_prefetch_ms: 0
kstat.zfs.darwin.tunable.zfs_arc.min_prescient_prefetch_ms: 0
kstat.zfs.darwin.tunable.zfs_arc.lotsfree_percent: 10
kstat.zfs.darwin.tunable.zfs_arc.sys_free: 0
kstat.zfs.darwin.tunable.zfs_arc.dnode_limit: 0
kstat.zfs.darwin.tunable.zfs_arc.dnode_limit_percent: 10
kstat.zfs.darwin.tunable.zfs_arc.dnode_reduce_percent: 10
kstat.zfs.darwin.tunable.zfs_arc.eviction_pct: 200
kstat.zfs.darwin.tunable.zfs_arc.evict_batch_limit: 10
kstat.zfs.darwin.tunable.zfs_arc.prune_task_threads: 1
kstat.zfs.darwin.tunable.zfs_brt.prefetch: 1
kstat.zfs.darwin.tunable.zfs_condense.indirect_vdevs_enable: 1
kstat.zfs.darwin.tunable.zfs_condense.indirect_obsolete_pct: 25
kstat.zfs.darwin.tunable.zfs_condense.min_mapping_bytes: 131072
kstat.zfs.darwin.tunable.zfs_condense.max_obsolete_bytes: 1073741824
kstat.zfs.darwin.tunable.zfs_condense.indirect_commit_entry_delay_ms: 0
kstat.zfs.darwin.tunable.zfs_dbuf.metadata_cache_max_bytes: -1
kstat.zfs.darwin.tunable.zfs_dbuf.cache_shift: 5
kstat.zfs.darwin.tunable.zfs_dbuf.metadata_cache_shift: 6
kstat.zfs.darwin.tunable.zfs_dbuf.mutex_cache_shift: 0
kstat.zfs.darwin.tunable.zfs_dbuf_cache.max_bytes: -1
kstat.zfs.darwin.tunable.zfs_dbuf_cache.hiwater_pct: 10
kstat.zfs.darwin.tunable.zfs_dbuf_cache.lowater_pct: 10
kstat.zfs.darwin.tunable.zfs_deadman.checktime_ms: 60000
kstat.zfs.darwin.tunable.zfs_deadman.enabled: 1
kstat.zfs.darwin.tunable.zfs_deadman.failmode: wait
kstat.zfs.darwin.tunable.zfs_deadman.synctime_ms: 600000
kstat.zfs.darwin.tunable.zfs_deadman.ziotime_ms: 300000
kstat.zfs.darwin.tunable.zfs_dedup.prefetch: 0
kstat.zfs.darwin.tunable.zfs_l2arc.write_max: 8388608
kstat.zfs.darwin.tunable.zfs_l2arc.write_boost: 8388608
kstat.zfs.darwin.tunable.zfs_l2arc.headroom: 2
kstat.zfs.darwin.tunable.zfs_l2arc.headroom_boost: 200
kstat.zfs.darwin.tunable.zfs_l2arc.trim_ahead: 0
kstat.zfs.darwin.tunable.zfs_l2arc.feed_secs: 1
kstat.zfs.darwin.tunable.zfs_l2arc.feed_min_ms: 200
kstat.zfs.darwin.tunable.zfs_l2arc.noprefetch: 1
kstat.zfs.darwin.tunable.zfs_l2arc.feed_again: 1
kstat.zfs.darwin.tunable.zfs_l2arc.norw: 0
kstat.zfs.darwin.tunable.zfs_l2arc.meta_percent: 33
kstat.zfs.darwin.tunable.zfs_l2arc.rebuild_enabled: 1
kstat.zfs.darwin.tunable.zfs_l2arc.rebuild_blocks_min_l2size: 1073741824
kstat.zfs.darwin.tunable.zfs_l2arc.mfuonly: 0
kstat.zfs.darwin.tunable.zfs_l2arc.exclude_special: 0
kstat.zfs.darwin.tunable.zfs_livelist.max_entries: 500000
kstat.zfs.darwin.tunable.zfs_livelist.min_percent_shared: 75
kstat.zfs.darwin.tunable.zfs_livelist.condense.zthr_pause: 0
kstat.zfs.darwin.tunable.zfs_livelist.condense.sync_pause: 0
kstat.zfs.darwin.tunable.zfs_livelist.condense.sync_cancel: 0
kstat.zfs.darwin.tunable.zfs_livelist.condense.zthr_cancel: 0
kstat.zfs.darwin.tunable.zfs_livelist.condense.new_alloc: 0
kstat.zfs.darwin.tunable.zfs_lua.max_instrlimit: 100000000
kstat.zfs.darwin.tunable.zfs_lua.max_memlimit: 104857600
kstat.zfs.darwin.tunable.zfs_metaslab.aliquot: 1048576
kstat.zfs.darwin.tunable.zfs_metaslab.debug_load: 0
kstat.zfs.darwin.tunable.zfs_metaslab.debug_unload: 0
kstat.zfs.darwin.tunable.zfs_metaslab.preload_enabled: 1
kstat.zfs.darwin.tunable.zfs_metaslab.unload_delay: 32
kstat.zfs.darwin.tunable.zfs_metaslab.unload_delay_ms: 600000
kstat.zfs.darwin.tunable.zfs_metaslab.fragmentation_factor_enabled: 1
kstat.zfs.darwin.tunable.zfs_metaslab.fragmentation_threshold: 70
kstat.zfs.darwin.tunable.zfs_metaslab.lba_weighting_enabled: 1
kstat.zfs.darwin.tunable.zfs_metaslab.bias_enabled: 1
kstat.zfs.darwin.tunable.zfs_metaslab.segment_weight_enabled: 1
kstat.zfs.darwin.tunable.zfs_metaslab.switch_threshold: 2
kstat.zfs.darwin.tunable.zfs_metaslab.force_ganging: 16777217
kstat.zfs.darwin.tunable.zfs_metaslab.df_max_search: 16777216
kstat.zfs.darwin.tunable.zfs_metaslab.df_use_largest_segment: 0
kstat.zfs.darwin.tunable.zfs_metaslab.max_size_cache_sec: 3600
kstat.zfs.darwin.tunable.zfs_metaslab.mem_limit: 25
kstat.zfs.darwin.tunable.zfs_metaslab.try_hard_before_gang: 0
kstat.zfs.darwin.tunable.zfs_metaslab.find_max_tries: 100
kstat.zfs.darwin.tunable.zfs_mg.noalloc_threshold: 0
kstat.zfs.darwin.tunable.zfs_mg.fragmentation_threshold: 95
kstat.zfs.darwin.tunable.zfs_multihost.interval: 1000
kstat.zfs.darwin.tunable.zfs_multihost.fail_intervals: 10
kstat.zfs.darwin.tunable.zfs_multihost.import_intervals: 20
kstat.zfs.darwin.tunable.zfs_multihost.history: 0
kstat.zfs.darwin.tunable.zfs_prefetch.disable: 0
kstat.zfs.darwin.tunable.zfs_prefetch.max_streams: 8
kstat.zfs.darwin.tunable.zfs_prefetch.min_sec_reap: 1
kstat.zfs.darwin.tunable.zfs_prefetch.max_sec_reap: 2
kstat.zfs.darwin.tunable.zfs_prefetch.min_distance: 4194304
kstat.zfs.darwin.tunable.zfs_prefetch.max_distance: 67108864
kstat.zfs.darwin.tunable.zfs_prefetch.max_idistance: 67108864
kstat.zfs.darwin.tunable.zfs_prefetch.array_rd_sz: 1048576
kstat.zfs.darwin.tunable.zfs_reconstruct.indirect_combinations_max: 4096
kstat.zfs.darwin.tunable.zfs_recv.queue_length: 16777216
kstat.zfs.darwin.tunable.zfs_recv.queue_ff: 20
kstat.zfs.darwin.tunable.zfs_recv.write_batch_size: 1048576
kstat.zfs.darwin.tunable.zfs_recv.best_effort_corrective: 0
kstat.zfs.darwin.tunable.zfs_send.corrupt_data: 0
kstat.zfs.darwin.tunable.zfs_send.queue_length: 16777216
kstat.zfs.darwin.tunable.zfs_send.unmodified_spill_blocks: 1
kstat.zfs.darwin.tunable.zfs_send.no_prefetch_queue_length: 1048576
kstat.zfs.darwin.tunable.zfs_send.queue_ff: 20
kstat.zfs.darwin.tunable.zfs_send.no_prefetch_queue_ff: 20
kstat.zfs.darwin.tunable.zfs_send.override_estimate_recordsize: 0
kstat.zfs.darwin.tunable.zfs_spa.load_verify_shift: 4
kstat.zfs.darwin.tunable.zfs_spa.load_verify_metadata: 1
kstat.zfs.darwin.tunable.zfs_spa.load_verify_data: 1
kstat.zfs.darwin.tunable.zfs_spa.load_print_vdev_tree: 0
kstat.zfs.darwin.tunable.zfs_spa.discard_memory_limit: 16777216
kstat.zfs.darwin.tunable.zfs_spa.upgrade_errlog_limit: 0
kstat.zfs.darwin.tunable.zfs_spa.asize_inflation: 24
kstat.zfs.darwin.tunable.zfs_spa.slop_shift: 5
kstat.zfs.darwin.tunable.zfs_trim.extent_bytes_max: 134217728
kstat.zfs.darwin.tunable.zfs_trim.extent_bytes_min: 32768
kstat.zfs.darwin.tunable.zfs_trim.metaslab_skip: 0
kstat.zfs.darwin.tunable.zfs_trim.txg_batch: 32
kstat.zfs.darwin.tunable.zfs_trim.queue_limit: 10
kstat.zfs.darwin.tunable.zfs_txg.history: 100
kstat.zfs.darwin.tunable.zfs_txg.timeout: 5
kstat.zfs.darwin.tunable.zfs_vdev.default_ms_count: 200
kstat.zfs.darwin.tunable.zfs_vdev.default_ms_shift: 29
kstat.zfs.darwin.tunable.zfs_vdev.min_ms_count: 16
kstat.zfs.darwin.tunable.zfs_vdev.ms_count_limit: 131072
kstat.zfs.darwin.tunable.zfs_vdev.validate_skip: 0
kstat.zfs.darwin.tunable.zfs_vdev.min_auto_ashift: 9
kstat.zfs.darwin.tunable.zfs_vdev.max_auto_ashift: 14
kstat.zfs.darwin.tunable.zfs_vdev.cache_max: 16384
kstat.zfs.darwin.tunable.zfs_vdev.cache_size: 0
kstat.zfs.darwin.tunable.zfs_vdev.cache_bshift: 16
kstat.zfs.darwin.tunable.zfs_vdev.aggregation_limit: 1048576
kstat.zfs.darwin.tunable.zfs_vdev.aggregation_limit_non_rotating: 131072
kstat.zfs.darwin.tunable.zfs_vdev.aggregate_trim: 0
kstat.zfs.darwin.tunable.zfs_vdev.read_gap_limit: 32768
kstat.zfs.darwin.tunable.zfs_vdev.write_gap_limit: 4096
kstat.zfs.darwin.tunable.zfs_vdev.max_active: 1000
kstat.zfs.darwin.tunable.zfs_vdev.async_write_active_max_dirty_percent: 60
kstat.zfs.darwin.tunable.zfs_vdev.async_write_active_min_dirty_percent: 30
kstat.zfs.darwin.tunable.zfs_vdev.async_read_max_active: 3
kstat.zfs.darwin.tunable.zfs_vdev.async_read_min_active: 1
kstat.zfs.darwin.tunable.zfs_vdev.async_write_max_active: 10
kstat.zfs.darwin.tunable.zfs_vdev.async_write_min_active: 2
kstat.zfs.darwin.tunable.zfs_vdev.initializing_max_active: 1
kstat.zfs.darwin.tunable.zfs_vdev.initializing_min_active: 1
kstat.zfs.darwin.tunable.zfs_vdev.removal_max_active: 2
kstat.zfs.darwin.tunable.zfs_vdev.removal_min_active: 1
kstat.zfs.darwin.tunable.zfs_vdev.scrub_max_active: 3
kstat.zfs.darwin.tunable.zfs_vdev.scrub_min_active: 1
kstat.zfs.darwin.tunable.zfs_vdev.sync_read_max_active: 10
kstat.zfs.darwin.tunable.zfs_vdev.sync_read_min_active: 10
kstat.zfs.darwin.tunable.zfs_vdev.sync_write_max_active: 10
kstat.zfs.darwin.tunable.zfs_vdev.sync_write_min_active: 10
kstat.zfs.darwin.tunable.zfs_vdev.trim_max_active: 2
kstat.zfs.darwin.tunable.zfs_vdev.trim_min_active: 1
kstat.zfs.darwin.tunable.zfs_vdev.rebuild_max_active: 3
kstat.zfs.darwin.tunable.zfs_vdev.rebuild_min_active: 1
kstat.zfs.darwin.tunable.zfs_vdev.nia_credit: 5
kstat.zfs.darwin.tunable.zfs_vdev.nia_delay: 5
kstat.zfs.darwin.tunable.zfs_vdev.queue_depth_pct: 1000
kstat.zfs.darwin.tunable.zfs_vdev.removal_ignore_errors: 0
kstat.zfs.darwin.tunable.zfs_vdev.remove_max_segment: 16777216
kstat.zfs.darwin.tunable.zfs_vdev.removal_max_span: 32768
kstat.zfs.darwin.tunable.zfs_vdev.removal_suspend_progress: 0
kstat.zfs.darwin.tunable.zfs_vdev.file.close_on_unmount: 1
kstat.zfs.darwin.tunable.zfs_vdev.file.logical_ashift: 9
kstat.zfs.darwin.tunable.zfs_vdev.file.physical_ashift: 9
kstat.zfs.darwin.tunable.zfs_vdev.mirror.rotating_inc: 0
kstat.zfs.darwin.tunable.zfs_vdev.mirror.rotating_seek_inc: 5
kstat.zfs.darwin.tunable.zfs_vdev.mirror.rotating_seek_offset: 1048576
kstat.zfs.darwin.tunable.zfs_vdev.mirror.non_rotating_inc: 0
kstat.zfs.darwin.tunable.zfs_vdev.mirror.non_rotating_seek_inc: 1
kstat.zfs.darwin.tunable.zfs_vnops.read_chunk_size: 1048576
kstat.zfs.darwin.tunable.zfs_zevent.len_max: 512
kstat.zfs.darwin.tunable.zfs_zevent.retain_max: 2000
kstat.zfs.darwin.tunable.zfs_zevent.retain_expire_secs: 900
kstat.zfs.darwin.tunable.zfs_zil.clean_taskq_nthr_pct: 100
kstat.zfs.darwin.tunable.zfs_zil.clean_taskq_minalloc: 1024
kstat.zfs.darwin.tunable.zfs_zil.clean_taskq_maxalloc: 1048576
kstat.zfs.darwin.tunable.zfs_zil.min_commit_timeout: 5000
kstat.zfs.darwin.tunable.zfs_zil.replay_disable: 0
kstat.zfs.darwin.tunable.zfs_zil.nocacheflush: 0
kstat.zfs.darwin.tunable.zfs_zil.slog_bulk: 786432
kstat.zfs.darwin.tunable.zfs_zil.maxblocksize: 131072
kstat.zfs.darwin.tunable.zfs_zio.taskq_batch_pct: 80
kstat.zfs.darwin.tunable.zfs_zio.taskq_batch_tpq: 0
kstat.zfs.darwin.tunable.zfs_zio.slow_io_ms: 30000
kstat.zfs.darwin.tunable.zfs_zio.requeue_io_start_cut_in_line: 1
kstat.zfs.darwin.tunable.zfs_zio.dva_throttle_enabled: 1
kstat.zfs.darwin.tunable.zfs_zio.deadman_log_all: 0
kstat.zfs.misc.fm.erpt-dropped: 0
kstat.zfs.misc.fm.erpt-set-failed: 0
kstat.zfs.misc.fm.fmri-set-failed: 0
kstat.zfs.misc.fm.payload-set-failed: 0
kstat.zfs.misc.fm.erpt-duplicates: 0
kstat.zfs.misc.metaslab_stats.trace_over_limit: 0
kstat.zfs.misc.metaslab_stats.reload_tree: 716
kstat.zfs.misc.metaslab_stats.too_many_tries: 0
kstat.zfs.misc.metaslab_stats.try_hard: 0
kstat.zfs.misc.brtstats.addref_entry_in_memory: 0
kstat.zfs.misc.brtstats.addref_entry_not_on_disk: 0
kstat.zfs.misc.brtstats.addref_entry_on_disk: 0
kstat.zfs.misc.brtstats.addref_entry_read_lost_race: 0
kstat.zfs.misc.brtstats.decref_entry_in_memory: 0
kstat.zfs.misc.brtstats.decref_entry_loaded_from_disk: 0
kstat.zfs.misc.brtstats.decref_entry_not_in_memory: 0
kstat.zfs.misc.brtstats.decref_entry_not_on_disk: 0
kstat.zfs.misc.brtstats.decref_entry_read_lost_race: 0
kstat.zfs.misc.brtstats.decref_entry_still_referenced: 0
kstat.zfs.misc.brtstats.decref_free_data_later: 0
kstat.zfs.misc.brtstats.decref_free_data_now: 0
kstat.zfs.misc.brtstats.decref_no_entry: 0
kstat.zfs.misc.abdstats.struct_size: 0
kstat.zfs.misc.abdstats.scatter_cnt: 0
kstat.zfs.misc.abdstats.scatter_data_size: 0
kstat.zfs.misc.abdstats.scatter_chunk_waste: 0
kstat.zfs.misc.abdstats.linear_cnt: 0
kstat.zfs.misc.abdstats.linear_data_size: 0
kstat.zfs.misc.dbgmsg.verbose: 0
kstat.zfs.misc.dnodestats.dnode_hold_dbuf_hold: 0
kstat.zfs.misc.dnodestats.dnode_hold_dbuf_read: 0
kstat.zfs.misc.dnodestats.dnode_hold_alloc_hits: 229704
kstat.zfs.misc.dnodestats.dnode_hold_alloc_misses: 0
kstat.zfs.misc.dnodestats.dnode_hold_alloc_interior: 0
kstat.zfs.misc.dnodestats.dnode_hold_alloc_lock_retry: 0
kstat.zfs.misc.dnodestats.dnode_hold_alloc_lock_misses: 0
kstat.zfs.misc.dnodestats.dnode_hold_alloc_type_none: 0
kstat.zfs.misc.dnodestats.dnode_hold_free_hits: 111
kstat.zfs.misc.dnodestats.dnode_hold_free_misses: 19
kstat.zfs.misc.dnodestats.dnode_hold_free_lock_misses: 0
kstat.zfs.misc.dnodestats.dnode_hold_free_lock_retry: 0
kstat.zfs.misc.dnodestats.dnode_hold_free_overflow: 0
kstat.zfs.misc.dnodestats.dnode_hold_free_refcount: 0
kstat.zfs.misc.dnodestats.dnode_free_interior_lock_retry: 0
kstat.zfs.misc.dnodestats.dnode_allocate: 111
kstat.zfs.misc.dnodestats.dnode_reallocate: 0
kstat.zfs.misc.dnodestats.dnode_buf_evict: 15
kstat.zfs.misc.dnodestats.dnode_alloc_next_chunk: 4
kstat.zfs.misc.dnodestats.dnode_alloc_race: 0
kstat.zfs.misc.dnodestats.dnode_alloc_next_block: 0
kstat.zfs.misc.dnodestats.dnode_move_invalid: 0
kstat.zfs.misc.dnodestats.dnode_move_recheck1: 0
kstat.zfs.misc.dnodestats.dnode_move_recheck2: 0
kstat.zfs.misc.dnodestats.dnode_move_special: 0
kstat.zfs.misc.dnodestats.dnode_move_handle: 0
kstat.zfs.misc.dnodestats.dnode_move_rwlock: 0
kstat.zfs.misc.dnodestats.dnode_move_active: 0
kstat.zfs.misc.zfetchstats.hits: 5
kstat.zfs.misc.zfetchstats.misses: 4
kstat.zfs.misc.zfetchstats.max_streams: 0
kstat.zfs.misc.zfetchstats.io_issued: 1
kstat.zfs.misc.zfetchstats.io_active: 0
kstat.zfs.misc.dmu_tx.dmu_tx_assigned: 7
kstat.zfs.misc.dmu_tx.dmu_tx_delay: 0
kstat.zfs.misc.dmu_tx.dmu_tx_error: 0
kstat.zfs.misc.dmu_tx.dmu_tx_suspended: 0
kstat.zfs.misc.dmu_tx.dmu_tx_group: 0
kstat.zfs.misc.dmu_tx.dmu_tx_memory_reserve: 0
kstat.zfs.misc.dmu_tx.dmu_tx_memory_reclaim: 0
kstat.zfs.misc.dmu_tx.dmu_tx_dirty_throttle: 0
kstat.zfs.misc.dmu_tx.dmu_tx_dirty_delay: 0
kstat.zfs.misc.dmu_tx.dmu_tx_dirty_over_max: 0
kstat.zfs.misc.dmu_tx.dmu_tx_dirty_frees_delay: 0
kstat.zfs.misc.dmu_tx.dmu_tx_wrlog_delay: 0
kstat.zfs.misc.dmu_tx.dmu_tx_quota: 0
kstat.zfs.misc.arcstats.hits: 858505
kstat.zfs.misc.arcstats.iohits: 79
kstat.zfs.misc.arcstats.misses: 5100
kstat.zfs.misc.arcstats.demand_data_hits: 0
kstat.zfs.misc.arcstats.demand_data_iohits: 0
kstat.zfs.misc.arcstats.demand_data_misses: 0
kstat.zfs.misc.arcstats.demand_metadata_hits: 858468
kstat.zfs.misc.arcstats.demand_metadata_iohits: 74
kstat.zfs.misc.arcstats.demand_metadata_misses: 5041
kstat.zfs.misc.arcstats.prefetch_data_hits: 0
kstat.zfs.misc.arcstats.prefetch_data_iohits: 0
kstat.zfs.misc.arcstats.prefetch_data_misses: 0
kstat.zfs.misc.arcstats.prefetch_metadata_hits: 37
kstat.zfs.misc.arcstats.prefetch_metadata_iohits: 5
kstat.zfs.misc.arcstats.prefetch_metadata_misses: 59
kstat.zfs.misc.arcstats.mru_hits: 858505
kstat.zfs.misc.arcstats.mru_ghost_hits: 0
kstat.zfs.misc.arcstats.mfu_hits: 0
kstat.zfs.misc.arcstats.mfu_ghost_hits: 0
kstat.zfs.misc.arcstats.uncached_hits: 0
kstat.zfs.misc.arcstats.deleted: 35
kstat.zfs.misc.arcstats.mutex_miss: 0
kstat.zfs.misc.arcstats.access_skip: 0
kstat.zfs.misc.arcstats.evict_skip: 0
kstat.zfs.misc.arcstats.evict_not_enough: 0
kstat.zfs.misc.arcstats.evict_l2_cached: 0
kstat.zfs.misc.arcstats.evict_l2_eligible: 720384
kstat.zfs.misc.arcstats.evict_l2_eligible_mfu: 0
kstat.zfs.misc.arcstats.evict_l2_eligible_mru: 720384
kstat.zfs.misc.arcstats.evict_l2_ineligible: 4096
kstat.zfs.misc.arcstats.evict_l2_skip: 0
kstat.zfs.misc.arcstats.hash_elements: 5065
kstat.zfs.misc.arcstats.hash_elements_max: 5065
kstat.zfs.misc.arcstats.hash_collisions: 26
kstat.zfs.misc.arcstats.hash_chains: 15
kstat.zfs.misc.arcstats.hash_chain_max: 1
kstat.zfs.misc.arcstats.meta: 1073741824
kstat.zfs.misc.arcstats.pd: 2147483648
kstat.zfs.misc.arcstats.pm: 2147483648
kstat.zfs.misc.arcstats.c: 251658240
kstat.zfs.misc.arcstats.c_min: 251658240
kstat.zfs.misc.arcstats.c_max: 8053063680
kstat.zfs.misc.arcstats.size: 36437416
kstat.zfs.misc.arcstats.compressed_size: 23457280
kstat.zfs.misc.arcstats.uncompressed_size: 30968832
kstat.zfs.misc.arcstats.overhead_size: 11017216
kstat.zfs.misc.arcstats.hdr_size: 1077288
kstat.zfs.misc.arcstats.data_size: 0
kstat.zfs.misc.arcstats.metadata_size: 34474496
kstat.zfs.misc.arcstats.dbuf_size: 515280
kstat.zfs.misc.arcstats.dnode_size: 307632
kstat.zfs.misc.arcstats.bonus_size: 62720
kstat.zfs.misc.arcstats.anon_size: 0
kstat.zfs.misc.arcstats.anon_data: 0
kstat.zfs.misc.arcstats.anon_metadata: 0
kstat.zfs.misc.arcstats.anon_evictable_data: 0
kstat.zfs.misc.arcstats.anon_evictable_metadata: 0
kstat.zfs.misc.arcstats.mru_size: 34474496
kstat.zfs.misc.arcstats.mru_data: 0
kstat.zfs.misc.arcstats.mru_metadata: 34474496
kstat.zfs.misc.arcstats.mru_evictable_data: 0
kstat.zfs.misc.arcstats.mru_evictable_metadata: 17063936
kstat.zfs.misc.arcstats.mru_ghost_size: 0
kstat.zfs.misc.arcstats.mru_ghost_data: 0
kstat.zfs.misc.arcstats.mru_ghost_metadata: 0
kstat.zfs.misc.arcstats.mru_ghost_evictable_data: 0
kstat.zfs.misc.arcstats.mru_ghost_evictable_metadata: 0
kstat.zfs.misc.arcstats.mfu_size: 0
kstat.zfs.misc.arcstats.mfu_data: 0
kstat.zfs.misc.arcstats.mfu_metadata: 0
kstat.zfs.misc.arcstats.mfu_evictable_data: 0
kstat.zfs.misc.arcstats.mfu_evictable_metadata: 0
kstat.zfs.misc.arcstats.mfu_ghost_size: 0
kstat.zfs.misc.arcstats.mfu_ghost_data: 0
kstat.zfs.misc.arcstats.mfu_ghost_metadata: 0
kstat.zfs.misc.arcstats.mfu_ghost_evictable_data: 0
kstat.zfs.misc.arcstats.mfu_ghost_evictable_metadata: 0
kstat.zfs.misc.arcstats.uncached_size: 0
kstat.zfs.misc.arcstats.uncached_data: 0
kstat.zfs.misc.arcstats.uncached_metadata: 0
kstat.zfs.misc.arcstats.uncached_evictable_data: 0
kstat.zfs.misc.arcstats.uncached_evictable_metadata: 0
kstat.zfs.misc.arcstats.l2_hits: 0
kstat.zfs.misc.arcstats.l2_misses: 0
kstat.zfs.misc.arcstats.l2_prefetch_asize: 0
kstat.zfs.misc.arcstats.l2_mru_asize: 0
kstat.zfs.misc.arcstats.l2_mfu_asize: 0
kstat.zfs.misc.arcstats.l2_bufc_data_asize: 0
kstat.zfs.misc.arcstats.l2_bufc_metadata_asize: 0
kstat.zfs.misc.arcstats.l2_feeds: 0
kstat.zfs.misc.arcstats.l2_rw_clash: 0
kstat.zfs.misc.arcstats.l2_read_bytes: 0
kstat.zfs.misc.arcstats.l2_write_bytes: 0
kstat.zfs.misc.arcstats.l2_writes_sent: 0
kstat.zfs.misc.arcstats.l2_writes_done: 0
kstat.zfs.misc.arcstats.l2_writes_error: 0
kstat.zfs.misc.arcstats.l2_writes_lock_retry: 0
kstat.zfs.misc.arcstats.l2_evict_lock_retry: 0
kstat.zfs.misc.arcstats.l2_evict_reading: 0
kstat.zfs.misc.arcstats.l2_evict_l1cached: 0
kstat.zfs.misc.arcstats.l2_free_on_write: 0
kstat.zfs.misc.arcstats.l2_abort_lowmem: 0
kstat.zfs.misc.arcstats.l2_cksum_bad: 0
kstat.zfs.misc.arcstats.l2_io_error: 0
kstat.zfs.misc.arcstats.l2_size: 0
kstat.zfs.misc.arcstats.l2_asize: 0
kstat.zfs.misc.arcstats.l2_hdr_size: 0
kstat.zfs.misc.arcstats.l2_log_blk_writes: 0
kstat.zfs.misc.arcstats.l2_log_blk_avg_asize: 0
kstat.zfs.misc.arcstats.l2_log_blk_asize: 0
kstat.zfs.misc.arcstats.l2_log_blk_count: 0
kstat.zfs.misc.arcstats.l2_data_to_meta_ratio: 0
kstat.zfs.misc.arcstats.l2_rebuild_success: 0
kstat.zfs.misc.arcstats.l2_rebuild_unsupported: 0
kstat.zfs.misc.arcstats.l2_rebuild_io_errors: 0
kstat.zfs.misc.arcstats.l2_rebuild_dh_errors: 0
kstat.zfs.misc.arcstats.l2_rebuild_cksum_lb_errors: 0
kstat.zfs.misc.arcstats.l2_rebuild_lowmem: 0
kstat.zfs.misc.arcstats.l2_rebuild_size: 0
kstat.zfs.misc.arcstats.l2_rebuild_asize: 0
kstat.zfs.misc.arcstats.l2_rebuild_bufs: 0
kstat.zfs.misc.arcstats.l2_rebuild_bufs_precached: 0
kstat.zfs.misc.arcstats.l2_rebuild_log_blks: 0
kstat.zfs.misc.arcstats.memory_throttle_count: 0
kstat.zfs.misc.arcstats.memory_direct_count: 0
kstat.zfs.misc.arcstats.memory_indirect_count: 0
kstat.zfs.misc.arcstats.memory_all_bytes: 8053063680
kstat.zfs.misc.arcstats.memory_free_bytes: 8321503232
kstat.zfs.misc.arcstats.memory_available_bytes: 8258588672
kstat.zfs.misc.arcstats.arc_no_grow: 0
kstat.zfs.misc.arcstats.arc_tempreserve: 0
kstat.zfs.misc.arcstats.arc_loaned_bytes: 0
kstat.zfs.misc.arcstats.arc_prune: 0
kstat.zfs.misc.arcstats.arc_meta_used: 36437416
kstat.zfs.misc.arcstats.arc_dnode_limit: 805306368
kstat.zfs.misc.arcstats.async_upgrade_sync: 10
kstat.zfs.misc.arcstats.predictive_prefetch: 65
kstat.zfs.misc.arcstats.demand_hit_predictive_prefetch: 23
kstat.zfs.misc.arcstats.demand_iohit_predictive_prefetch: 32
kstat.zfs.misc.arcstats.prescient_prefetch: 36
kstat.zfs.misc.arcstats.demand_hit_prescient_prefetch: 28
kstat.zfs.misc.arcstats.demand_iohit_prescient_prefetch: 7
kstat.zfs.misc.arcstats.arc_need_free: 0
kstat.zfs.misc.arcstats.arc_sys_free: 62914560
kstat.zfs.misc.arcstats.arc_raw_size: 0
kstat.zfs.misc.arcstats.cached_only_in_progress: 0
kstat.zfs.misc.arcstats.abd_chunk_waste_size: 0
kstat.zfs.misc.dbufs.verbose: 0
kstat.zfs.misc.dbufstats.cache_count: 1144
kstat.zfs.misc.dbufstats.cache_size_bytes: 6971392
kstat.zfs.misc.dbufstats.cache_size_bytes_max: 7770112
kstat.zfs.misc.dbufstats.cache_target_bytes: 7864320
kstat.zfs.misc.dbufstats.cache_lowater_bytes: 7077888
kstat.zfs.misc.dbufstats.cache_hiwater_bytes: 8650752
kstat.zfs.misc.dbufstats.cache_total_evicts: 3580
kstat.zfs.misc.dbufstats.cache_level_0: 1143
kstat.zfs.misc.dbufstats.cache_level_1: 1
kstat.zfs.misc.dbufstats.cache_level_2: 0
kstat.zfs.misc.dbufstats.cache_level_3: 0
kstat.zfs.misc.dbufstats.cache_level_4: 0
kstat.zfs.misc.dbufstats.cache_level_5: 0
kstat.zfs.misc.dbufstats.cache_level_6: 0
kstat.zfs.misc.dbufstats.cache_level_7: 0
kstat.zfs.misc.dbufstats.cache_level_8: 0
kstat.zfs.misc.dbufstats.cache_level_9: 0
kstat.zfs.misc.dbufstats.cache_level_10: 0
kstat.zfs.misc.dbufstats.cache_level_11: 0
kstat.zfs.misc.dbufstats.cache_level_0_bytes: 6967296
kstat.zfs.misc.dbufstats.cache_level_1_bytes: 4096
kstat.zfs.misc.dbufstats.cache_level_2_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_3_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_4_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_5_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_6_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_7_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_8_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_9_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_10_bytes: 0
kstat.zfs.misc.dbufstats.cache_level_11_bytes: 0
kstat.zfs.misc.dbufstats.hash_hits: 865878
kstat.zfs.misc.dbufstats.hash_misses: 12163
kstat.zfs.misc.dbufstats.hash_collisions: 47
kstat.zfs.misc.dbufstats.hash_elements: 1499
kstat.zfs.misc.dbufstats.hash_elements_max: 1814
kstat.zfs.misc.dbufstats.hash_chains: 9
kstat.zfs.misc.dbufstats.hash_chain_max: 1
kstat.zfs.misc.dbufstats.hash_insert_race: 9
kstat.zfs.misc.dbufstats.hash_table_count: 131072
kstat.zfs.misc.dbufstats.hash_mutex_count: 8192
kstat.zfs.misc.dbufstats.metadata_cache_count: 79
kstat.zfs.misc.dbufstats.metadata_cache_size_bytes: 912384
kstat.zfs.misc.dbufstats.metadata_cache_size_bytes_max: 912384
kstat.zfs.misc.dbufstats.metadata_cache_overflow: 0
kstat.zfs.misc.zil.zil_commit_count: 0
kstat.zfs.misc.zil.zil_commit_writer_count: 0
kstat.zfs.misc.zil.zil_itx_count: 0
kstat.zfs.misc.zil.zil_itx_indirect_count: 0
kstat.zfs.misc.zil.zil_itx_indirect_bytes: 0
kstat.zfs.misc.zil.zil_itx_copied_count: 0
kstat.zfs.misc.zil.zil_itx_copied_bytes: 0
kstat.zfs.misc.zil.zil_itx_needcopy_count: 0
kstat.zfs.misc.zil.zil_itx_needcopy_bytes: 0
kstat.zfs.misc.zil.zil_itx_metaslab_normal_count: 0
kstat.zfs.misc.zil.zil_itx_metaslab_normal_bytes: 0
kstat.zfs.misc.zil.zil_itx_metaslab_slog_count: 0
kstat.zfs.misc.zil.zil_itx_metaslab_slog_bytes: 0
kstat.zfs.misc.vdev_cache_stats.delegations: 0
kstat.zfs.misc.vdev_cache_stats.hits: 0
kstat.zfs.misc.vdev_cache_stats.misses: 0
kstat.zfs.misc.vdev_mirror_stats.rotating_linear: 0
kstat.zfs.misc.vdev_mirror_stats.rotating_offset: 0
kstat.zfs.misc.vdev_mirror_stats.rotating_seek: 0
kstat.zfs.misc.vdev_mirror_stats.non_rotating_linear: 2
kstat.zfs.misc.vdev_mirror_stats.non_rotating_seek: 10201
kstat.zfs.misc.vdev_mirror_stats.preferred_found: 144
kstat.zfs.misc.vdev_mirror_stats.preferred_not_found: 10071
kstat.zfs.misc.vdev_raidz_bench.verbose: 0
kstat.zfs.misc.chksum_bench.verbose: 0
kstat.zfs.misc.import_progress.verbose: 0
kstat.zfs.misc.fletcher_4_bench.verbose: 0
kstat.zfs.misc.zstd.alloc_fail: 0
kstat.zfs.misc.zstd.alloc_fallback: 0
kstat.zfs.misc.zstd.compress_alloc_fail: 0
kstat.zfs.misc.zstd.decompress_alloc_fail: 0
kstat.zfs.misc.zstd.compress_level_invalid: 0
kstat.zfs.misc.zstd.decompress_level_invalid: 0
kstat.zfs.misc.zstd.decompress_header_invalid: 0
kstat.zfs.misc.zstd.compress_failed: 0
kstat.zfs.misc.zstd.decompress_failed: 0
kstat.zfs.misc.zstd.lz4pass_allowed: 0
kstat.zfs.misc.zstd.lz4pass_rejected: 0
kstat.zfs.misc.zstd.zstdpass_allowed: 0
kstat.zfs.misc.zstd.zstdpass_rejected: 0
kstat.zfs.misc.zstd.passignored: 0
kstat.zfs.misc.zstd.passignored_size: 0
kstat.zfs.misc.zstd.buffers: 0
kstat.zfs.misc.zstd.size: 0
kstat.zfs.pool.reads.verbose: 0
kstat.zfs.pool.txgs.verbose: 0
kstat.zfs.pool.multihost.verbose: 0
kstat.zfs/pool.misc.dmu_tx_assign.1 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.2 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.4 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.8 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.16 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.32 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.64 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.128 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.256 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.512 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.1024 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.2048 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.4096 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.8192 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.16384 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.32768 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.65536 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.131072 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.262144 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.524288 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.1048576 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.2097152 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.4194304 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.8388608 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.16777216 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.33554432 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.67108864 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.134217728 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.268435456 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.536870912 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.1073741824 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.2147483648 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.4294967296 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.8589934592 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.17179869184 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.34359738368 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.68719476736 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.137438953472 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.274877906944 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.549755813888 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.1099511627776 ns: 0
kstat.zfs/pool.misc.dmu_tx_assign.2199023255552 ns: 0
kstat.zfs/pool.misc.state.verbose: 0
kstat.zfs/pool.misc.guid.verbose: 0
kstat.zfs/pool.misc.iostats.trim_extents_written: 0
kstat.zfs/pool.misc.iostats.trim_bytes_written: 0
kstat.zfs/pool.misc.iostats.trim_extents_skipped: 0
kstat.zfs/pool.misc.iostats.trim_bytes_skipped: 0
kstat.zfs/pool.misc.iostats.trim_extents_failed: 0
kstat.zfs/pool.misc.iostats.trim_bytes_failed: 0
kstat.zfs/pool.misc.iostats.autotrim_extents_written: 0
kstat.zfs/pool.misc.iostats.autotrim_bytes_written: 0
kstat.zfs/pool.misc.iostats.autotrim_extents_skipped: 0
kstat.zfs/pool.misc.iostats.autotrim_bytes_skipped: 0
kstat.zfs/pool.misc.iostats.autotrim_extents_failed: 0
kstat.zfs/pool.misc.iostats.autotrim_bytes_failed: 0
kstat.zfs/pool.misc.iostats.simple_trim_extents_written: 0
kstat.zfs/pool.misc.iostats.simple_trim_bytes_written: 0
kstat.zfs/pool.misc.iostats.simple_trim_extents_skipped: 0
kstat.zfs/pool.misc.iostats.simple_trim_bytes_skipped: 0
kstat.zfs/pool.misc.iostats.simple_trim_extents_failed: 0
kstat.zfs/pool.misc.iostats.simple_trim_bytes_failed: 0

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Bah hmm, run log stream --style compact to see allllll logs being generated. Hit ^C to stop it, it will be verbose. Should give clues to what launchctl is doing.

Memory usage looks ok.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Nothing on ZFS in log stream --style compact ...

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

we are looking for launchd output tho, to see why its so busy

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Nothing on launchd either ...

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

To see just launchd:
log stream --style compact --predicate 'sender == "launchd"'

to see last 10 mins
log show --last 10m --style compact --predicate 'sender == "launchd"'

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

One entry that appears every second:

2023-04-07 04:38:11.151 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 84 U : 62 Type : 1 IV: 0) with key Internal Failure
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 85 U : d0 Type : 2 IV: 1) with key Power Source State
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 85 U : 44 Type : 2 IV: 1) with key Is Charging
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 85 U : 45 Type : 2 IV: 0) with key Is Charging
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 84 U : 62 Type : 2 IV: 0) with key Internal Failure
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 85 U : 66 Type : 1 IV: 100) with key Current Capacity
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 85 U : 68 Type : 1 IV: 2156) with key Time to Empty
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 84 U : 5a Type : 257 IV: 2) with key Enable Audible Alarm
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 84 U : 62 Type : 257 IV: 0) with key Internal Failure
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Skipping duplicate element (UP : 85 U : 45 Type : 257 IV: 0) with key Is Charging
2023-04-07 04:38:11.152 Df ioupsd[339:761] [com.apple.iohid:ups] Power Source status isACSource : Yes , isCharging : Yes , isDischarging : No

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

$ log stream --style compact --predicate 'sender == "launchd"'
Filtering the log data using "sender == "launchd""

(Then nothing follows.)

% log show --last 10m --style compact --predicate 'sender == "launchd"'
Filtering the log data using "sender == "launchd""
Skipping info and debug messages, pass --info and/or --debug to include.
Timestamp               Ty Process[PID:TID]
2023-04-07 04:30:05.138 Df launchd[1:b62d] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:30:05.138 Df launchd[1:b62d] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:30:05.139 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] xpcproxy spawned with pid 3614
2023-04-07 04:30:05.139 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:05.139 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] service state: xpcproxy
2023-04-07 04:30:05.139 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] deferred event: domain spawn response: 0
2023-04-07 04:30:05.139 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:05.141 Df launchd[1:b64c] [system/net.langui.FTPServer [3614]:] service state: running
2023-04-07 04:30:05.141 Df launchd[1:b64c] [system/net.langui.FTPServer [3614]:] internal event: INIT, code = 0
2023-04-07 04:30:05.141 Df launchd[1:b64c] [system/net.langui.FTPServer [3614]:] Successfully spawned ftpserver.py[3614] because inefficient
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] exited due to exit(127)
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] service state: exited
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] internal event: EXITED, code = 0
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer [3614]:] service state: not running
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:30:05.143 Df launchd[1:b62d] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:30:05.245 Df launchd[1:b64c] [system/com.apple.newsyslog:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:05.245 Df launchd[1:b64c] [system/com.apple.newsyslog:] service state: spawn scheduled
2023-04-07 04:30:05.245 Df launchd[1:b64c] [system/com.apple.newsyslog:] service state: spawning
2023-04-07 04:30:05.245 Df launchd[1:b64c] [system/com.apple.newsyslog:] launching: xpc event
2023-04-07 04:30:05.246 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] xpcproxy spawned with pid 3615
2023-04-07 04:30:05.246 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:05.246 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] service state: xpcproxy
2023-04-07 04:30:05.246 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:05.248 Df launchd[1:b62d] [system/com.apple.newsyslog [3615]:] service state: running
2023-04-07 04:30:05.248 Df launchd[1:b62d] [system/com.apple.newsyslog [3615]:] internal event: INIT, code = 0
2023-04-07 04:30:05.248 Df launchd[1:b62d] [system/com.apple.newsyslog [3615]:] Successfully spawned newsyslog[3615] because xpc event
2023-04-07 04:30:05.253 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] exited due to exit(0)
2023-04-07 04:30:05.253 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] service state: exited
2023-04-07 04:30:05.253 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] internal event: EXITED, code = 0
2023-04-07 04:30:05.253 Df launchd[1:b64c] [system:] service inactive: com.apple.newsyslog
2023-04-07 04:30:05.253 Df launchd[1:b64c] [system/com.apple.newsyslog [3615]:] service state: not running
2023-04-07 04:30:15.150 Df launchd[1:b64c] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:30:15.150 Df launchd[1:b64c] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:30:15.151 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] xpcproxy spawned with pid 3618
2023-04-07 04:30:15.151 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:15.151 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] service state: xpcproxy
2023-04-07 04:30:15.151 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] deferred event: domain spawn response: 0
2023-04-07 04:30:15.151 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:15.153 Df launchd[1:b697] [system/net.langui.FTPServer [3618]:] service state: running
2023-04-07 04:30:15.153 Df launchd[1:b697] [system/net.langui.FTPServer [3618]:] internal event: INIT, code = 0
2023-04-07 04:30:15.153 Df launchd[1:b697] [system/net.langui.FTPServer [3618]:] Successfully spawned ftpserver.py[3618] because inefficient
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] exited due to exit(127)
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] service state: exited
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] internal event: EXITED, code = 0
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer [3618]:] service state: not running
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:30:15.155 Df launchd[1:b64c] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:30:24.339 Df launchd[1:b6ba] [system/com.apple.signpost.signpost_reporter [3578]:] exited due to exit(0)
2023-04-07 04:30:24.339 Df launchd[1:b6ba] [system/com.apple.signpost.signpost_reporter [3578]:] service state: exited
2023-04-07 04:30:24.339 Df launchd[1:b6ba] [system/com.apple.signpost.signpost_reporter [3578]:] internal event: EXITED, code = 0
2023-04-07 04:30:24.339 Df launchd[1:b6ba] [system:] service inactive: com.apple.signpost.signpost_reporter
2023-04-07 04:30:24.339 Df launchd[1:b6ba] [system/com.apple.signpost.signpost_reporter [3578]:] service state: not running
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [pid/3578 [signpost_report]:] shutting down
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [pid/3578/com.apple.MTLCompilerService:] internal event: PETRIFIED, code = 0
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [pid/3578/com.apple.audio.AUHostingService.x86-64:] internal event: PETRIFIED, code = 0
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [pid/3578/com.apple.audio.AUHostingService.arm64e:] internal event: PETRIFIED, code = 0
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [pid/3578/com.apple.audio.Core-Audio-Driver-Service.helper:] internal event: PETRIFIED, code = 0
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [pid/3578/com.apple.audio.Core-Audio-Driver-Service:] internal event: PETRIFIED, code = 0
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [pid/3578 [signpost_report]:] cleaning up
2023-04-07 04:30:24.339 Df launchd[1:b6c1] [system:] removing child: pid/3578
2023-04-07 04:30:25.157 Df launchd[1:b6c1] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:30:25.157 Df launchd[1:b6c1] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:30:25.157 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] xpcproxy spawned with pid 3619
2023-04-07 04:30:25.157 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:25.158 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] service state: xpcproxy
2023-04-07 04:30:25.158 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] deferred event: domain spawn response: 0
2023-04-07 04:30:25.158 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:25.159 Df launchd[1:b6ba] [system/net.langui.FTPServer [3619]:] service state: running
2023-04-07 04:30:25.160 Df launchd[1:b6ba] [system/net.langui.FTPServer [3619]:] internal event: INIT, code = 0
2023-04-07 04:30:25.160 Df launchd[1:b6ba] [system/net.langui.FTPServer [3619]:] Successfully spawned ftpserver.py[3619] because inefficient
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] exited due to exit(127)
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] service state: exited
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] internal event: EXITED, code = 0
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer [3619]:] service state: not running
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:30:25.161 Df launchd[1:b6c1] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:30:35.168 Df launchd[1:b6ba] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:30:35.168 Df launchd[1:b6ba] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:30:35.168 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] xpcproxy spawned with pid 3620
2023-04-07 04:30:35.169 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:35.169 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] service state: xpcproxy
2023-04-07 04:30:35.169 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] deferred event: domain spawn response: 0
2023-04-07 04:30:35.169 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:35.171 Df launchd[1:b6dc] [system/net.langui.FTPServer [3620]:] service state: running
2023-04-07 04:30:35.171 Df launchd[1:b6dc] [system/net.langui.FTPServer [3620]:] internal event: INIT, code = 0
2023-04-07 04:30:35.171 Df launchd[1:b6dc] [system/net.langui.FTPServer [3620]:] Successfully spawned ftpserver.py[3620] because inefficient
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] exited due to exit(127)
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] service state: exited
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] internal event: EXITED, code = 0
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer [3620]:] service state: not running
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:30:35.172 Df launchd[1:b6ba] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:30:43.533 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:43.533 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:30:43.533 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000:] service state: spawning
2023-04-07 04:30:43.533 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:30:43.534 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] xpcproxy spawned with pid 3621
2023-04-07 04:30:43.534 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:43.534 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] service state: xpcproxy
2023-04-07 04:30:43.534 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:43.539 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] service state: running
2023-04-07 04:30:43.539 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] internal event: INIT, code = 0
2023-04-07 04:30:43.539 Df launchd[1:b6dc] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] Successfully spawned mdworker_shared[3621] because ipc (mach)
2023-04-07 04:30:45.180 Df launchd[1:b6dc] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:30:45.180 Df launchd[1:b6dc] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:30:45.181 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] xpcproxy spawned with pid 3622
2023-04-07 04:30:45.181 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:45.181 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] service state: xpcproxy
2023-04-07 04:30:45.181 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] deferred event: domain spawn response: 0
2023-04-07 04:30:45.181 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:45.183 Df launchd[1:b707] [system/net.langui.FTPServer [3622]:] service state: running
2023-04-07 04:30:45.183 Df launchd[1:b707] [system/net.langui.FTPServer [3622]:] internal event: INIT, code = 0
2023-04-07 04:30:45.183 Df launchd[1:b707] [system/net.langui.FTPServer [3622]:] Successfully spawned ftpserver.py[3622] because inefficient
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] exited due to exit(127)
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] service state: exited
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] internal event: EXITED, code = 0
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer [3622]:] service state: not running
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:30:45.184 Df launchd[1:b6dc] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:30:55.186 Df launchd[1:b871] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:30:55.186 Df launchd[1:b871] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:30:55.188 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] xpcproxy spawned with pid 3623
2023-04-07 04:30:55.188 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] internal event: SPAWNED, code = 0
2023-04-07 04:30:55.188 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] service state: xpcproxy
2023-04-07 04:30:55.188 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] deferred event: domain spawn response: 0
2023-04-07 04:30:55.188 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:30:55.189 Df launchd[1:b707] [system/net.langui.FTPServer [3623]:] service state: running
2023-04-07 04:30:55.189 Df launchd[1:b707] [system/net.langui.FTPServer [3623]:] internal event: INIT, code = 0
2023-04-07 04:30:55.189 Df launchd[1:b707] [system/net.langui.FTPServer [3623]:] Successfully spawned ftpserver.py[3623] because inefficient
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] exited due to exit(127)
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] service state: exited
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] internal event: EXITED, code = 0
2023-04-07 04:30:55.191 Df launchd[1:b871] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer [3623]:] service state: not running
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:30:55.191 Df launchd[1:b871] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:31:05.199 Df launchd[1:b894] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:31:05.199 Df launchd[1:b894] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:31:05.199 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] xpcproxy spawned with pid 3624
2023-04-07 04:31:05.199 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] internal event: SPAWNED, code = 0
2023-04-07 04:31:05.199 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] service state: xpcproxy
2023-04-07 04:31:05.199 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] deferred event: domain spawn response: 0
2023-04-07 04:31:05.199 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:31:05.201 Df launchd[1:b878] [system/net.langui.FTPServer [3624]:] service state: running
2023-04-07 04:31:05.201 Df launchd[1:b878] [system/net.langui.FTPServer [3624]:] internal event: INIT, code = 0
2023-04-07 04:31:05.201 Df launchd[1:b878] [system/net.langui.FTPServer [3624]:] Successfully spawned ftpserver.py[3624] because inefficient
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] exited due to exit(127)
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] service state: exited
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] internal event: EXITED, code = 0
2023-04-07 04:31:05.203 Df launchd[1:b894] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer [3624]:] service state: not running
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:31:05.203 Df launchd[1:b894] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:31:15.207 Df launchd[1:b878] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:31:15.207 Df launchd[1:b878] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:31:15.208 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] xpcproxy spawned with pid 3626
2023-04-07 04:31:15.208 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] internal event: SPAWNED, code = 0
2023-04-07 04:31:15.208 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] service state: xpcproxy
2023-04-07 04:31:15.208 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] deferred event: domain spawn response: 0
2023-04-07 04:31:15.208 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:31:15.210 Df launchd[1:b9fa] [system/net.langui.FTPServer [3626]:] service state: running
2023-04-07 04:31:15.210 Df launchd[1:b9fa] [system/net.langui.FTPServer [3626]:] internal event: INIT, code = 0
2023-04-07 04:31:15.210 Df launchd[1:b9fa] [system/net.langui.FTPServer [3626]:] Successfully spawned ftpserver.py[3626] because inefficient
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] exited due to exit(127)
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] service state: exited
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] internal event: EXITED, code = 0
2023-04-07 04:31:15.212 Df launchd[1:b878] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer [3626]:] service state: not running
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:31:15.212 Df launchd[1:b878] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:31:25.221 Df launchd[1:b9fa] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:31:25.221 Df launchd[1:b9fa] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] xpcproxy spawned with pid 3627
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] internal event: SPAWNED, code = 0
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] service state: xpcproxy
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] deferred event: domain spawn response: 0
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] exited due to SIGKILL | sent by mds[126]
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] service state: exited
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] internal event: EXITED, code = 0
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000 [3621]:] service state: not running
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [user/503:] service inactive: com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [user/503:] removing service: com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000
2023-04-07 04:31:25.223 Df launchd[1:b9fa] [user/503/com.apple.mdworker.shared.04000000-0600-0000-0000-000000000000:] internal event: PETRIFIED, code = 0
2023-04-07 04:31:25.225 Df launchd[1:ba25] [system/net.langui.FTPServer [3627]:] service state: running
2023-04-07 04:31:25.225 Df launchd[1:ba25] [system/net.langui.FTPServer [3627]:] internal event: INIT, code = 0
2023-04-07 04:31:25.225 Df launchd[1:ba25] [system/net.langui.FTPServer [3627]:] Successfully spawned ftpserver.py[3627] because inefficient
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] exited due to exit(127)
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] service state: exited
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] internal event: EXITED, code = 0
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer [3627]:] service state: not running
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:31:25.227 Df launchd[1:b9fa] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:31:35.234 Df launchd[1:ba4c] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:31:35.234 Df launchd[1:ba4c] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:31:35.235 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] xpcproxy spawned with pid 3628
2023-04-07 04:31:35.235 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] internal event: SPAWNED, code = 0
2023-04-07 04:31:35.235 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] service state: xpcproxy
2023-04-07 04:31:35.235 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] deferred event: domain spawn response: 0
2023-04-07 04:31:35.235 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:31:35.236 Df launchd[1:ba25] [system/net.langui.FTPServer [3628]:] service state: running
2023-04-07 04:31:35.236 Df launchd[1:ba25] [system/net.langui.FTPServer [3628]:] internal event: INIT, code = 0
2023-04-07 04:31:35.236 Df launchd[1:ba25] [system/net.langui.FTPServer [3628]:] Successfully spawned ftpserver.py[3628] because inefficient
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] exited due to exit(127)
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] service state: exited
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] internal event: EXITED, code = 0
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer [3628]:] service state: not running
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:31:35.238 Df launchd[1:ba4c] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:31:45.247 Df launchd[1:ba76] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:31:45.247 Df launchd[1:ba76] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:31:45.247 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] xpcproxy spawned with pid 3629
2023-04-07 04:31:45.247 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] internal event: SPAWNED, code = 0
2023-04-07 04:31:45.247 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] service state: xpcproxy
2023-04-07 04:31:45.247 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] deferred event: domain spawn response: 0
2023-04-07 04:31:45.247 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:31:45.249 Df launchd[1:ba25] [system/net.langui.FTPServer [3629]:] service state: running
2023-04-07 04:31:45.249 Df launchd[1:ba25] [system/net.langui.FTPServer [3629]:] internal event: INIT, code = 0
2023-04-07 04:31:45.249 Df launchd[1:ba25] [system/net.langui.FTPServer [3629]:] Successfully spawned ftpserver.py[3629] because inefficient
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] exited due to exit(127)
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] service state: exited
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] internal event: EXITED, code = 0
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer [3629]:] service state: not running
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:31:45.251 Df launchd[1:ba76] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:31:53.016 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:31:53.017 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:31:53.017 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000:] service state: spawning
2023-04-07 04:31:53.017 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:31:53.017 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] xpcproxy spawned with pid 3630
2023-04-07 04:31:53.017 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] internal event: SPAWNED, code = 0
2023-04-07 04:31:53.017 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] service state: xpcproxy
2023-04-07 04:31:53.017 Df launchd[1:ba25] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:31:53.023 Df launchd[1:ba9a] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] service state: running
2023-04-07 04:31:53.023 Df launchd[1:ba9a] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] internal event: INIT, code = 0
2023-04-07 04:31:53.023 Df launchd[1:ba9a] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] Successfully spawned mdworker_shared[3630] because ipc (mach)
2023-04-07 04:31:55.261 Df launchd[1:ba25] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:31:55.261 Df launchd[1:ba25] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:31:55.262 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] xpcproxy spawned with pid 3631
2023-04-07 04:31:55.262 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] internal event: SPAWNED, code = 0
2023-04-07 04:31:55.262 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] service state: xpcproxy
2023-04-07 04:31:55.262 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] deferred event: domain spawn response: 0
2023-04-07 04:31:55.262 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:31:55.264 Df launchd[1:ba9a] [system/net.langui.FTPServer [3631]:] service state: running
2023-04-07 04:31:55.264 Df launchd[1:ba9a] [system/net.langui.FTPServer [3631]:] internal event: INIT, code = 0
2023-04-07 04:31:55.264 Df launchd[1:ba9a] [system/net.langui.FTPServer [3631]:] Successfully spawned ftpserver.py[3631] because inefficient
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] exited due to exit(127)
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] service state: exited
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] internal event: EXITED, code = 0
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer [3631]:] service state: not running
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:31:55.265 Df launchd[1:ba25] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:32:05.274 Df launchd[1:bacc] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:32:05.274 Df launchd[1:bacc] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:32:05.274 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] xpcproxy spawned with pid 3632
2023-04-07 04:32:05.274 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] internal event: SPAWNED, code = 0
2023-04-07 04:32:05.274 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] service state: xpcproxy
2023-04-07 04:32:05.274 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] deferred event: domain spawn response: 0
2023-04-07 04:32:05.274 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:32:05.276 Df launchd[1:ba9a] [system/net.langui.FTPServer [3632]:] service state: running
2023-04-07 04:32:05.277 Df launchd[1:ba9a] [system/net.langui.FTPServer [3632]:] internal event: INIT, code = 0
2023-04-07 04:32:05.277 Df launchd[1:ba9a] [system/net.langui.FTPServer [3632]:] Successfully spawned ftpserver.py[3632] because inefficient
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] exited due to exit(127)
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] service state: exited
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] internal event: EXITED, code = 0
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer [3632]:] service state: not running
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:32:05.278 Df launchd[1:bacc] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:32:15.282 Df launchd[1:baee] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:32:15.282 Df launchd[1:baee] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:32:15.283 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] xpcproxy spawned with pid 3633
2023-04-07 04:32:15.283 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] internal event: SPAWNED, code = 0
2023-04-07 04:32:15.283 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] service state: xpcproxy
2023-04-07 04:32:15.283 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] deferred event: domain spawn response: 0
2023-04-07 04:32:15.283 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:32:15.285 Df launchd[1:ba9a] [system/net.langui.FTPServer [3633]:] service state: running
2023-04-07 04:32:15.285 Df launchd[1:ba9a] [system/net.langui.FTPServer [3633]:] internal event: INIT, code = 0
2023-04-07 04:32:15.285 Df launchd[1:ba9a] [system/net.langui.FTPServer [3633]:] Successfully spawned ftpserver.py[3633] because inefficient
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] exited due to exit(127)
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] service state: exited
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] internal event: EXITED, code = 0
2023-04-07 04:32:15.287 Df launchd[1:baee] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer [3633]:] service state: not running
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:32:15.287 Df launchd[1:baee] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:32:25.295 Df launchd[1:baee] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:32:25.295 Df launchd[1:baee] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:32:25.296 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] xpcproxy spawned with pid 3634
2023-04-07 04:32:25.296 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] internal event: SPAWNED, code = 0
2023-04-07 04:32:25.296 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] service state: xpcproxy
2023-04-07 04:32:25.296 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] deferred event: domain spawn response: 0
2023-04-07 04:32:25.296 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:32:25.298 Df launchd[1:bb19] [system/net.langui.FTPServer [3634]:] service state: running
2023-04-07 04:32:25.298 Df launchd[1:bb19] [system/net.langui.FTPServer [3634]:] internal event: INIT, code = 0
2023-04-07 04:32:25.298 Df launchd[1:bb19] [system/net.langui.FTPServer [3634]:] Successfully spawned ftpserver.py[3634] because inefficient
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] exited due to exit(127)
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] service state: exited
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] internal event: EXITED, code = 0
2023-04-07 04:32:25.299 Df launchd[1:baee] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer [3634]:] service state: not running
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:32:25.299 Df launchd[1:baee] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:32:35.018 Df launchd[1:bb19] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] exited due to SIGKILL | sent by mds[126]
2023-04-07 04:32:35.018 Df launchd[1:bb19] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] service state: exited
2023-04-07 04:32:35.018 Df launchd[1:bb19] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] internal event: EXITED, code = 0
2023-04-07 04:32:35.018 Df launchd[1:bb19] [user/89:] service inactive: com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000
2023-04-07 04:32:35.018 Df launchd[1:bb19] [user/89:] removing service: com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000
2023-04-07 04:32:35.018 Df launchd[1:bb19] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] internal event: PETRIFIED, code = 0
2023-04-07 04:32:35.018 Df launchd[1:bb19] [user/89/com.apple.mdworker.shared.03000000-0700-0000-0000-000000000000 [3630]:] service state: not running
2023-04-07 04:32:35.309 Df launchd[1:bb45] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:32:35.309 Df launchd[1:bb45] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:32:35.310 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] xpcproxy spawned with pid 3635
2023-04-07 04:32:35.310 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] internal event: SPAWNED, code = 0
2023-04-07 04:32:35.310 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] service state: xpcproxy
2023-04-07 04:32:35.310 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] deferred event: domain spawn response: 0
2023-04-07 04:32:35.310 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:32:35.312 Df launchd[1:bb19] [system/net.langui.FTPServer [3635]:] service state: running
2023-04-07 04:32:35.312 Df launchd[1:bb19] [system/net.langui.FTPServer [3635]:] internal event: INIT, code = 0
2023-04-07 04:32:35.312 Df launchd[1:bb19] [system/net.langui.FTPServer [3635]:] Successfully spawned ftpserver.py[3635] because inefficient
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] exited due to exit(127)
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] service state: exited
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] internal event: EXITED, code = 0
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer [3635]:] service state: not running
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:32:35.314 Df launchd[1:bb45] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:32:43.525 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:32:43.525 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:32:43.525 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000:] service state: spawning
2023-04-07 04:32:43.525 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:32:43.526 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] xpcproxy spawned with pid 3636
2023-04-07 04:32:43.526 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] internal event: SPAWNED, code = 0
2023-04-07 04:32:43.526 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] service state: xpcproxy
2023-04-07 04:32:43.526 Df launchd[1:bb19] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:32:43.533 Df launchd[1:bb65] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] service state: running
2023-04-07 04:32:43.533 Df launchd[1:bb65] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] internal event: INIT, code = 0
2023-04-07 04:32:43.533 Df launchd[1:bb65] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] Successfully spawned mdworker_shared[3636] because ipc (mach)
2023-04-07 04:32:45.320 Df launchd[1:bb65] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:32:45.320 Df launchd[1:bb65] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:32:45.320 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] xpcproxy spawned with pid 3637
2023-04-07 04:32:45.320 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] internal event: SPAWNED, code = 0
2023-04-07 04:32:45.320 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] service state: xpcproxy
2023-04-07 04:32:45.320 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] deferred event: domain spawn response: 0
2023-04-07 04:32:45.320 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:32:45.322 Df launchd[1:bb19] [system/net.langui.FTPServer [3637]:] service state: running
2023-04-07 04:32:45.322 Df launchd[1:bb19] [system/net.langui.FTPServer [3637]:] internal event: INIT, code = 0
2023-04-07 04:32:45.322 Df launchd[1:bb19] [system/net.langui.FTPServer [3637]:] Successfully spawned ftpserver.py[3637] because inefficient
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] exited due to exit(127)
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] service state: exited
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] internal event: EXITED, code = 0
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer [3637]:] service state: not running
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:32:45.324 Df launchd[1:bb65] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:32:55.334 Df launchd[1:bb19] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:32:55.334 Df launchd[1:bb19] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:32:55.335 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] xpcproxy spawned with pid 3638
2023-04-07 04:32:55.335 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] internal event: SPAWNED, code = 0
2023-04-07 04:32:55.335 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] service state: xpcproxy
2023-04-07 04:32:55.335 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] deferred event: domain spawn response: 0
2023-04-07 04:32:55.335 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:32:55.337 Df launchd[1:bba2] [system/net.langui.FTPServer [3638]:] service state: running
2023-04-07 04:32:55.337 Df launchd[1:bba2] [system/net.langui.FTPServer [3638]:] internal event: INIT, code = 0
2023-04-07 04:32:55.337 Df launchd[1:bba2] [system/net.langui.FTPServer [3638]:] Successfully spawned ftpserver.py[3638] because inefficient
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] exited due to exit(127)
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] service state: exited
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] internal event: EXITED, code = 0
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer [3638]:] service state: not running
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:32:55.339 Df launchd[1:bb19] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:33:05.343 Df launchd[1:bba2] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:33:05.343 Df launchd[1:bba2] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:33:05.343 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] xpcproxy spawned with pid 3639
2023-04-07 04:33:05.343 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] internal event: SPAWNED, code = 0
2023-04-07 04:33:05.343 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] service state: xpcproxy
2023-04-07 04:33:05.343 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] deferred event: domain spawn response: 0
2023-04-07 04:33:05.343 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:33:05.346 Df launchd[1:bbc2] [system/net.langui.FTPServer [3639]:] service state: running
2023-04-07 04:33:05.346 Df launchd[1:bbc2] [system/net.langui.FTPServer [3639]:] internal event: INIT, code = 0
2023-04-07 04:33:05.346 Df launchd[1:bbc2] [system/net.langui.FTPServer [3639]:] Successfully spawned ftpserver.py[3639] because inefficient
2023-04-07 04:33:05.347 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] exited due to exit(127)
2023-04-07 04:33:05.347 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] service state: exited
2023-04-07 04:33:05.347 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] internal event: EXITED, code = 0
2023-04-07 04:33:05.347 Df launchd[1:bba2] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:33:05.348 Df launchd[1:bba2] [system/net.langui.FTPServer [3639]:] service state: not running
2023-04-07 04:33:05.348 Df launchd[1:bba2] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:33:05.348 Df launchd[1:bba2] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:33:05.348 Df launchd[1:bba2] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:33:05.348 Df launchd[1:bba2] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:33:15.355 Df launchd[1:bbe7] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:33:15.355 Df launchd[1:bbe7] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:33:15.355 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] xpcproxy spawned with pid 3640
2023-04-07 04:33:15.355 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] internal event: SPAWNED, code = 0
2023-04-07 04:33:15.355 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] service state: xpcproxy
2023-04-07 04:33:15.355 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] deferred event: domain spawn response: 0
2023-04-07 04:33:15.355 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:33:15.358 Df launchd[1:bbc2] [system/net.langui.FTPServer [3640]:] service state: running
2023-04-07 04:33:15.358 Df launchd[1:bbc2] [system/net.langui.FTPServer [3640]:] internal event: INIT, code = 0
2023-04-07 04:33:15.358 Df launchd[1:bbc2] [system/net.langui.FTPServer [3640]:] Successfully spawned ftpserver.py[3640] because inefficient
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] exited due to exit(127)
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] service state: exited
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] internal event: EXITED, code = 0
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer [3640]:] service state: not running
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:33:15.359 Df launchd[1:bbe7] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:33:25.368 Df launchd[1:bc06] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:33:25.368 Df launchd[1:bc06] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:33:25.371 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] xpcproxy spawned with pid 3641
2023-04-07 04:33:25.371 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] internal event: SPAWNED, code = 0
2023-04-07 04:33:25.371 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] service state: xpcproxy
2023-04-07 04:33:25.371 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] deferred event: domain spawn response: 0
2023-04-07 04:33:25.371 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:33:25.371 Df launchd[1:bc06] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] exited due to SIGKILL | sent by mds[126]
2023-04-07 04:33:25.371 Df launchd[1:bc06] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] service state: exited
2023-04-07 04:33:25.371 Df launchd[1:bc06] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] internal event: EXITED, code = 0
2023-04-07 04:33:25.371 Df launchd[1:bc06] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000 [3636]:] service state: not running
2023-04-07 04:33:25.371 Df launchd[1:bc06] [user/503:] service inactive: com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000
2023-04-07 04:33:25.371 Df launchd[1:bc06] [user/503:] removing service: com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000
2023-04-07 04:33:25.371 Df launchd[1:bc06] [user/503/com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000:] internal event: PETRIFIED, code = 0
2023-04-07 04:33:25.372 Df launchd[1:bbc2] [system/net.langui.FTPServer [3641]:] service state: running
2023-04-07 04:33:25.372 Df launchd[1:bbc2] [system/net.langui.FTPServer [3641]:] internal event: INIT, code = 0
2023-04-07 04:33:25.372 Df launchd[1:bbc2] [system/net.langui.FTPServer [3641]:] Successfully spawned ftpserver.py[3641] because inefficient
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] exited due to exit(127)
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] service state: exited
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] internal event: EXITED, code = 0
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer [3641]:] service state: not running
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:33:25.374 Df launchd[1:bc06] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:33:35.384 Df launchd[1:bbc2] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:33:35.384 Df launchd[1:bbc2] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:33:35.385 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] xpcproxy spawned with pid 3642
2023-04-07 04:33:35.385 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] internal event: SPAWNED, code = 0
2023-04-07 04:33:35.385 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] service state: xpcproxy
2023-04-07 04:33:35.385 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] deferred event: domain spawn response: 0
2023-04-07 04:33:35.385 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:33:35.387 Df launchd[1:bc2e] [system/net.langui.FTPServer [3642]:] service state: running
2023-04-07 04:33:35.387 Df launchd[1:bc2e] [system/net.langui.FTPServer [3642]:] internal event: INIT, code = 0
2023-04-07 04:33:35.387 Df launchd[1:bc2e] [system/net.langui.FTPServer [3642]:] Successfully spawned ftpserver.py[3642] because inefficient
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] exited due to exit(127)
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] service state: exited
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] internal event: EXITED, code = 0
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer [3642]:] service state: not running
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:33:35.388 Df launchd[1:bbc2] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:33:45.390 Df launchd[1:bc51] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:33:45.390 Df launchd[1:bc51] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:33:45.391 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] xpcproxy spawned with pid 3643
2023-04-07 04:33:45.391 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] internal event: SPAWNED, code = 0
2023-04-07 04:33:45.391 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] service state: xpcproxy
2023-04-07 04:33:45.391 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] deferred event: domain spawn response: 0
2023-04-07 04:33:45.391 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:33:45.393 Df launchd[1:bc2e] [system/net.langui.FTPServer [3643]:] service state: running
2023-04-07 04:33:45.393 Df launchd[1:bc2e] [system/net.langui.FTPServer [3643]:] internal event: INIT, code = 0
2023-04-07 04:33:45.393 Df launchd[1:bc2e] [system/net.langui.FTPServer [3643]:] Successfully spawned ftpserver.py[3643] because inefficient
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] exited due to exit(127)
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] service state: exited
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] internal event: EXITED, code = 0
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer [3643]:] service state: not running
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:33:45.394 Df launchd[1:bc51] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:33:55.401 Df launchd[1:bc76] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:33:55.401 Df launchd[1:bc76] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:33:55.401 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] xpcproxy spawned with pid 3644
2023-04-07 04:33:55.401 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] internal event: SPAWNED, code = 0
2023-04-07 04:33:55.401 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] service state: xpcproxy
2023-04-07 04:33:55.401 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] deferred event: domain spawn response: 0
2023-04-07 04:33:55.401 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:33:55.403 Df launchd[1:bc2e] [system/net.langui.FTPServer [3644]:] service state: running
2023-04-07 04:33:55.403 Df launchd[1:bc2e] [system/net.langui.FTPServer [3644]:] internal event: INIT, code = 0
2023-04-07 04:33:55.403 Df launchd[1:bc2e] [system/net.langui.FTPServer [3644]:] Successfully spawned ftpserver.py[3644] because inefficient
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] exited due to exit(127)
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] service state: exited
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] internal event: EXITED, code = 0
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer [3644]:] service state: not running
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:33:55.405 Df launchd[1:bc76] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:34:05.414 Df launchd[1:bc2e] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:34:05.414 Df launchd[1:bc2e] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:34:05.415 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] xpcproxy spawned with pid 3645
2023-04-07 04:34:05.415 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] internal event: SPAWNED, code = 0
2023-04-07 04:34:05.415 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] service state: xpcproxy
2023-04-07 04:34:05.415 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] deferred event: domain spawn response: 0
2023-04-07 04:34:05.415 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:34:05.417 Df launchd[1:bc97] [system/net.langui.FTPServer [3645]:] service state: running
2023-04-07 04:34:05.417 Df launchd[1:bc97] [system/net.langui.FTPServer [3645]:] internal event: INIT, code = 0
2023-04-07 04:34:05.417 Df launchd[1:bc97] [system/net.langui.FTPServer [3645]:] Successfully spawned ftpserver.py[3645] because inefficient
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] exited due to exit(127)
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] service state: exited
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] internal event: EXITED, code = 0
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer [3645]:] service state: not running
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:34:05.419 Df launchd[1:bc2e] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:34:15.427 Df launchd[1:bc97] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:34:15.428 Df launchd[1:bc97] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:34:15.428 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] xpcproxy spawned with pid 3646
2023-04-07 04:34:15.428 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] internal event: SPAWNED, code = 0
2023-04-07 04:34:15.428 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] service state: xpcproxy
2023-04-07 04:34:15.428 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] deferred event: domain spawn response: 0
2023-04-07 04:34:15.428 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:34:15.430 Df launchd[1:bcb5] [system/net.langui.FTPServer [3646]:] service state: running
2023-04-07 04:34:15.430 Df launchd[1:bcb5] [system/net.langui.FTPServer [3646]:] internal event: INIT, code = 0
2023-04-07 04:34:15.430 Df launchd[1:bcb5] [system/net.langui.FTPServer [3646]:] Successfully spawned ftpserver.py[3646] because inefficient
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] exited due to exit(127)
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] service state: exited
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] internal event: EXITED, code = 0
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer [3646]:] service state: not running
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:34:15.432 Df launchd[1:bc97] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:34:25.436 Df launchd[1:bcb5] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:34:25.436 Df launchd[1:bcb5] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:34:25.436 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] xpcproxy spawned with pid 3647
2023-04-07 04:34:25.436 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] internal event: SPAWNED, code = 0
2023-04-07 04:34:25.436 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] service state: xpcproxy
2023-04-07 04:34:25.436 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] deferred event: domain spawn response: 0
2023-04-07 04:34:25.436 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:34:25.438 Df launchd[1:bcd7] [system/net.langui.FTPServer [3647]:] service state: running
2023-04-07 04:34:25.438 Df launchd[1:bcd7] [system/net.langui.FTPServer [3647]:] internal event: INIT, code = 0
2023-04-07 04:34:25.438 Df launchd[1:bcd7] [system/net.langui.FTPServer [3647]:] Successfully spawned ftpserver.py[3647] because inefficient
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] exited due to exit(127)
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] service state: exited
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] internal event: EXITED, code = 0
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer [3647]:] service state: not running
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:34:25.440 Df launchd[1:bcb5] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:34:35.440 Df launchd[1:bcf8] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:34:35.440 Df launchd[1:bcf8] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:34:35.441 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] xpcproxy spawned with pid 3648
2023-04-07 04:34:35.441 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] internal event: SPAWNED, code = 0
2023-04-07 04:34:35.441 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] service state: xpcproxy
2023-04-07 04:34:35.441 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] deferred event: domain spawn response: 0
2023-04-07 04:34:35.441 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:34:35.443 Df launchd[1:bcd7] [system/net.langui.FTPServer [3648]:] service state: running
2023-04-07 04:34:35.443 Df launchd[1:bcd7] [system/net.langui.FTPServer [3648]:] internal event: INIT, code = 0
2023-04-07 04:34:35.443 Df launchd[1:bcd7] [system/net.langui.FTPServer [3648]:] Successfully spawned ftpserver.py[3648] because inefficient
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] exited due to exit(127)
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] service state: exited
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] internal event: EXITED, code = 0
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer [3648]:] service state: not running
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:34:35.445 Df launchd[1:bcf8] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:34:43.474 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:34:43.474 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:34:43.474 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000:] service state: spawning
2023-04-07 04:34:43.474 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:34:43.475 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] xpcproxy spawned with pid 3649
2023-04-07 04:34:43.475 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] internal event: SPAWNED, code = 0
2023-04-07 04:34:43.475 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] service state: xpcproxy
2023-04-07 04:34:43.475 Df launchd[1:bcd7] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:34:43.480 Df launchd[1:bd17] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] service state: running
2023-04-07 04:34:43.480 Df launchd[1:bd17] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] internal event: INIT, code = 0
2023-04-07 04:34:43.480 Df launchd[1:bd17] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] Successfully spawned mdworker_shared[3649] because ipc (mach)
2023-04-07 04:34:45.454 Df launchd[1:bd17] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:34:45.454 Df launchd[1:bd17] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:34:45.455 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] xpcproxy spawned with pid 3650
2023-04-07 04:34:45.455 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] internal event: SPAWNED, code = 0
2023-04-07 04:34:45.455 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] service state: xpcproxy
2023-04-07 04:34:45.455 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] deferred event: domain spawn response: 0
2023-04-07 04:34:45.455 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:34:45.457 Df launchd[1:bcd7] [system/net.langui.FTPServer [3650]:] service state: running
2023-04-07 04:34:45.457 Df launchd[1:bcd7] [system/net.langui.FTPServer [3650]:] internal event: INIT, code = 0
2023-04-07 04:34:45.457 Df launchd[1:bcd7] [system/net.langui.FTPServer [3650]:] Successfully spawned ftpserver.py[3650] because inefficient
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] exited due to exit(127)
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] service state: exited
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] internal event: EXITED, code = 0
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer [3650]:] service state: not running
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:34:45.458 Df launchd[1:bd17] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:34:55.464 Df launchd[1:bcd7] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:34:55.464 Df launchd[1:bcd7] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:34:55.464 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] xpcproxy spawned with pid 3651
2023-04-07 04:34:55.464 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] internal event: SPAWNED, code = 0
2023-04-07 04:34:55.464 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] service state: xpcproxy
2023-04-07 04:34:55.464 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] deferred event: domain spawn response: 0
2023-04-07 04:34:55.464 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:34:55.466 Df launchd[1:bd7c] [system/net.langui.FTPServer [3651]:] service state: running
2023-04-07 04:34:55.466 Df launchd[1:bd7c] [system/net.langui.FTPServer [3651]:] internal event: INIT, code = 0
2023-04-07 04:34:55.466 Df launchd[1:bd7c] [system/net.langui.FTPServer [3651]:] Successfully spawned ftpserver.py[3651] because inefficient
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] exited due to exit(127)
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] service state: exited
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] internal event: EXITED, code = 0
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer [3651]:] service state: not running
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:34:55.468 Df launchd[1:bcd7] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:35:05.475 Df launchd[1:c243] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:35:05.475 Df launchd[1:c243] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:35:05.476 Df launchd[1:c243] [system/net.langui.FTPServer [4408]:] xpcproxy spawned with pid 4408
2023-04-07 04:35:05.476 Df launchd[1:c243] [system/net.langui.FTPServer [4408]:] internal event: SPAWNED, code = 0
2023-04-07 04:35:05.476 Df launchd[1:c243] [system/net.langui.FTPServer [4408]:] service state: xpcproxy
2023-04-07 04:35:05.476 Df launchd[1:c243] [system/net.langui.FTPServer [4408]:] deferred event: domain spawn response: 0
2023-04-07 04:35:05.476 Df launchd[1:c243] [system/net.langui.FTPServer [4408]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:35:05.479 Df launchd[1:bd7c] [system/net.langui.FTPServer [4408]:] service state: running
2023-04-07 04:35:05.479 Df launchd[1:bd7c] [system/net.langui.FTPServer [4408]:] internal event: INIT, code = 0
2023-04-07 04:35:05.479 Df launchd[1:bd7c] [system/net.langui.FTPServer [4408]:] Successfully spawned ftpserver.py[4408] because inefficient
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer [4408]:] exited due to exit(127)
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer [4408]:] service state: exited
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer [4408]:] internal event: EXITED, code = 0
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer [4408]:] service state: not running
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:35:05.481 Df launchd[1:bd7c] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:35:15.491 Df launchd[1:c284] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:35:15.491 Df launchd[1:c284] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:35:15.491 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] xpcproxy spawned with pid 4417
2023-04-07 04:35:15.491 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] internal event: SPAWNED, code = 0
2023-04-07 04:35:15.491 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] service state: xpcproxy
2023-04-07 04:35:15.491 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] deferred event: domain spawn response: 0
2023-04-07 04:35:15.491 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:35:15.494 Df launchd[1:c243] [system/net.langui.FTPServer [4417]:] service state: running
2023-04-07 04:35:15.494 Df launchd[1:c243] [system/net.langui.FTPServer [4417]:] internal event: INIT, code = 0
2023-04-07 04:35:15.494 Df launchd[1:c243] [system/net.langui.FTPServer [4417]:] Successfully spawned ftpserver.py[4417] because inefficient
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] exited due to exit(127)
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] service state: exited
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] internal event: EXITED, code = 0
2023-04-07 04:35:15.495 Df launchd[1:c284] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer [4417]:] service state: not running
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:35:15.495 Df launchd[1:c284] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:35:25.505 Df launchd[1:c243] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:35:25.505 Df launchd[1:c243] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:35:25.506 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] xpcproxy spawned with pid 4418
2023-04-07 04:35:25.506 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] internal event: SPAWNED, code = 0
2023-04-07 04:35:25.506 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] service state: xpcproxy
2023-04-07 04:35:25.506 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] deferred event: domain spawn response: 0
2023-04-07 04:35:25.506 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:35:25.508 Df launchd[1:c2a9] [system/net.langui.FTPServer [4418]:] service state: running
2023-04-07 04:35:25.508 Df launchd[1:c2a9] [system/net.langui.FTPServer [4418]:] internal event: INIT, code = 0
2023-04-07 04:35:25.508 Df launchd[1:c2a9] [system/net.langui.FTPServer [4418]:] Successfully spawned ftpserver.py[4418] because inefficient
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] exited due to exit(127)
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] service state: exited
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] internal event: EXITED, code = 0
2023-04-07 04:35:25.510 Df launchd[1:c243] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer [4418]:] service state: not running
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:35:25.510 Df launchd[1:c243] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:35:25.559 Df launchd[1:c2a9] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] exited due to SIGKILL | sent by mds[126]
2023-04-07 04:35:25.559 Df launchd[1:c2a9] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] service state: exited
2023-04-07 04:35:25.559 Df launchd[1:c2a9] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] internal event: EXITED, code = 0
2023-04-07 04:35:25.559 Df launchd[1:c2a9] [user/503:] service inactive: com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000
2023-04-07 04:35:25.559 Df launchd[1:c2a9] [user/503:] removing service: com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000
2023-04-07 04:35:25.559 Df launchd[1:c2a9] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] internal event: PETRIFIED, code = 0
2023-04-07 04:35:25.559 Df launchd[1:c2a9] [user/503/com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000 [3649]:] service state: not running
2023-04-07 04:35:35.512 Df launchd[1:c2b0] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:35:35.512 Df launchd[1:c2b0] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:35:35.512 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] xpcproxy spawned with pid 4428
2023-04-07 04:35:35.512 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] internal event: SPAWNED, code = 0
2023-04-07 04:35:35.512 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] service state: xpcproxy
2023-04-07 04:35:35.512 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] deferred event: domain spawn response: 0
2023-04-07 04:35:35.512 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:35:35.515 Df launchd[1:c31b] [system/net.langui.FTPServer [4428]:] service state: running
2023-04-07 04:35:35.515 Df launchd[1:c31b] [system/net.langui.FTPServer [4428]:] internal event: INIT, code = 0
2023-04-07 04:35:35.515 Df launchd[1:c31b] [system/net.langui.FTPServer [4428]:] Successfully spawned ftpserver.py[4428] because inefficient
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] exited due to exit(127)
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] service state: exited
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] internal event: EXITED, code = 0
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer [4428]:] service state: not running
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:35:35.516 Df launchd[1:c2b0] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:35:45.522 Df launchd[1:c338] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:35:45.522 Df launchd[1:c338] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:35:45.522 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] xpcproxy spawned with pid 4429
2023-04-07 04:35:45.522 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] internal event: SPAWNED, code = 0
2023-04-07 04:35:45.522 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] service state: xpcproxy
2023-04-07 04:35:45.522 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] deferred event: domain spawn response: 0
2023-04-07 04:35:45.522 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:35:45.525 Df launchd[1:c31b] [system/net.langui.FTPServer [4429]:] service state: running
2023-04-07 04:35:45.525 Df launchd[1:c31b] [system/net.langui.FTPServer [4429]:] internal event: INIT, code = 0
2023-04-07 04:35:45.525 Df launchd[1:c31b] [system/net.langui.FTPServer [4429]:] Successfully spawned ftpserver.py[4429] because inefficient
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] exited due to exit(127)
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] service state: exited
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] internal event: EXITED, code = 0
2023-04-07 04:35:45.526 Df launchd[1:c338] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer [4429]:] service state: not running
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:35:45.526 Df launchd[1:c338] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:35:55.531 Df launchd[1:c35c] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:35:55.531 Df launchd[1:c35c] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:35:55.531 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] xpcproxy spawned with pid 4430
2023-04-07 04:35:55.531 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] internal event: SPAWNED, code = 0
2023-04-07 04:35:55.531 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] service state: xpcproxy
2023-04-07 04:35:55.531 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] deferred event: domain spawn response: 0
2023-04-07 04:35:55.531 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:35:55.533 Df launchd[1:c31b] [system/net.langui.FTPServer [4430]:] service state: running
2023-04-07 04:35:55.533 Df launchd[1:c31b] [system/net.langui.FTPServer [4430]:] internal event: INIT, code = 0
2023-04-07 04:35:55.533 Df launchd[1:c31b] [system/net.langui.FTPServer [4430]:] Successfully spawned ftpserver.py[4430] because inefficient
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] exited due to exit(127)
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] service state: exited
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] internal event: EXITED, code = 0
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer [4430]:] service state: not running
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:35:55.535 Df launchd[1:c35c] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:36:05.542 Df launchd[1:c31b] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:36:05.542 Df launchd[1:c31b] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:36:05.543 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] xpcproxy spawned with pid 4575
2023-04-07 04:36:05.543 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] internal event: SPAWNED, code = 0
2023-04-07 04:36:05.543 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] service state: xpcproxy
2023-04-07 04:36:05.543 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] deferred event: domain spawn response: 0
2023-04-07 04:36:05.543 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:36:05.545 Df launchd[1:c464] [system/net.langui.FTPServer [4575]:] service state: running
2023-04-07 04:36:05.545 Df launchd[1:c464] [system/net.langui.FTPServer [4575]:] internal event: INIT, code = 0
2023-04-07 04:36:05.545 Df launchd[1:c464] [system/net.langui.FTPServer [4575]:] Successfully spawned ftpserver.py[4575] because inefficient
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] exited due to exit(127)
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] service state: exited
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] internal event: EXITED, code = 0
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer [4575]:] service state: not running
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:36:05.547 Df launchd[1:c31b] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:36:15.550 Df launchd[1:c48d] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:36:15.550 Df launchd[1:c48d] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:36:15.550 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] xpcproxy spawned with pid 4576
2023-04-07 04:36:15.550 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] internal event: SPAWNED, code = 0
2023-04-07 04:36:15.550 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] service state: xpcproxy
2023-04-07 04:36:15.550 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] deferred event: domain spawn response: 0
2023-04-07 04:36:15.550 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:36:15.553 Df launchd[1:c464] [system/net.langui.FTPServer [4576]:] service state: running
2023-04-07 04:36:15.553 Df launchd[1:c464] [system/net.langui.FTPServer [4576]:] internal event: INIT, code = 0
2023-04-07 04:36:15.553 Df launchd[1:c464] [system/net.langui.FTPServer [4576]:] Successfully spawned ftpserver.py[4576] because inefficient
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] exited due to exit(127)
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] service state: exited
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] internal event: EXITED, code = 0
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer [4576]:] service state: not running
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:36:15.554 Df launchd[1:c48d] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:36:25.559 Df launchd[1:c4b5] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:36:25.559 Df launchd[1:c4b5] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:36:25.559 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] xpcproxy spawned with pid 4577
2023-04-07 04:36:25.559 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] internal event: SPAWNED, code = 0
2023-04-07 04:36:25.559 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] service state: xpcproxy
2023-04-07 04:36:25.559 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] deferred event: domain spawn response: 0
2023-04-07 04:36:25.559 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:36:25.561 Df launchd[1:c464] [system/net.langui.FTPServer [4577]:] service state: running
2023-04-07 04:36:25.561 Df launchd[1:c464] [system/net.langui.FTPServer [4577]:] internal event: INIT, code = 0
2023-04-07 04:36:25.561 Df launchd[1:c464] [system/net.langui.FTPServer [4577]:] Successfully spawned ftpserver.py[4577] because inefficient
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] exited due to exit(127)
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] service state: exited
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] internal event: EXITED, code = 0
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer [4577]:] service state: not running
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:36:25.563 Df launchd[1:c4b5] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:36:35.569 Df launchd[1:c464] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:36:35.569 Df launchd[1:c464] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:36:35.570 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] xpcproxy spawned with pid 4578
2023-04-07 04:36:35.570 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] internal event: SPAWNED, code = 0
2023-04-07 04:36:35.570 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] service state: xpcproxy
2023-04-07 04:36:35.570 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] deferred event: domain spawn response: 0
2023-04-07 04:36:35.570 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:36:35.572 Df launchd[1:c61e] [system/net.langui.FTPServer [4578]:] service state: running
2023-04-07 04:36:35.572 Df launchd[1:c61e] [system/net.langui.FTPServer [4578]:] internal event: INIT, code = 0
2023-04-07 04:36:35.572 Df launchd[1:c61e] [system/net.langui.FTPServer [4578]:] Successfully spawned ftpserver.py[4578] because inefficient
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] exited due to exit(127)
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] service state: exited
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] internal event: EXITED, code = 0
2023-04-07 04:36:35.574 Df launchd[1:c464] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer [4578]:] service state: not running
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:36:35.574 Df launchd[1:c464] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:36:43.480 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:36:43.480 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:36:43.480 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000:] service state: spawning
2023-04-07 04:36:43.480 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:36:43.481 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] xpcproxy spawned with pid 4579
2023-04-07 04:36:43.481 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] internal event: SPAWNED, code = 0
2023-04-07 04:36:43.481 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] service state: xpcproxy
2023-04-07 04:36:43.481 Df launchd[1:c61e] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:36:43.487 Df launchd[1:c63c] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] service state: running
2023-04-07 04:36:43.487 Df launchd[1:c63c] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] internal event: INIT, code = 0
2023-04-07 04:36:43.487 Df launchd[1:c63c] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] Successfully spawned mdworker_shared[4579] because ipc (mach)
2023-04-07 04:36:45.580 Df launchd[1:c61e] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:36:45.580 Df launchd[1:c61e] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:36:45.581 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] xpcproxy spawned with pid 4580
2023-04-07 04:36:45.581 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] internal event: SPAWNED, code = 0
2023-04-07 04:36:45.581 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] service state: xpcproxy
2023-04-07 04:36:45.581 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] deferred event: domain spawn response: 0
2023-04-07 04:36:45.581 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:36:45.583 Df launchd[1:c63c] [system/net.langui.FTPServer [4580]:] service state: running
2023-04-07 04:36:45.583 Df launchd[1:c63c] [system/net.langui.FTPServer [4580]:] internal event: INIT, code = 0
2023-04-07 04:36:45.583 Df launchd[1:c63c] [system/net.langui.FTPServer [4580]:] Successfully spawned ftpserver.py[4580] because inefficient
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] exited due to exit(127)
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] service state: exited
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] internal event: EXITED, code = 0
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer [4580]:] service state: not running
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:36:45.585 Df launchd[1:c61e] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:36:55.586 Df launchd[1:c63c] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:36:55.586 Df launchd[1:c63c] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:36:55.587 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] xpcproxy spawned with pid 4582
2023-04-07 04:36:55.587 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] internal event: SPAWNED, code = 0
2023-04-07 04:36:55.587 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] service state: xpcproxy
2023-04-07 04:36:55.587 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] deferred event: domain spawn response: 0
2023-04-07 04:36:55.587 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:36:55.589 Df launchd[1:c7ab] [system/net.langui.FTPServer [4582]:] service state: running
2023-04-07 04:36:55.589 Df launchd[1:c7ab] [system/net.langui.FTPServer [4582]:] internal event: INIT, code = 0
2023-04-07 04:36:55.589 Df launchd[1:c7ab] [system/net.langui.FTPServer [4582]:] Successfully spawned ftpserver.py[4582] because inefficient
2023-04-07 04:36:55.590 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] exited due to exit(127)
2023-04-07 04:36:55.590 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] service state: exited
2023-04-07 04:36:55.590 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] internal event: EXITED, code = 0
2023-04-07 04:36:55.590 Df launchd[1:c63c] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:36:55.591 Df launchd[1:c63c] [system/net.langui.FTPServer [4582]:] service state: not running
2023-04-07 04:36:55.591 Df launchd[1:c63c] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:36:55.591 Df launchd[1:c63c] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:36:55.591 Df launchd[1:c63c] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:36:55.591 Df launchd[1:c63c] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:37:05.597 Df launchd[1:c7ab] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:37:05.597 Df launchd[1:c7ab] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:37:05.597 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] xpcproxy spawned with pid 4586
2023-04-07 04:37:05.598 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] internal event: SPAWNED, code = 0
2023-04-07 04:37:05.598 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] service state: xpcproxy
2023-04-07 04:37:05.598 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] deferred event: domain spawn response: 0
2023-04-07 04:37:05.598 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:37:05.600 Df launchd[1:c7cf] [system/net.langui.FTPServer [4586]:] service state: running
2023-04-07 04:37:05.600 Df launchd[1:c7cf] [system/net.langui.FTPServer [4586]:] internal event: INIT, code = 0
2023-04-07 04:37:05.600 Df launchd[1:c7cf] [system/net.langui.FTPServer [4586]:] Successfully spawned ftpserver.py[4586] because inefficient
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] exited due to exit(127)
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] service state: exited
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] internal event: EXITED, code = 0
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer [4586]:] service state: not running
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:37:05.601 Df launchd[1:c7ab] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:37:15.609 Df launchd[1:c7ef] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:37:15.609 Df launchd[1:c7ef] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:37:15.609 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] xpcproxy spawned with pid 4587
2023-04-07 04:37:15.609 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] internal event: SPAWNED, code = 0
2023-04-07 04:37:15.609 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] service state: xpcproxy
2023-04-07 04:37:15.609 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] deferred event: domain spawn response: 0
2023-04-07 04:37:15.609 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:37:15.611 Df launchd[1:c7cf] [system/net.langui.FTPServer [4587]:] service state: running
2023-04-07 04:37:15.611 Df launchd[1:c7cf] [system/net.langui.FTPServer [4587]:] internal event: INIT, code = 0
2023-04-07 04:37:15.612 Df launchd[1:c7cf] [system/net.langui.FTPServer [4587]:] Successfully spawned ftpserver.py[4587] because inefficient
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] exited due to exit(127)
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] service state: exited
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] internal event: EXITED, code = 0
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer [4587]:] service state: not running
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:37:15.613 Df launchd[1:c7ef] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:37:25.267 Df launchd[1:c7cf] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] exited due to SIGKILL | sent by mds[126]
2023-04-07 04:37:25.267 Df launchd[1:c7cf] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] service state: exited
2023-04-07 04:37:25.267 Df launchd[1:c7cf] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] internal event: EXITED, code = 0
2023-04-07 04:37:25.267 Df launchd[1:c7cf] [user/503:] service inactive: com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000
2023-04-07 04:37:25.267 Df launchd[1:c7cf] [user/503:] removing service: com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000
2023-04-07 04:37:25.267 Df launchd[1:c7cf] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] internal event: PETRIFIED, code = 0
2023-04-07 04:37:25.267 Df launchd[1:c7cf] [user/503/com.apple.mdworker.shared.04000000-0100-0000-0000-000000000000 [4579]:] service state: not running
2023-04-07 04:37:25.623 Df launchd[1:c7cf] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:37:25.623 Df launchd[1:c7cf] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:37:25.624 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] xpcproxy spawned with pid 4588
2023-04-07 04:37:25.624 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] internal event: SPAWNED, code = 0
2023-04-07 04:37:25.624 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] service state: xpcproxy
2023-04-07 04:37:25.624 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] deferred event: domain spawn response: 0
2023-04-07 04:37:25.624 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:37:25.626 Df launchd[1:c814] [system/net.langui.FTPServer [4588]:] service state: running
2023-04-07 04:37:25.626 Df launchd[1:c814] [system/net.langui.FTPServer [4588]:] internal event: INIT, code = 0
2023-04-07 04:37:25.626 Df launchd[1:c814] [system/net.langui.FTPServer [4588]:] Successfully spawned ftpserver.py[4588] because inefficient
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] exited due to exit(127)
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] service state: exited
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] internal event: EXITED, code = 0
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer [4588]:] service state: not running
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:37:25.628 Df launchd[1:c7cf] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:37:35.636 Df launchd[1:c91c] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:37:35.636 Df launchd[1:c91c] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:37:35.636 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] xpcproxy spawned with pid 4733
2023-04-07 04:37:35.636 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] internal event: SPAWNED, code = 0
2023-04-07 04:37:35.636 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] service state: xpcproxy
2023-04-07 04:37:35.636 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] deferred event: domain spawn response: 0
2023-04-07 04:37:35.636 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:37:35.638 Df launchd[1:c81e] [system/net.langui.FTPServer [4733]:] service state: running
2023-04-07 04:37:35.638 Df launchd[1:c81e] [system/net.langui.FTPServer [4733]:] internal event: INIT, code = 0
2023-04-07 04:37:35.638 Df launchd[1:c81e] [system/net.langui.FTPServer [4733]:] Successfully spawned ftpserver.py[4733] because inefficient
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] exited due to exit(127)
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] service state: exited
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] internal event: EXITED, code = 0
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer [4733]:] service state: not running
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:37:35.640 Df launchd[1:c91c] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:37:45.645 Df launchd[1:ca0d] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:37:45.645 Df launchd[1:ca0d] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:37:45.645 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] xpcproxy spawned with pid 4872
2023-04-07 04:37:45.645 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] internal event: SPAWNED, code = 0
2023-04-07 04:37:45.645 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] service state: xpcproxy
2023-04-07 04:37:45.645 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] deferred event: domain spawn response: 0
2023-04-07 04:37:45.645 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:37:45.648 Df launchd[1:c81e] [system/net.langui.FTPServer [4872]:] service state: running
2023-04-07 04:37:45.648 Df launchd[1:c81e] [system/net.langui.FTPServer [4872]:] internal event: INIT, code = 0
2023-04-07 04:37:45.648 Df launchd[1:c81e] [system/net.langui.FTPServer [4872]:] Successfully spawned ftpserver.py[4872] because inefficient
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] exited due to exit(127)
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] service state: exited
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] internal event: EXITED, code = 0
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer [4872]:] service state: not running
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:37:45.650 Df launchd[1:ca0d] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:37:55.656 Df launchd[1:c81e] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:37:55.656 Df launchd[1:c81e] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:37:55.656 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] xpcproxy spawned with pid 4877
2023-04-07 04:37:55.656 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] internal event: SPAWNED, code = 0
2023-04-07 04:37:55.656 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] service state: xpcproxy
2023-04-07 04:37:55.656 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] deferred event: domain spawn response: 0
2023-04-07 04:37:55.656 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:37:55.658 Df launchd[1:ca35] [system/net.langui.FTPServer [4877]:] service state: running
2023-04-07 04:37:55.658 Df launchd[1:ca35] [system/net.langui.FTPServer [4877]:] internal event: INIT, code = 0
2023-04-07 04:37:55.658 Df launchd[1:ca35] [system/net.langui.FTPServer [4877]:] Successfully spawned ftpserver.py[4877] because inefficient
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] exited due to exit(127)
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] service state: exited
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] internal event: EXITED, code = 0
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer [4877]:] service state: not running
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:37:55.660 Df launchd[1:c81e] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:38:04.259 Df launchd[1:ca61] [pid/436/com.apple.ScreenTimeWidgetApplication.ScreenTimeWidgetExtension [748]:] extension already interrupted clean exit attempt
2023-04-07 04:38:05.670 Df launchd[1:ca61] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:38:05.670 Df launchd[1:ca61] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:38:05.670 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] xpcproxy spawned with pid 4878
2023-04-07 04:38:05.670 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:05.670 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] service state: xpcproxy
2023-04-07 04:38:05.670 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] deferred event: domain spawn response: 0
2023-04-07 04:38:05.670 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:05.672 Df launchd[1:ca35] [system/net.langui.FTPServer [4878]:] service state: running
2023-04-07 04:38:05.673 Df launchd[1:ca35] [system/net.langui.FTPServer [4878]:] internal event: INIT, code = 0
2023-04-07 04:38:05.673 Df launchd[1:ca35] [system/net.langui.FTPServer [4878]:] Successfully spawned ftpserver.py[4878] because inefficient
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] exited due to exit(127)
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] service state: exited
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] internal event: EXITED, code = 0
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer [4878]:] service state: not running
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:38:05.674 Df launchd[1:ca61] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000:] service state: spawning
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000 [4879]:] xpcproxy spawned with pid 4879
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000 [4879]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000 [4879]:] service state: xpcproxy
2023-04-07 04:38:07.653 Df launchd[1:ca35] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000 [4879]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:07.658 Df launchd[1:ca61] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000 [4879]:] service state: running
2023-04-07 04:38:07.658 Df launchd[1:ca61] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000 [4879]:] internal event: INIT, code = 0
2023-04-07 04:38:07.658 Df launchd[1:ca61] [user/501/com.apple.mdworker.shared.03000000-0200-0000-0000-000000000000 [4879]:] Successfully spawned mdworker_shared[4879] because ipc (mach)
2023-04-07 04:38:15.677 Df launchd[1:ca35] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:38:15.677 Df launchd[1:ca35] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:38:15.677 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] xpcproxy spawned with pid 4880
2023-04-07 04:38:15.677 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:15.677 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] service state: xpcproxy
2023-04-07 04:38:15.678 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] deferred event: domain spawn response: 0
2023-04-07 04:38:15.678 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:15.680 Df launchd[1:cbf0] [system/net.langui.FTPServer [4880]:] service state: running
2023-04-07 04:38:15.680 Df launchd[1:cbf0] [system/net.langui.FTPServer [4880]:] internal event: INIT, code = 0
2023-04-07 04:38:15.680 Df launchd[1:cbf0] [system/net.langui.FTPServer [4880]:] Successfully spawned ftpserver.py[4880] because inefficient
2023-04-07 04:38:15.681 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] exited due to exit(127)
2023-04-07 04:38:15.681 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] service state: exited
2023-04-07 04:38:15.681 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] internal event: EXITED, code = 0
2023-04-07 04:38:15.681 Df launchd[1:ca35] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:38:15.681 Df launchd[1:ca35] [system/net.langui.FTPServer [4880]:] service state: not running
2023-04-07 04:38:15.681 Df launchd[1:ca35] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:38:15.682 Df launchd[1:ca35] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:15.682 Df launchd[1:ca35] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:38:15.682 Df launchd[1:ca35] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:38:21.838 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:21.838 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd:] service state: spawn scheduled
2023-04-07 04:38:21.838 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd:] service state: spawning
2023-04-07 04:38:21.838 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd:] launching: xpc event
2023-04-07 04:38:21.839 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] xpcproxy spawned with pid 4881
2023-04-07 04:38:21.839 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:21.839 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] service state: xpcproxy
2023-04-07 04:38:21.839 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:21.843 Df launchd[1:cc04] [gui/501/com.apple.mediaanalysisd [4881]:] service state: running
2023-04-07 04:38:21.843 Df launchd[1:cc04] [gui/501/com.apple.mediaanalysisd [4881]:] internal event: INIT, code = 0
2023-04-07 04:38:21.843 Df launchd[1:cc04] [gui/501/com.apple.mediaanalysisd [4881]:] Successfully spawned mediaanalysisd[4881] because xpc event
2023-04-07 04:38:21.849 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] uncorking exec source upfront
2023-04-07 04:38:21.849 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] created
2023-04-07 04:38:21.850 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] uncorking domain
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.ANECompilerService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.AssetCacheLocatorService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.CGXPCServicesAgent
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.CMValidateMovieDataReferenceService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.ColorSyncXPCAgent
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.CoreDisplay.XPCService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.CoreMLModelSecurityService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.DPSubmissionService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.FileProvider.ArchiveService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.ImageIOXPCService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.LoginUserService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.MTLCompilerService:] created the implicit endpoint upfront
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.MTLCompilerService:] draining messages from com.apple.MTLCompilerService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.OSLogService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.PerfPowerTelemetryClientRegistrationService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.Photos.CPLDiagnose
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration.Reader
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.StreamingUnzipService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.ColorPickerImageLoader
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.arm64
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.x86_64
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.VersionsUIHelper
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.WindowSharingControlViewService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.documentPopoverViewService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.openAndSavePanelService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.sandboxedServiceRunner
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.AUHostingService.arm64e:] created the implicit endpoint upfront
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.AUHostingService.arm64e:] draining messages from com.apple.audio.AUHostingService.arm64e
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.AUHostingService.x86-64:] created the implicit endpoint upfront
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.AUHostingService.x86-64:] draining messages from com.apple.audio.AUHostingService.x86-64
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.audio.CarbonComponentScanner.x86-64
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.audio.ComponentTagHelper
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.Core-Audio-Driver-Service:] created the implicit endpoint upfront
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.Core-Audio-Driver-Service:] draining messages from com.apple.audio.Core-Audio-Driver-Service
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.Core-Audio-Driver-Service.helper:] created the implicit endpoint upfront
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.audio.Core-Audio-Driver-Service.helper:] draining messages from com.apple.audio.Core-Audio-Driver-Service.helper
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.audio.DriverHelper
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.audio.InfoHelper
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.audio.SandboxHelper
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.automator.xpc.workflowServiceRunner
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader.zonto
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder.zonto
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder.zonto
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.extensionkitservice
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.foundation.UserScriptService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.imfoundation.IMRemoteURLConnectionAgent:] created the implicit endpoint upfront
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881/com.apple.imfoundation.IMRemoteURLConnectionAgent:] draining messages from com.apple.imfoundation.IMRemoteURLConnectionAgent
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.intents.intents-helper
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.internal.DataDetectorsRemoteScanner
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.photos.ImageConversionService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.photos.VideoConversionService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.private.ANEStorageMaintainer
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.security.pboxd
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.siri.DeepSyncVerificationService
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.siri.media-indexer
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.speech.SpeechSynthesisServerXPC
2023-04-07 04:38:21.853 Df launchd[1:cc04] [pid/4881 [mediaanalysisd]:] Service stub created for com.apple.textkit.nsattributedstringagent
2023-04-07 04:38:21.854 Df launchd[1:cbf0] Flushed 20 logs [limit: 20]
2023-04-07 04:38:21.854 Df launchd[1:cbf0] Flushed 28 logs [limit: 20]
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] exited due to exit(0)
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] service state: exited
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] internal event: EXITED, code = 0
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [gui/501 [100004]:] service inactive: com.apple.mediaanalysisd
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4881]:] service state: not running
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881 [mediaanalysisd]:] shutting down
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881/com.apple.imfoundation.IMRemoteURLConnectionAgent:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881/com.apple.MTLCompilerService:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881/com.apple.audio.AUHostingService.x86-64:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881/com.apple.audio.AUHostingService.arm64e:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881/com.apple.audio.Core-Audio-Driver-Service.helper:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881/com.apple.audio.Core-Audio-Driver-Service:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [pid/4881 [mediaanalysisd]:] cleaning up
2023-04-07 04:38:22.020 Df launchd[1:cbf0] [system:] removing child: pid/4881
2023-04-07 04:38:23.137 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:23.137 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:38:23.137 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000:] service state: spawning
2023-04-07 04:38:23.137 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:38:23.137 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000 [4882]:] xpcproxy spawned with pid 4882
2023-04-07 04:38:23.138 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000 [4882]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:23.138 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000 [4882]:] service state: xpcproxy
2023-04-07 04:38:23.138 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000 [4882]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:23.142 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000 [4882]:] service state: running
2023-04-07 04:38:23.142 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000 [4882]:] internal event: INIT, code = 0
2023-04-07 04:38:23.142 Df launchd[1:cc0a] [user/501/com.apple.mdworker.shared.05000000-0400-0000-0000-000000000000 [4882]:] Successfully spawned mdworker_shared[4882] because ipc (mach)
2023-04-07 04:38:25.682 Df launchd[1:cc0a] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:38:25.682 Df launchd[1:cc0a] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:38:25.682 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] xpcproxy spawned with pid 4883
2023-04-07 04:38:25.682 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:25.682 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] service state: xpcproxy
2023-04-07 04:38:25.682 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] deferred event: domain spawn response: 0
2023-04-07 04:38:25.682 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:25.684 Df launchd[1:cbf0] [system/net.langui.FTPServer [4883]:] service state: running
2023-04-07 04:38:25.684 Df launchd[1:cbf0] [system/net.langui.FTPServer [4883]:] internal event: INIT, code = 0
2023-04-07 04:38:25.684 Df launchd[1:cbf0] [system/net.langui.FTPServer [4883]:] Successfully spawned ftpserver.py[4883] because inefficient
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] exited due to exit(127)
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] service state: exited
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] internal event: EXITED, code = 0
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer [4883]:] service state: not running
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:38:25.686 Df launchd[1:cc0a] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:38:35.696 Df launchd[1:cbf0] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:38:35.696 Df launchd[1:cbf0] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:38:35.696 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] xpcproxy spawned with pid 4884
2023-04-07 04:38:35.696 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:35.696 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] service state: xpcproxy
2023-04-07 04:38:35.696 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] deferred event: domain spawn response: 0
2023-04-07 04:38:35.696 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:35.698 Df launchd[1:cc4e] [system/net.langui.FTPServer [4884]:] service state: running
2023-04-07 04:38:35.698 Df launchd[1:cc4e] [system/net.langui.FTPServer [4884]:] internal event: INIT, code = 0
2023-04-07 04:38:35.698 Df launchd[1:cc4e] [system/net.langui.FTPServer [4884]:] Successfully spawned ftpserver.py[4884] because inefficient
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] exited due to exit(127)
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] service state: exited
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] internal event: EXITED, code = 0
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer [4884]:] service state: not running
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:38:35.700 Df launchd[1:cbf0] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] service state: spawn scheduled
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] service state: spawning
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] launching: xpc event
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4885]:] xpcproxy spawned with pid 4885
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4885]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4885]:] service state: xpcproxy
2023-04-07 04:38:37.768 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4885]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:37.774 Df launchd[1:cc55] [gui/501/com.apple.mediaanalysisd [4885]:] service state: running
2023-04-07 04:38:37.774 Df launchd[1:cc55] [gui/501/com.apple.mediaanalysisd [4885]:] internal event: INIT, code = 0
2023-04-07 04:38:37.774 Df launchd[1:cc55] [gui/501/com.apple.mediaanalysisd [4885]:] Successfully spawned mediaanalysisd[4885] because xpc event
2023-04-07 04:38:37.779 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] uncorking exec source upfront
2023-04-07 04:38:37.779 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] created
2023-04-07 04:38:37.780 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] uncorking domain
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.ANECompilerService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.AssetCacheLocatorService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.CGXPCServicesAgent
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.CMValidateMovieDataReferenceService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.ColorSyncXPCAgent
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.CoreDisplay.XPCService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.CoreMLModelSecurityService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.DPSubmissionService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.FileProvider.ArchiveService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.ImageIOXPCService
2023-04-07 04:38:37.782 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.LoginUserService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.MTLCompilerService:] created the implicit endpoint upfront
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.MTLCompilerService:] draining messages from com.apple.MTLCompilerService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.OSLogService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.PerfPowerTelemetryClientRegistrationService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.Photos.CPLDiagnose
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration.Reader
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.StreamingUnzipService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.ColorPickerImageLoader
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.arm64
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.x86_64
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.VersionsUIHelper
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.WindowSharingControlViewService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.documentPopoverViewService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.openAndSavePanelService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.sandboxedServiceRunner
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.AUHostingService.arm64e:] created the implicit endpoint upfront
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.AUHostingService.arm64e:] draining messages from com.apple.audio.AUHostingService.arm64e
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.AUHostingService.x86-64:] created the implicit endpoint upfront
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.AUHostingService.x86-64:] draining messages from com.apple.audio.AUHostingService.x86-64
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.audio.CarbonComponentScanner.x86-64
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.audio.ComponentTagHelper
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.Core-Audio-Driver-Service:] created the implicit endpoint upfront
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.Core-Audio-Driver-Service:] draining messages from com.apple.audio.Core-Audio-Driver-Service
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.Core-Audio-Driver-Service.helper:] created the implicit endpoint upfront
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.audio.Core-Audio-Driver-Service.helper:] draining messages from com.apple.audio.Core-Audio-Driver-Service.helper
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.audio.DriverHelper
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.audio.InfoHelper
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.audio.SandboxHelper
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.automator.xpc.workflowServiceRunner
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader.zonto
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder.zonto
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder.zonto
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.extensionkitservice
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.foundation.UserScriptService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.imfoundation.IMRemoteURLConnectionAgent:] created the implicit endpoint upfront
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885/com.apple.imfoundation.IMRemoteURLConnectionAgent:] draining messages from com.apple.imfoundation.IMRemoteURLConnectionAgent
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.intents.intents-helper
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.internal.DataDetectorsRemoteScanner
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.photos.ImageConversionService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.photos.VideoConversionService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.private.ANEStorageMaintainer
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.security.pboxd
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.siri.DeepSyncVerificationService
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.siri.media-indexer
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.speech.SpeechSynthesisServerXPC
2023-04-07 04:38:37.783 Df launchd[1:cc4e] [pid/4885 [mediaanalysisd]:] Service stub created for com.apple.textkit.nsattributedstringagent
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4885]:] exited due to exit(0)
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4885]:] service state: exited
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4885]:] internal event: EXITED, code = 0
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [gui/501 [100004]:] service inactive: com.apple.mediaanalysisd
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [gui/501/com.apple.mediaanalysisd [4885]:] service state: not running
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885 [mediaanalysisd]:] shutting down
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885/com.apple.imfoundation.IMRemoteURLConnectionAgent:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885/com.apple.MTLCompilerService:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885/com.apple.audio.AUHostingService.x86-64:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885/com.apple.audio.AUHostingService.arm64e:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885/com.apple.audio.Core-Audio-Driver-Service.helper:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885/com.apple.audio.Core-Audio-Driver-Service:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [pid/4885 [mediaanalysisd]:] cleaning up
2023-04-07 04:38:37.920 Df launchd[1:cbf0] [system:] removing child: pid/4885
2023-04-07 04:38:43.610 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:43.610 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000:] service state: spawn scheduled
2023-04-07 04:38:43.610 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000:] service state: spawning
2023-04-07 04:38:43.610 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000:] launching: ipc (mach)
2023-04-07 04:38:43.611 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] xpcproxy spawned with pid 4886
2023-04-07 04:38:43.611 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:43.611 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] service state: xpcproxy
2023-04-07 04:38:43.611 Df launchd[1:cc4e] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:43.615 Df launchd[1:cc92] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] service state: running
2023-04-07 04:38:43.616 Df launchd[1:cc92] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] internal event: INIT, code = 0
2023-04-07 04:38:43.616 Df launchd[1:cc92] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] Successfully spawned mdworker_shared[4886] because ipc (mach)
2023-04-07 04:38:44.172 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] Service only ran for 6 seconds. Pushing respawn out by 4 seconds.
2023-04-07 04:38:44.172 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:44.172 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] service state: spawn scheduled
2023-04-07 04:38:44.172 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd:] service throttled by 4 seconds
2023-04-07 04:38:45.705 Df launchd[1:cc92] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:38:45.705 Df launchd[1:cc92] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:38:45.706 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] xpcproxy spawned with pid 4887
2023-04-07 04:38:45.706 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:45.706 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] service state: xpcproxy
2023-04-07 04:38:45.706 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] deferred event: domain spawn response: 0
2023-04-07 04:38:45.706 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:45.708 Df launchd[1:cca1] [system/net.langui.FTPServer [4887]:] service state: running
2023-04-07 04:38:45.708 Df launchd[1:cca1] [system/net.langui.FTPServer [4887]:] internal event: INIT, code = 0
2023-04-07 04:38:45.708 Df launchd[1:cca1] [system/net.langui.FTPServer [4887]:] Successfully spawned ftpserver.py[4887] because inefficient
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] exited due to exit(127)
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] service state: exited
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] internal event: EXITED, code = 0
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer [4887]:] service state: not running
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:38:45.709 Df launchd[1:cc92] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:38:48.175 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd:] service state: spawning
2023-04-07 04:38:48.175 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd:] launching: xpc event
2023-04-07 04:38:48.176 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4888]:] xpcproxy spawned with pid 4888
2023-04-07 04:38:48.176 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4888]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:48.176 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4888]:] service state: xpcproxy
2023-04-07 04:38:48.176 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4888]:] deferred event: domain spawn response: 0
2023-04-07 04:38:48.176 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4888]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:48.180 Df launchd[1:cc92] [gui/501/com.apple.mediaanalysisd [4888]:] service state: running
2023-04-07 04:38:48.180 Df launchd[1:cc92] [gui/501/com.apple.mediaanalysisd [4888]:] internal event: INIT, code = 0
2023-04-07 04:38:48.180 Df launchd[1:cc92] [gui/501/com.apple.mediaanalysisd [4888]:] Successfully spawned mediaanalysisd[4888] because xpc event
2023-04-07 04:38:48.186 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] uncorking exec source upfront
2023-04-07 04:38:48.186 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] created
2023-04-07 04:38:48.187 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] uncorking domain
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.ANECompilerService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.AssetCacheLocatorService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.CGXPCServicesAgent
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.CMValidateMovieDataReferenceService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.ColorSyncXPCAgent
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.CoreDisplay.XPCService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.CoreMLModelSecurityService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.DPSubmissionService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.FileProvider.ArchiveService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.ImageIOXPCService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.LoginUserService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888/com.apple.MTLCompilerService:] created the implicit endpoint upfront
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888/com.apple.MTLCompilerService:] draining messages from com.apple.MTLCompilerService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.OSLogService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.PerfPowerTelemetryClientRegistrationService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.Photos.CPLDiagnose
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration.Reader
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.StreamingUnzipService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.ColorPickerImageLoader
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.arm64
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.x86_64
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.VersionsUIHelper
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.WindowSharingControlViewService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.documentPopoverViewService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.openAndSavePanelService
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.sandboxedServiceRunner
2023-04-07 04:38:48.189 Df launchd[1:cca1] [pid/4888/com.apple.audio.AUHostingService.arm64e:] created the implicit endpoint upfront
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.audio.AUHostingService.arm64e:] draining messages from com.apple.audio.AUHostingService.arm64e
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.audio.AUHostingService.x86-64:] created the implicit endpoint upfront
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.audio.AUHostingService.x86-64:] draining messages from com.apple.audio.AUHostingService.x86-64
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.audio.CarbonComponentScanner.x86-64
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.audio.ComponentTagHelper
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.audio.Core-Audio-Driver-Service:] created the implicit endpoint upfront
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.audio.Core-Audio-Driver-Service:] draining messages from com.apple.audio.Core-Audio-Driver-Service
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.audio.Core-Audio-Driver-Service.helper:] created the implicit endpoint upfront
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.audio.Core-Audio-Driver-Service.helper:] draining messages from com.apple.audio.Core-Audio-Driver-Service.helper
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.audio.DriverHelper
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.audio.InfoHelper
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.audio.SandboxHelper
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.automator.xpc.workflowServiceRunner
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader.zonto
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder.zonto
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder.zonto
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.extensionkitservice
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.foundation.UserScriptService
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.imfoundation.IMRemoteURLConnectionAgent:] created the implicit endpoint upfront
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888/com.apple.imfoundation.IMRemoteURLConnectionAgent:] draining messages from com.apple.imfoundation.IMRemoteURLConnectionAgent
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.intents.intents-helper
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.internal.DataDetectorsRemoteScanner
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.photos.ImageConversionService
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.photos.VideoConversionService
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.private.ANEStorageMaintainer
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.security.pboxd
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.siri.DeepSyncVerificationService
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.siri.media-indexer
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.speech.SpeechSynthesisServerXPC
2023-04-07 04:38:48.190 Df launchd[1:cca1] [pid/4888 [mediaanalysisd]:] Service stub created for com.apple.textkit.nsattributedstringagent
2023-04-07 04:38:48.190 Df launchd[1:cc4e] Flushed 22 logs [limit: 20]
2023-04-07 04:38:48.375 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4888]:] exited due to exit(0)
2023-04-07 04:38:48.375 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4888]:] service state: exited
2023-04-07 04:38:48.375 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4888]:] internal event: EXITED, code = 0
2023-04-07 04:38:48.375 Df launchd[1:cc4e] [gui/501 [100004]:] service inactive: com.apple.mediaanalysisd
2023-04-07 04:38:48.375 Df launchd[1:cc4e] [gui/501/com.apple.mediaanalysisd [4888]:] service state: not running
2023-04-07 04:38:48.375 Df launchd[1:cc4e] [pid/4888 [mediaanalysisd]:] shutting down
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [pid/4888/com.apple.imfoundation.IMRemoteURLConnectionAgent:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [pid/4888/com.apple.MTLCompilerService:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [pid/4888/com.apple.audio.AUHostingService.x86-64:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [pid/4888/com.apple.audio.AUHostingService.arm64e:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [pid/4888/com.apple.audio.Core-Audio-Driver-Service.helper:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [pid/4888/com.apple.audio.Core-Audio-Driver-Service:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [pid/4888 [mediaanalysisd]:] cleaning up
2023-04-07 04:38:48.376 Df launchd[1:cc4e] [system:] removing child: pid/4888
2023-04-07 04:38:54.483 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd:] Service only ran for 6 seconds. Pushing respawn out by 4 seconds.
2023-04-07 04:38:54.483 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:54.483 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd:] service state: spawn scheduled
2023-04-07 04:38:54.483 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd:] service throttled by 4 seconds
2023-04-07 04:38:55.713 Df launchd[1:cca1] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:38:55.713 Df launchd[1:cca1] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:38:55.714 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] xpcproxy spawned with pid 4889
2023-04-07 04:38:55.714 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:55.714 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] service state: xpcproxy
2023-04-07 04:38:55.714 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] deferred event: domain spawn response: 0
2023-04-07 04:38:55.714 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:55.716 Df launchd[1:ccdf] [system/net.langui.FTPServer [4889]:] service state: running
2023-04-07 04:38:55.716 Df launchd[1:ccdf] [system/net.langui.FTPServer [4889]:] internal event: INIT, code = 0
2023-04-07 04:38:55.716 Df launchd[1:ccdf] [system/net.langui.FTPServer [4889]:] Successfully spawned ftpserver.py[4889] because inefficient
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] exited due to exit(127)
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] service state: exited
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] internal event: EXITED, code = 0
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer [4889]:] service state: not running
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:38:55.718 Df launchd[1:cca1] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:38:58.230 Df launchd[1:ccdf] [user/503:] failed lookup: name = com.apple.cloudd, requestor = secd[687], error = 3: No such process
2023-04-07 04:38:58.485 Df launchd[1:cce0] [gui/501/com.apple.mediaanalysisd:] service state: spawning
2023-04-07 04:38:58.485 Df launchd[1:cce0] [gui/501/com.apple.mediaanalysisd:] launching: xpc event
2023-04-07 04:38:58.485 Df launchd[1:cce0] [gui/501/com.apple.mediaanalysisd [4890]:] xpcproxy spawned with pid 4890
2023-04-07 04:38:58.485 Df launchd[1:cce0] [gui/501/com.apple.mediaanalysisd [4890]:] internal event: SPAWNED, code = 0
2023-04-07 04:38:58.485 Df launchd[1:cce0] [gui/501/com.apple.mediaanalysisd [4890]:] service state: xpcproxy
2023-04-07 04:38:58.485 Df launchd[1:cce0] [gui/501/com.apple.mediaanalysisd [4890]:] deferred event: domain spawn response: 0
2023-04-07 04:38:58.485 Df launchd[1:cce0] [gui/501/com.apple.mediaanalysisd [4890]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:38:58.490 Df launchd[1:ccdf] [gui/501/com.apple.mediaanalysisd [4890]:] service state: running
2023-04-07 04:38:58.490 Df launchd[1:ccdf] [gui/501/com.apple.mediaanalysisd [4890]:] internal event: INIT, code = 0
2023-04-07 04:38:58.490 Df launchd[1:ccdf] [gui/501/com.apple.mediaanalysisd [4890]:] Successfully spawned mediaanalysisd[4890] because xpc event
2023-04-07 04:38:58.496 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] uncorking exec source upfront
2023-04-07 04:38:58.496 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] created
2023-04-07 04:38:58.496 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] uncorking domain
2023-04-07 04:38:58.499 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.ANECompilerService
2023-04-07 04:38:58.499 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.AssetCacheLocatorService
2023-04-07 04:38:58.499 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.CGXPCServicesAgent
2023-04-07 04:38:58.499 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.CMValidateMovieDataReferenceService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.ColorSyncXPCAgent
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.CoreDisplay.XPCService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.CoreMLModelSecurityService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.DPSubmissionService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.FileProvider.ArchiveService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.ImageIOXPCService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.LoginUserService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.MTLCompilerService:] created the implicit endpoint upfront
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.MTLCompilerService:] draining messages from com.apple.MTLCompilerService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.OSLogService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.PerfPowerTelemetryClientRegistrationService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.Photos.CPLDiagnose
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration.Reader
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.StreamingUnzipService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.ColorPickerImageLoader
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.arm64
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.x86_64
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.VersionsUIHelper
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.WindowSharingControlViewService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.documentPopoverViewService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.openAndSavePanelService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.sandboxedServiceRunner
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.AUHostingService.arm64e:] created the implicit endpoint upfront
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.AUHostingService.arm64e:] draining messages from com.apple.audio.AUHostingService.arm64e
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.AUHostingService.x86-64:] created the implicit endpoint upfront
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.AUHostingService.x86-64:] draining messages from com.apple.audio.AUHostingService.x86-64
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.audio.CarbonComponentScanner.x86-64
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.audio.ComponentTagHelper
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.Core-Audio-Driver-Service:] created the implicit endpoint upfront
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.Core-Audio-Driver-Service:] draining messages from com.apple.audio.Core-Audio-Driver-Service
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.Core-Audio-Driver-Service.helper:] created the implicit endpoint upfront
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.audio.Core-Audio-Driver-Service.helper:] draining messages from com.apple.audio.Core-Audio-Driver-Service.helper
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.audio.DriverHelper
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.audio.InfoHelper
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.audio.SandboxHelper
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.automator.xpc.workflowServiceRunner
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader.zonto
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder.zonto
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder.zonto
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.extensionkitservice
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.foundation.UserScriptService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.imfoundation.IMRemoteURLConnectionAgent:] created the implicit endpoint upfront
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890/com.apple.imfoundation.IMRemoteURLConnectionAgent:] draining messages from com.apple.imfoundation.IMRemoteURLConnectionAgent
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.intents.intents-helper
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.internal.DataDetectorsRemoteScanner
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.photos.ImageConversionService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.photos.VideoConversionService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.private.ANEStorageMaintainer
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.security.pboxd
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.siri.DeepSyncVerificationService
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.siri.media-indexer
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.speech.SpeechSynthesisServerXPC
2023-04-07 04:38:58.500 Df launchd[1:cce0] [pid/4890 [mediaanalysisd]:] Service stub created for com.apple.textkit.nsattributedstringagent
2023-04-07 04:38:58.500 Df launchd[1:cca1] Flushed 23 logs [limit: 20]
2023-04-07 04:38:58.501 Df launchd[1:cca1] Flushed 26 logs [limit: 20]
2023-04-07 04:38:58.671 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4890]:] exited due to exit(0)
2023-04-07 04:38:58.671 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4890]:] service state: exited
2023-04-07 04:38:58.671 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4890]:] internal event: EXITED, code = 0
2023-04-07 04:38:58.671 Df launchd[1:cca1] [gui/501 [100004]:] service inactive: com.apple.mediaanalysisd
2023-04-07 04:38:58.671 Df launchd[1:cca1] [gui/501/com.apple.mediaanalysisd [4890]:] service state: not running
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890 [mediaanalysisd]:] shutting down
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890/com.apple.imfoundation.IMRemoteURLConnectionAgent:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890/com.apple.MTLCompilerService:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890/com.apple.audio.AUHostingService.x86-64:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890/com.apple.audio.AUHostingService.arm64e:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890/com.apple.audio.Core-Audio-Driver-Service.helper:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890/com.apple.audio.Core-Audio-Driver-Service:] internal event: PETRIFIED, code = 0
2023-04-07 04:38:58.671 Df launchd[1:cca1] [pid/4890 [mediaanalysisd]:] cleaning up
2023-04-07 04:38:58.671 Df launchd[1:cca1] [system:] removing child: pid/4890
2023-04-07 04:39:05.719 Df launchd[1:cca1] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:39:05.719 Df launchd[1:cca1] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:39:05.720 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] xpcproxy spawned with pid 4891
2023-04-07 04:39:05.720 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] internal event: SPAWNED, code = 0
2023-04-07 04:39:05.720 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] service state: xpcproxy
2023-04-07 04:39:05.720 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] deferred event: domain spawn response: 0
2023-04-07 04:39:05.720 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:39:05.722 Df launchd[1:cd0f] [system/net.langui.FTPServer [4891]:] service state: running
2023-04-07 04:39:05.722 Df launchd[1:cd0f] [system/net.langui.FTPServer [4891]:] internal event: INIT, code = 0
2023-04-07 04:39:05.722 Df launchd[1:cd0f] [system/net.langui.FTPServer [4891]:] Successfully spawned ftpserver.py[4891] because inefficient
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] exited due to exit(127)
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] service state: exited
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] internal event: EXITED, code = 0
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer [4891]:] service state: not running
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:39:05.724 Df launchd[1:cca1] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:39:13.892 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:39:13.892 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd:] service state: spawn scheduled
2023-04-07 04:39:13.892 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd:] service state: spawning
2023-04-07 04:39:13.892 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd:] launching: xpc event
2023-04-07 04:39:13.893 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd [4892]:] xpcproxy spawned with pid 4892
2023-04-07 04:39:13.893 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd [4892]:] internal event: SPAWNED, code = 0
2023-04-07 04:39:13.893 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd [4892]:] service state: xpcproxy
2023-04-07 04:39:13.893 Df launchd[1:cd0f] [gui/501/com.apple.mediaanalysisd [4892]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:39:13.897 Df launchd[1:cd3e] [gui/501/com.apple.mediaanalysisd [4892]:] service state: running
2023-04-07 04:39:13.897 Df launchd[1:cd3e] [gui/501/com.apple.mediaanalysisd [4892]:] internal event: INIT, code = 0
2023-04-07 04:39:13.897 Df launchd[1:cd3e] [gui/501/com.apple.mediaanalysisd [4892]:] Successfully spawned mediaanalysisd[4892] because xpc event
2023-04-07 04:39:13.903 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] uncorking exec source upfront
2023-04-07 04:39:13.903 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] created
2023-04-07 04:39:13.903 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] uncorking domain
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.ANECompilerService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.AssetCacheLocatorService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.CGXPCServicesAgent
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.CMValidateMovieDataReferenceService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.ColorSyncXPCAgent
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.CoreDisplay.XPCService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.CoreMLModelSecurityService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.DPSubmissionService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.FileProvider.ArchiveService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.ImageIOXPCService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.LoginUserService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.MTLCompilerService:] created the implicit endpoint upfront
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.MTLCompilerService:] draining messages from com.apple.MTLCompilerService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.OSLogService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.PerfPowerTelemetryClientRegistrationService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.Photos.CPLDiagnose
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.Photos.Migration.Reader
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.StreamingUnzipService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.ColorPickerImageLoader
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.arm64
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.LegacyExternalColorPickerService.x86_64
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.VersionsUIHelper
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.WindowSharingControlViewService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.documentPopoverViewService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.openAndSavePanelService
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.appkit.xpc.sandboxedServiceRunner
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.AUHostingService.arm64e:] created the implicit endpoint upfront
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.AUHostingService.arm64e:] draining messages from com.apple.audio.AUHostingService.arm64e
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.AUHostingService.x86-64:] created the implicit endpoint upfront
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.AUHostingService.x86-64:] draining messages from com.apple.audio.AUHostingService.x86-64
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.audio.CarbonComponentScanner.x86-64
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.audio.ComponentTagHelper
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.Core-Audio-Driver-Service:] created the implicit endpoint upfront
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.Core-Audio-Driver-Service:] draining messages from com.apple.audio.Core-Audio-Driver-Service
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.Core-Audio-Driver-Service.helper:] created the implicit endpoint upfront
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892/com.apple.audio.Core-Audio-Driver-Service.helper:] draining messages from com.apple.audio.Core-Audio-Driver-Service.helper
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.audio.DriverHelper
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.audio.InfoHelper
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.audio.SandboxHelper
2023-04-07 04:39:13.906 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.automator.xpc.workflowServiceRunner
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.coremedia.pluginformatreader.zonto
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videodecoder.zonto
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.coremedia.videoencoder.zonto
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.extensionkitservice
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.foundation.UserScriptService
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892/com.apple.imfoundation.IMRemoteURLConnectionAgent:] created the implicit endpoint upfront
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892/com.apple.imfoundation.IMRemoteURLConnectionAgent:] draining messages from com.apple.imfoundation.IMRemoteURLConnectionAgent
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.intents.intents-helper
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.internal.DataDetectorsRemoteScanner
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.photos.ImageConversionService
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.photos.VideoConversionService
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.private.ANEStorageMaintainer
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.security.pboxd
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.siri.DeepSyncVerificationService
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.siri.media-indexer
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.speech.SpeechSynthesisServerXPC
2023-04-07 04:39:13.907 Df launchd[1:cd0f] [pid/4892 [mediaanalysisd]:] Service stub created for com.apple.textkit.nsattributedstringagent
2023-04-07 04:39:13.907 Df launchd[1:cd3e] Flushed 22 logs [limit: 20]
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [gui/501/com.apple.mediaanalysisd [4892]:] exited due to exit(0)
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [gui/501/com.apple.mediaanalysisd [4892]:] service state: exited
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [gui/501/com.apple.mediaanalysisd [4892]:] internal event: EXITED, code = 0
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [gui/501 [100004]:] service inactive: com.apple.mediaanalysisd
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [gui/501/com.apple.mediaanalysisd [4892]:] service state: not running
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892 [mediaanalysisd]:] shutting down
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892/com.apple.imfoundation.IMRemoteURLConnectionAgent:] internal event: PETRIFIED, code = 0
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892/com.apple.MTLCompilerService:] internal event: PETRIFIED, code = 0
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892/com.apple.audio.AUHostingService.x86-64:] internal event: PETRIFIED, code = 0
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892/com.apple.audio.AUHostingService.arm64e:] internal event: PETRIFIED, code = 0
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892/com.apple.audio.Core-Audio-Driver-Service.helper:] internal event: PETRIFIED, code = 0
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892/com.apple.audio.Core-Audio-Driver-Service:] internal event: PETRIFIED, code = 0
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [pid/4892 [mediaanalysisd]:] cleaning up
2023-04-07 04:39:14.040 Df launchd[1:cd3e] [system:] removing child: pid/4892
2023-04-07 04:39:15.726 Df launchd[1:cd3e] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:39:15.727 Df launchd[1:cd3e] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:39:15.727 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] xpcproxy spawned with pid 4893
2023-04-07 04:39:15.727 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] internal event: SPAWNED, code = 0
2023-04-07 04:39:15.727 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] service state: xpcproxy
2023-04-07 04:39:15.727 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] deferred event: domain spawn response: 0
2023-04-07 04:39:15.727 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:39:15.729 Df launchd[1:cd0f] [system/net.langui.FTPServer [4893]:] service state: running
2023-04-07 04:39:15.729 Df launchd[1:cd0f] [system/net.langui.FTPServer [4893]:] internal event: INIT, code = 0
2023-04-07 04:39:15.729 Df launchd[1:cd0f] [system/net.langui.FTPServer [4893]:] Successfully spawned ftpserver.py[4893] because inefficient
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] exited due to exit(127)
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] service state: exited
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] internal event: EXITED, code = 0
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer [4893]:] service state: not running
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:39:15.731 Df launchd[1:cd3e] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:39:25.643 Df launchd[1:cd0f] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] exited due to SIGKILL | sent by mds[126]
2023-04-07 04:39:25.643 Df launchd[1:cd0f] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] service state: exited
2023-04-07 04:39:25.643 Df launchd[1:cd0f] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] internal event: EXITED, code = 0
2023-04-07 04:39:25.643 Df launchd[1:cd0f] [user/503:] service inactive: com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000
2023-04-07 04:39:25.643 Df launchd[1:cd0f] [user/503:] removing service: com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000
2023-04-07 04:39:25.643 Df launchd[1:cd0f] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] internal event: PETRIFIED, code = 0
2023-04-07 04:39:25.643 Df launchd[1:cd0f] [user/503/com.apple.mdworker.shared.04000000-0200-0000-0000-000000000000 [4886]:] service state: not running
2023-04-07 04:39:25.731 Df launchd[1:cebf] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:39:25.731 Df launchd[1:cebf] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:39:25.732 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] xpcproxy spawned with pid 4895
2023-04-07 04:39:25.732 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] internal event: SPAWNED, code = 0
2023-04-07 04:39:25.732 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] service state: xpcproxy
2023-04-07 04:39:25.732 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] deferred event: domain spawn response: 0
2023-04-07 04:39:25.732 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:39:25.734 Df launchd[1:cd0f] [system/net.langui.FTPServer [4895]:] service state: running
2023-04-07 04:39:25.734 Df launchd[1:cd0f] [system/net.langui.FTPServer [4895]:] internal event: INIT, code = 0
2023-04-07 04:39:25.734 Df launchd[1:cd0f] [system/net.langui.FTPServer [4895]:] Successfully spawned ftpserver.py[4895] because inefficient
2023-04-07 04:39:25.735 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] exited due to exit(127)
2023-04-07 04:39:25.735 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] service state: exited
2023-04-07 04:39:25.735 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] internal event: EXITED, code = 0
2023-04-07 04:39:25.735 Df launchd[1:cebf] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:39:25.735 Df launchd[1:cebf] [system/net.langui.FTPServer [4895]:] service state: not running
2023-04-07 04:39:25.735 Df launchd[1:cebf] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:39:25.736 Df launchd[1:cebf] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:39:25.736 Df launchd[1:cebf] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:39:25.736 Df launchd[1:cebf] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:39:35.742 Df launchd[1:ceeb] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:39:35.742 Df launchd[1:ceeb] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:39:35.743 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] xpcproxy spawned with pid 4897
2023-04-07 04:39:35.743 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] internal event: SPAWNED, code = 0
2023-04-07 04:39:35.743 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] service state: xpcproxy
2023-04-07 04:39:35.743 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] deferred event: domain spawn response: 0
2023-04-07 04:39:35.743 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:39:35.745 Df launchd[1:cd0f] [system/net.langui.FTPServer [4897]:] service state: running
2023-04-07 04:39:35.745 Df launchd[1:cd0f] [system/net.langui.FTPServer [4897]:] internal event: INIT, code = 0
2023-04-07 04:39:35.745 Df launchd[1:cd0f] [system/net.langui.FTPServer [4897]:] Successfully spawned ftpserver.py[4897] because inefficient
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] exited due to exit(127)
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] service state: exited
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] internal event: EXITED, code = 0
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer [4897]:] service state: not running
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:39:35.746 Df launchd[1:ceeb] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:39:45.756 Df launchd[1:cf02] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:39:45.756 Df launchd[1:cf02] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:39:45.756 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] xpcproxy spawned with pid 4898
2023-04-07 04:39:45.756 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] internal event: SPAWNED, code = 0
2023-04-07 04:39:45.756 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] service state: xpcproxy
2023-04-07 04:39:45.756 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] deferred event: domain spawn response: 0
2023-04-07 04:39:45.756 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:39:45.759 Df launchd[1:cd0f] [system/net.langui.FTPServer [4898]:] service state: running
2023-04-07 04:39:45.759 Df launchd[1:cd0f] [system/net.langui.FTPServer [4898]:] internal event: INIT, code = 0
2023-04-07 04:39:45.759 Df launchd[1:cd0f] [system/net.langui.FTPServer [4898]:] Successfully spawned ftpserver.py[4898] because inefficient
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] exited due to exit(127)
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] service state: exited
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] internal event: EXITED, code = 0
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer [4898]:] service state: not running
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:39:45.760 Df launchd[1:cf02] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:39:55.765 Df launchd[1:cf2d] [system/net.langui.FTPServer:] service state: spawning
2023-04-07 04:39:55.765 Df launchd[1:cf2d] [system/net.langui.FTPServer:] launching: inefficient
2023-04-07 04:39:55.765 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] xpcproxy spawned with pid 4899
2023-04-07 04:39:55.765 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] internal event: SPAWNED, code = 0
2023-04-07 04:39:55.765 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] service state: xpcproxy
2023-04-07 04:39:55.765 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] deferred event: domain spawn response: 0
2023-04-07 04:39:55.765 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] internal event: SOURCE_ATTACH, code = 0
2023-04-07 04:39:55.767 Df launchd[1:cd0f] [system/net.langui.FTPServer [4899]:] service state: running
2023-04-07 04:39:55.767 Df launchd[1:cd0f] [system/net.langui.FTPServer [4899]:] internal event: INIT, code = 0
2023-04-07 04:39:55.767 Df launchd[1:cd0f] [system/net.langui.FTPServer [4899]:] Successfully spawned ftpserver.py[4899] because inefficient
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] exited due to exit(127)
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] service state: exited
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] internal event: EXITED, code = 0
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system:] service inactive: net.langui.FTPServer
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer [4899]:] service state: not running
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer:] Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer:] internal event: WILL_SPAWN, code = 0
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer:] service state: spawn scheduled
2023-04-07 04:39:55.769 Df launchd[1:cf2d] [system/net.langui.FTPServer:] service throttled by 10 seconds
2023-04-07 04:40:00.984 Df launchd[1:cf2d] [user/503/com.apple.xpc.launchd.unmanaged.cron.4901 [4901]:] added unmanaged active
2023-04-07 04:40:00.985 Df launchd[1:cf50] [user/503:] service inactive: com.apple.xpc.launchd.unmanaged.cron.4901
2023-04-07 04:40:00.985 Df launchd[1:cf50] [user/503:] removing inactive unmanaged service: com.apple.xpc.launchd.unmanaged.cron.4901

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Certainly you should look at unloading net.langui.FTPServer.
launchctl unload /path/to/net.langui.FTPServer.plist. Usually /Library/LaunchDemons/rev.erse.domain.net.langui.FTPServer.plist

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

I will do that. Maybe uninstall it altogether, as I don't need it anymore. One second.
But scrub worked with the homebrew openzfs version previously well, so I doubt that the net.langui.FTPServer is the problem.

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Yeah, its just in there, but unlikely to be the root. You could unload the ZFS ones to see if launchd stops being in top.

for i in /Library/LaunchDaemons/org.openzfsonosx.*.plist ; do echo $i ; launchctl unload $i ; done

Possibly with "sudo".

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Ran launchctl unload /path/to/net.langui.FTPServer.plist, and no new net.langui.FTPServer entries anymore.
But still a launchd process with 100% cpu.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Result for for i in /Library/LaunchDaemons/org.openzfsonosx.*.plist ; do echo $i ; launchctl unload $i ; done:

/Library/LaunchDaemons/org.openzfsonosx.InvariantDisks.plist
Warning: Expecting a LaunchAgents path since the command was ran as user. Got LaunchDaemons instead.
`launchctl bootout` is a recommended alternative.
/Library/LaunchDaemons/org.openzfsonosx.zconfigd.plist
Warning: Expecting a LaunchAgents path since the command was ran as user. Got LaunchDaemons instead.
`launchctl bootout` is a recommended alternative.
/Library/LaunchDaemons/org.openzfsonosx.zed.plist
Warning: Expecting a LaunchAgents path since the command was ran as user. Got LaunchDaemons instead.
`launchctl bootout` is a recommended alternative.
/Library/LaunchDaemons/org.openzfsonosx.zpool-import-all.plist
Warning: Expecting a LaunchAgents path since the command was ran as user. Got LaunchDaemons instead.
`launchctl bootout` is a recommended alternative.
/Library/LaunchDaemons/org.openzfsonosx.zpool-import.plist
Warning: Expecting a LaunchAgents path since the command was ran as user. Got LaunchDaemons instead.
`launchctl bootout` is a recommended alternative.

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Yep
for i in /Library/LaunchDaemons/org.openzfsonosx.*.plist ; do echo $i ; sudo launchctl unload $i ; done

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Works, but still a 100% cpu launchd.

Result for for i in /Library/LaunchDaemons/org.openzfsonosx.*.plist ; do echo $i ; sudo launchctl unload $i ; done:

/Library/LaunchDaemons/org.openzfsonosx.InvariantDisks.plist
Password:
/Library/LaunchDaemons/org.openzfsonosx.zconfigd.plist
/Library/LaunchDaemons/org.openzfsonosx.zed.plist
/Library/LaunchDaemons/org.openzfsonosx.zpool-import-all.plist
/Library/LaunchDaemons/org.openzfsonosx.zpool-import.plist

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Try it with unload->disable and unload->stop ? Not sure if the "unload" command will both disable and stop

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

$ for i in /Library/LaunchDaemons/org.openzfsonosx.*.plist ; do echo $i ; sudo launchctl stop $i ; done
/Library/LaunchDaemons/org.openzfsonosx.InvariantDisks.plist
/Library/LaunchDaemons/org.openzfsonosx.zconfigd.plist
/Library/LaunchDaemons/org.openzfsonosx.zed.plist
/Library/LaunchDaemons/org.openzfsonosx.zpool-import-all.plist
/Library/LaunchDaemons/org.openzfsonosx.zpool-import.plist

... still the 100% ...

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

$ for i in /Library/LaunchDaemons/org.openzfsonosx.*.plist ; do echo $i ; sudo launchctl disable $i ; done
/Library/LaunchDaemons/org.openzfsonosx.InvariantDisks.plist
Unrecognized target specifier.
Usage: launchctl disable <service-target>
<service-target> takes a form of <domain-target>/<service-id>.
Please refer to `man launchctl` for explanation of the <domain-target> specifiers.
/Library/LaunchDaemons/org.openzfsonosx.zconfigd.plist
Unrecognized target specifier.
Usage: launchctl disable <service-target>
<service-target> takes a form of <domain-target>/<service-id>.
Please refer to `man launchctl` for explanation of the <domain-target> specifiers.
/Library/LaunchDaemons/org.openzfsonosx.zed.plist
Unrecognized target specifier.
Usage: launchctl disable <service-target>
<service-target> takes a form of <domain-target>/<service-id>.
Please refer to `man launchctl` for explanation of the <domain-target> specifiers.
/Library/LaunchDaemons/org.openzfsonosx.zpool-import-all.plist
Unrecognized target specifier.
Usage: launchctl disable <service-target>
<service-target> takes a form of <domain-target>/<service-id>.
Please refer to `man launchctl` for explanation of the <domain-target> specifiers.
/Library/LaunchDaemons/org.openzfsonosx.zpool-import.plist
Unrecognized target specifier.
Usage: launchctl disable <service-target>
<service-target> takes a form of <domain-target>/<service-id>.
Please refer to `man launchctl` for explanation of the <domain-target> specifiers.

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Hmm what is surprising. What about disabling spotlight in the ZFS datasets;
sudo mdutil -i off /Volumes/datasetmounts

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Spotlight is already disabled for all ZFS filesystems.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

And no ZFS filesystems are currently mounted.

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Not sure then, you could run spindump against launchd and try to see what its doing. I can't check my mail until I'm home again this evening.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

         *1000  vdev_file_io_start + 205 (zfs + 1328765) [0xffffff7f9a53267d]
           *1000  zfs_file_fsync + 50 (zfs + 1386514) [0xffffff7f9a540812]
             *1000  VNOP_FSYNC + 77 (kernel + 3452493) [0xffffff800055ae4d]
               *1000  exfat_vnop_fsync + 90 (exfat + 26895) [0xffffff7f996a290f]
                 *1000  exfat_fsync_internal + 181 (exfat + 26583) [0xffffff7f996a27d7]
                   *1000  ubc_msync + 166 (kernel + 6859462) [0xffffff800089aac6]

     *673   vdev_file_io_strategy + 96 (zfs + 1329824) [0xffffff7f9a532aa0]
       *673   zfs_file_pread + 21 (zfs + 1386165) [0xffffff7f9a5406b5]
         *673   zfs_file_read_impl + 179 (zfs + 1385987) [0xffffff7f9a540603]
           *673   zfs_vn_rdwr + 173 (zfs + 105933) [0xffffff7f9a407dcd]
             *673   VNOP_READ + 114 (kernel + 3450802) [0xffffff800055a7b2]
               *673   exfat_vnop_read + 157 (exfat + 23017) [0xffffff7f996a19e9]
                 *673   cluster_read_ext + 372 (kernel + 3140628) [0xffffff800050ec14]
                   *673   ??? (kernel + 3142384) [0xffffff800050f2f0]
                     *673   ??? (kernel + 3138088) [0xffffff800050e228]
                       *673   memory_object_control_uiomove + 94 (kernel + 1047054) [0xffffff800030fa0e]
                         *673   IORWLockWrite + 144 (kernel + 581872) [0xffffff800029e0f0]
                           *673   ??? (kernel + 580369) [0xffffff800029db11]
                             *673   thread_block_reason + 199 (kernel + 607719) [0xffffff80002a45e7]
                               *673   ??? (kernel + 616530) [0xffffff80002a6852]
                                 *673   machine_switch_context + 219 (kernel + 1796827) [0xffffff80003c6adb] (blocked by krwlock for writing owned by launchd [1] thread 0xacb8)


  Thread 0xacb8    DispatchQueue "com.apple.xpc.launchd.bgioq"(25)    1001 samples (1-1001)    priority 46 (base 4)    cpu time 9.773s (28.6G cycles, 21.8G instructions, 1.31c/i)


There is a weird amount of "fsync" going on, and exfat is very slow with fsync. ZFS issues one for every write, and launch keeps issuing them as well.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Ok, the exfat HDD might be the problem.
Previously I had worked with two hfs HDDs, scrubbing in 4 hours:

  scan: scrub repaired 0B in 04:10:33 with 0 errors on Sat Apr  1 10:02:41 2023
  scan: resilvered (mirror-0) 1.23T in 05:49:42 with 0 errors on Sat Apr  1 05:52:08 2023

I had made a backup of one image to the exfat HDD and am using now one image on a hfs HDD together with the backup image on the exfat HDD.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

I will take the image on the exfat HDD offline.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Ran: sudo zpool offline pool /Volumes/My_exFAT_USB_Drive/pool.mirror1.img
Now scrubbing is running fast.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

There is still a 100% launchd process, but the kernel_task remains at around 40%, and scrubbing is running fast now.

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Thanks for your help.
I guess an advice should be added that one should avoid ZFS images on exFAT filesystems!

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

By the way, which one is the correct project to file bug reports?
The website says: openzfsonosx/zfs
The installer says: openzfsonosx/openzfs

@wq9578 wq9578 closed this as completed Apr 7, 2023
@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

And again, thanks for your excellent support!
This was really a great help.

@lundman
Copy link
Contributor

lundman commented Apr 7, 2023

Ok I shall update the website, if I remember :) Although I do still check both, the openzfs one is more correct

@wq9578
Copy link
Author

wq9578 commented Apr 7, 2023

Ok I shall update the website, if I remember :) Although I do still check both, the openzfs one is more correct

I have updated the link here: https://openzfsonosx.org/wiki/Getting_involved#Fix_and_report_bugs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants