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

Corrupted user journal files #24150

Closed
lynix opened this issue Jul 29, 2022 · 33 comments · Fixed by #31311
Closed

Corrupted user journal files #24150

lynix opened this issue Jul 29, 2022 · 33 comments · Fixed by #31311
Assignees
Labels
bug 🐛 Programming errors, that need preferential fixing journal

Comments

@lynix
Copy link

lynix commented Jul 29, 2022

systemd version the issue has been seen with

systemd-251.3-1

Used distribution

Arch Linux

Linux kernel version used

5.18.14.arch1-1

CPU architectures issue was seen on

x86_64

Component

journalctl, systemd-journald

Expected behaviour you didn't see

journalctl --verify does not show any errors.

Unexpected behaviour you saw

SYSTEMD_LOG_LEVEL=debug journalctl --verify shows the following error:

Failed to open journal file /var/log/journal/592150cf5ad44523af127588741e363c/user-1000@c1c3d1e59afc4735b7e0ce6b9692359a-0000000000000000-0000000000000000.journal: Bad message
Journal file /var/log/journal/592150cf5ad44523af127588741e363c/user-1000@c1c3d1e59afc4735b7e0ce6b9692359a-0000000000000000-0000000000000000.journal corrupted, ignoring file.

Note:

  • the underlying filesystem is BTRFS on an NVMe SSD
  • the filesystem is fine (checked by btrfs scrubing)
  • SMART stats are perfectly fine for the disk
  • the system has not been rebooted, so it's not an unclean shutdown or power loss
  • the corrupted file exists and has a size of 3.6 MiB
  • file permissions seem okay, other applications can read it

Steps to reproduce the problem

None, actually, simply wait a couple of days (usually 1 or 2).

I've got the feeling it always happens when the user journal is rotated, but I'm not sure.

Additional program output to the terminal or log subsystem illustrating the issue

$ SYSTEMD_LOG_LEVEL=debug journalctl --verify
Considering root directory '/run/log/journal'.
Root directory /run/log/journal added.
Considering root directory '/var/log/journal'.
Root directory /var/log/journal added.
Considering directory '/var/log/journal/592150cf5ad44523af127588741e363c'.
Directory /var/log/journal/592150cf5ad44523af127588741e363c added.
Journal effective settings seal=no keyed_hash=yes compress=yes compress_threshold_bytes=8B
File /var/log/journal/592150cf5ad44523af127588741e363c/system@541c450c00004e93bde6cc3f2d49287d-000000000001a516-0005e28ccf122b38.journal added.
(...)
File /var/log/journal/592150cf5ad44523af127588741e363c/user-1000@c1c3d1e59afc4735b7e0ce6b9692359a-0000000000032699-0005e4de62032bc5.journal added.
File /var/log/journal/592150cf5ad44523af127588741e363c/system.journal added.
File /var/log/journal/592150cf5ad44523af127588741e363c/system@541c450c00004e93bde6cc3f2d49287d-000000000003273c-0005e4e23373c762.journal added.
File /var/log/journal/592150cf5ad44523af127588741e363c/user-1000.journal added.
Failed to open journal file /var/log/journal/592150cf5ad44523af127588741e363c/user-1000@c1c3d1e59afc4735b7e0ce6b9692359a-0000000000000000-0000000000000000.journal: Bad message
Journal file /var/log/journal/592150cf5ad44523af127588741e363c/user-1000@c1c3d1e59afc4735b7e0ce6b9692359a-0000000000000000-0000000000000000.journal corrupted, ignoring file.
PASS: /var/log/journal/592150cf5ad44523af127588741e363c/system@541c450c00004e93bde6cc3f2d49287d-000000000001a516-0005e28ccf122b38.journal
(...)
PASS: /var/log/journal/592150cf5ad44523af127588741e363c/user-1000.journal
Root directory /run/log/journal removed.
Directory /var/log/journal/592150cf5ad44523af127588741e363c removed.
Root directory /var/log/journal removed.
mmap cache statistics: 83578751 context cache hit, 56628 window list hit, 641282 miss
@lynix lynix added the bug 🐛 Programming errors, that need preferential fixing label Jul 29, 2022
@lynix
Copy link
Author

lynix commented Jul 29, 2022

I think I have traced it down to this block:

if (j->toplevel_fd >= 0)
/* If there's a top-level fd defined make the path relative, explicitly, since otherwise
* openat() ignores the first argument. */
fd = openat(j->toplevel_fd, skip_slash(path), O_RDONLY|O_CLOEXEC|O_NONBLOCK);
else
fd = open(path, O_RDONLY|O_CLOEXEC|O_NONBLOCK);
if (fd < 0) {
r = log_debug_errno(errno, "Failed to open journal file %s: %m", path);
goto finish;
}

But I've got no idea what would make open() or openat() return EBADMSG.

@bluca
Copy link
Member

bluca commented Jul 29, 2022

Can you attach the corrupted journal file?

@bluca bluca added the needs-reporter-feedback ❓ There's an unanswered question, the reporter needs to answer label Jul 29, 2022
@lynix
Copy link
Author

lynix commented Jul 29, 2022

To be honest I've got concerns as it might contain sensitive information, I mean it's a user journal file and I cannot open it to check.

Any way of sharing this non-publicly with you? I could mail (or DM) you a link to the file after uploading it somewhere (e.g. a NextCloud instance).

@bluca
Copy link
Member

bluca commented Jul 29, 2022

I am not heavily involved with the journal development so let's wait for someone who understands it, but it should be fine to share privately once that happens

@cyayon
Copy link

cyayon commented Jul 31, 2022

hello,

same issue here. After each rotation, i got a corrupted journal message issue.

SYSTEMD_LOG_LEVEL=debug journalctl --verify
Considering root directory '/run/log/journal'.
Root directory /run/log/journal added.
Considering root directory '/var/log/journal'.
Root directory /var/log/journal added.
Considering directory '/var/log/journal/bed9c4a1d1e24617bb1d2977838f103c'.
Directory /var/log/journal/bed9c4a1d1e24617bb1d2977838f103c added.
Journal effective settings seal=no keyed_hash=yes compress=yes compress_threshold_bytes=8B

Failed to open journal file /var/log/journal/bed9c4a1d1e24617bb1d2977838f103c/user-1001@9a6fcf41ba5c4c31a60afbf94ecfd150-0000000000000000-0000000000000000.journal: Bad message
Considering directory '/var/log/journal/9cf8b9b884c74ec580b796f147dc299b'.
Journal file /var/log/journal/bed9c4a1d1e24617bb1d2977838f103c/user-1001@9a6fcf41ba5c4c31a60afbf94ecfd150-0000000000000000-0000000000000000.journal corrupted, ignoring file.
3f3e80: Data object references invalid entry at 1585078
File corruption detected at /var/log/journal/bed9c4a1d1e24617bb1d2977838f103c/system.journal:1584528 (of 25165824 bytes, 89%).
FAIL: /var/log/journal/bed9c4a1d1e24617bb1d2977838f103c/system.journal (Bad message)

@lynix
Copy link
Author

lynix commented Aug 3, 2022

Can we remove the 'needs-reporter-feedback' label? There is currently no unanswered question, the sample log file is uploaded and ready to be shared with anyone (dev) that wants to have a look.

I'd like to avoid having people overlook this ticket because they think there's info missing.

@lynix
Copy link
Author

lynix commented Aug 3, 2022

So after an extensive round of printf debugging I had the idea to take a look at the corrupted journal file myself, using a hex editor. To my surprise it consists entirely of 0x00 bytes, with an exception at offset 0x10 (value 0x02).

So I'm pretty sure it doesn't contain sensitive information. Here it is: corrupted.journal.gz

@mrc0mmand mrc0mmand removed the needs-reporter-feedback ❓ There's an unanswered question, the reporter needs to answer label Aug 3, 2022
@mrc0mmand mrc0mmand added this to the v252 milestone Aug 3, 2022
@DaanDeMeyer DaanDeMeyer self-assigned this Aug 3, 2022
@lynix
Copy link
Author

lynix commented Sep 28, 2022

Any more info that I could provide to help resolving this issue?

I'm seeing more and more machines being affected by this, seems that the affected systemd version has hit the Debian repositories.

@DaanDeMeyer
Copy link
Contributor

@lynix Can you send a journal file to my email (it's in my profile)? I'll need a corrupted one to figure out the problem

@bluca bluca added the needs-reporter-feedback ❓ There's an unanswered question, the reporter needs to answer label Oct 18, 2022
@lynix
Copy link
Author

lynix commented Oct 19, 2022

@DaanDeMeyer Please do have a look at the comment before my last comment ;)
I have posted a corrupted file as it basically consists of all-zero bytes (except 0x10).

@DaanDeMeyer DaanDeMeyer removed the needs-reporter-feedback ❓ There's an unanswered question, the reporter needs to answer label Oct 19, 2022
@DaanDeMeyer
Copy link
Contributor

Yeah, something is probably going wrong way earlier, I can't figure it out just from the corrupted journal file. Are all the affected machines running btrfs? I'd need journald logs to have any hope of figuring this out, they'll be in dmesg but you'll have to run systemd-journald with SYSTEMD_LOG_LEVEL=debug (use systemctl edit systemd-journald.service to add the environment variable in a unit override)

@keszybz
Copy link
Member

keszybz commented Oct 24, 2022

@cyayon please also describe your setup: architecture, distribution, kernel version, file system, systemd version.

@yuwata yuwata added the needs-reporter-feedback ❓ There's an unanswered question, the reporter needs to answer label Oct 25, 2022
@bluca bluca modified the milestones: v252, v253 Oct 31, 2022
@cyayon
Copy link

cyayon commented Nov 1, 2022

@cyayon please also describe your setup: architecture, distribution, kernel version, file system, systemd version.

Hi,
Archlinux on X86-64, kernel 5.19.x, filesystem btrfs, systemd v251 (last minor version of all)
Thanks

@HLFH
Copy link

HLFH commented Dec 29, 2022

Any plans to fix it?
I have corrupted journals since a few months now, I have never had that before.

I have done systemctl edit systemd-journald.service

[Service] 
Environment=SYSTEMD_LOG_LEVEL=debug
                                 User: root
               +                 Hostname: arch-server
               #                 Model: Supermicro A1SA2-2750F 0123456789
              ###                Distro: Arch Linux x86_64
             #####               Kernel: Linux 6.0.11-arch1-1
             ######              Uptime: 23 days, 22 hours and 34 minutes
            ; #####;             Load Average: 1.61 1.59 1.68
           +##.#####             Processes: 348
          +##########            Window Manager: Not detected
         #############;          Desktop Environment: Not detected
        ###############+         Shell: /usr/bin/zsh
       #######   #######         Terminal: xterm-256color ██ ██ ██ ██ ██ ██ ██
     .######;     ;###;`".       Packages: 1078
    .#######;     ;#####.        Temperature: 23.5 C (Max. 24.0 C)
    #########.   .########`      CPU: 8 x Intel(R) Atom(TM) CPU C2750 @ 2.40GHz
   ######'           '######     GPU: ASPEED Technology, Inc. ASPEED Graphics Family (rev 30)
  ;####                 ####;    RAM: 7552 MiB / 15986 MiB
  ##'                     '##    Disk: 829.1 GiB / 931.5 GiB
 #'                         `#   LAN IP: [...]
                                 WAN IP: [...]

Filesystem: btrfs
systemd: 252

journalctl --verify
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-1000@0677db172e024e9f811ee510fd4fcc31-000000009704bfe4-0005f0f9a375b203.journal
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-0000000097034f81-0005f0f947c3de0b.journal
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5015@4b82a96a567043cda039d5ad42dbfe4c-0000000097069b10-0005f0fa16e1d5cf.journal
3e30b8: Data object references invalid entry at 1519308                                                                                    
File corruption detected at /var/log/journal/fdced137466145c0b3056bc54f2a2217/system.journal:1517138 (of 25165824 bytes, 87%).             
FAIL: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system.journal (Message invalide)
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009708101f-0005f0fa7398c0ac.journal  
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-1000.journal                                                                  
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-1000@0677db172e024e9f811ee510fd4fcc31-000000009708ece1-0005f0faa8d2463c.journal
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017.journal                                                                  
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-0000000097086435-0005f0fa87ccb957.journal
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5015.journal                                                                  
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5015@4b82a96a567043cda039d5ad42dbfe4c-00000000970ac356-0005f0fb499ab4ea.journal

Duplicate of #24116?

Corrupted journal sent to @poettering and @DaanDeMeyer.

@HLFH
Copy link

HLFH commented Jan 11, 2023

➜  hlfh SYSTEMD_LOG_LEVEL=debug journalctl --verify
Considering root directory '/run/log/journal'.
Root directory /run/log/journal added.
Considering root directory '/var/log/journal'.
Root directory /var/log/journal added.
Considering directory '/var/log/journal/fdced137466145c0b3056bc54f2a2217'.
Directory /var/log/journal/fdced137466145c0b3056bc54f2a2217 added.
Journal effective settings seal=no keyed_hash=yes compress=yes compress_threshold_bytes=8B
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0a2801-0005f1f6847e79af.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0aac00-0005f1f6a4342b59.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0b49b4-0005f1f6ca0005b4.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0bb0dc-0005f1f6e2d67bb2.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0cb6f5-0005f1f721de85e1.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0d35a2-0005f1f74039922c.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0dbc64-0005f1f760bfdd73.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0ec0b0-0005f1f79f7ae0e0.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0f628b-0005f1f7c6913a21.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0fc486-0005f1f7de09787f.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b10c860-0005f1f81c7cafe0.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b11c515-0005f1f859543e5b.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b11cd5d-0005f1f85b48de8a.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5015.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-1000.journal added.
File /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5018.journal added.
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0a2801-0005f1f6847e79af.journal    
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0aac00-0005f1f6a4342b59.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0b49b4-0005f1f6ca0005b4.journal    
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0bb0dc-0005f1f6e2d67bb2.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0cb6f5-0005f1f721de85e1.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0d35a2-0005f1f74039922c.journal    
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0dbc64-0005f1f760bfdd73.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0ec0b0-0005f1f79f7ae0e0.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0f628b-0005f1f7c6913a21.journal    
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0fc486-0005f1f7de09787f.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b10c860-0005f1f81c7cafe0.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b11c515-0005f1f859543e5b.journal    
0c2678: Data object references invalid entry at 16bd7c8                                                                                         
File corruption detected at /var/log/journal/fdced137466145c0b3056bc54f2a2217/system.journal:16b62b0 (of 25165824 bytes, 94%).                  
FAIL: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system.journal (Message invalide)
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b11cd5d-0005f1f85b48de8a.journal       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017.journal                                                                       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5015.journal                                                                       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-1000.journal                                                                       
PASS: /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5018.journal                                                                       
Root directory /var/log/journal removed.
Root directory /run/log/journal removed.
Directory /var/log/journal/fdced137466145c0b3056bc54f2a2217 removed.
mmap cache statistics: 567901099 context cache hit, 14209171 window list hit, 113 miss

Some dmesg related to systemd-journald:

[3163180.353260] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163182.546576] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163183.028563] systemd-journald[1317068]: Compressed data object 1138 -> 558 using ZSTD
[3163183.028703] systemd-journald[1317068]: Compressed data object 4101 -> 564 using ZSTD
[3163183.028997] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163183.029105] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163183.359962] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163185.563287] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163186.046101] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163186.046259] systemd-journald[1317068]: Compressed data object 4101 -> 556 using ZSTD
[3163186.046560] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163186.046641] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163186.421159] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163188.543365] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163189.079305] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163189.079473] systemd-journald[1317068]: Compressed data object 4101 -> 583 using ZSTD
[3163189.079782] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163189.079902] systemd-journald[1317068]: Compressed data object 692 -> 336 using ZSTD
[3163189.529102] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163191.560042] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163192.046267] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163192.046404] systemd-journald[1317068]: Compressed data object 4101 -> 577 using ZSTD
[3163192.046703] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163192.046786] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163192.353421] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163193.187244] systemd-journald[1317068]: Sent WATCHDOG=1 notification.
[3163194.553475] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163195.029300] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163195.029478] systemd-journald[1317068]: Compressed data object 4101 -> 573 using ZSTD
[3163195.029773] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163195.029870] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163195.279099] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163197.440125] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163197.929343] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163197.929521] systemd-journald[1317068]: Compressed data object 4101 -> 562 using ZSTD
[3163197.929824] systemd-journald[1317068]: Compressed data object 5086 -> 2112 using ZSTD
[3163197.929921] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163198.360155] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163200.576906] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163201.062974] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163201.063135] systemd-journald[1317068]: Compressed data object 4101 -> 567 using ZSTD
[3163201.063399] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163201.063462] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163201.360187] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163203.550166] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163204.046836] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163204.046973] systemd-journald[1317068]: Compressed data object 4101 -> 577 using ZSTD
[3163204.047254] systemd-journald[1317068]: Compressed data object 5086 -> 2111 using ZSTD
[3163204.047360] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163204.333610] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163206.537004] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163207.029429] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163207.029602] systemd-journald[1317068]: Compressed data object 4101 -> 571 using ZSTD
[3163207.029901] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163207.029963] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163207.360178] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163209.543548] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163210.030646] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163210.030803] systemd-journald[1317068]: Compressed data object 4101 -> 588 using ZSTD
[3163210.031068] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163210.031163] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163210.366944] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163212.560236] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163213.093519] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163213.093653] systemd-journald[1317068]: Compressed data object 4101 -> 561 using ZSTD
[3163213.093956] systemd-journald[1317068]: Compressed data object 5086 -> 2111 using ZSTD
[3163213.094060] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163213.521091] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163215.557084] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163216.038349] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163216.038499] systemd-journald[1317068]: Compressed data object 4101 -> 573 using ZSTD
[3163216.038788] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163216.038919] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163216.597183] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163218.543699] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163219.021990] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163219.022128] systemd-journald[1317068]: Compressed data object 4101 -> 578 using ZSTD
[3163219.022441] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163219.022540] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163219.482918] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163221.560524] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163222.054765] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163222.054914] systemd-journald[1317068]: Compressed data object 4101 -> 565 using ZSTD
[3163222.055212] systemd-journald[1317068]: Compressed data object 5086 -> 2112 using ZSTD
[3163222.055315] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163222.360390] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163224.567160] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163225.106604] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163225.106758] systemd-journald[1317068]: Compressed data object 4101 -> 578 using ZSTD
[3163225.107063] systemd-journald[1317068]: Compressed data object 5086 -> 2111 using ZSTD
[3163225.107128] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163225.367607] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163227.557180] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163228.047340] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163228.047462] systemd-journald[1317068]: Compressed data object 4101 -> 571 using ZSTD
[3163228.047767] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163228.047883] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163228.350458] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163230.553833] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163231.030623] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163231.030762] systemd-journald[1317068]: Compressed data object 4101 -> 579 using ZSTD
[3163231.031090] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163231.031175] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163231.363827] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163233.550487] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163234.029955] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163234.030163] systemd-journald[1317068]: Compressed data object 4101 -> 554 using ZSTD
[3163234.030473] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163234.030592] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163234.353831] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163236.530601] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163237.013989] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163237.014124] systemd-journald[1317068]: Compressed data object 4101 -> 553 using ZSTD
[3163237.014443] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163237.014550] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163237.360554] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163239.550631] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163240.039698] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163240.039838] systemd-journald[1317068]: Compressed data object 4101 -> 557 using ZSTD
[3163240.040245] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163240.040389] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163240.374117] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163242.577374] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163243.072551] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163243.072691] systemd-journald[1317068]: Compressed data object 4101 -> 554 using ZSTD
[3163243.072981] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163243.073059] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163243.363959] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163245.557315] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163246.047762] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163246.047901] systemd-journald[1317068]: Compressed data object 4101 -> 557 using ZSTD
[3163246.048218] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163246.048312] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163246.360695] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163248.550756] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163249.080737] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163249.080888] systemd-journald[1317068]: Compressed data object 4101 -> 559 using ZSTD
[3163249.081181] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163249.081261] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163249.361322] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163251.584110] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163252.764319] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163252.764457] systemd-journald[1317068]: Compressed data object 4101 -> 558 using ZSTD
[3163252.764765] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163252.764847] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163253.110766] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163255.294151] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163255.789156] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163255.789307] systemd-journald[1317068]: Compressed data object 4101 -> 572 using ZSTD
[3163255.789631] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163255.789740] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163256.114144] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163258.314183] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163258.797988] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163258.798137] systemd-journald[1317068]: Compressed data object 4101 -> 566 using ZSTD
[3163258.798453] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163258.798548] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163259.111347] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163261.330875] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163261.814925] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163261.815052] systemd-journald[1317068]: Compressed data object 4101 -> 577 using ZSTD
[3163261.815369] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163261.815462] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163262.104645] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163264.297622] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163264.781422] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163264.781558] systemd-journald[1317068]: Compressed data object 4101 -> 555 using ZSTD
[3163264.781846] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163264.781936] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163265.110945] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163267.310956] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163267.797857] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163267.797993] systemd-journald[1317068]: Compressed data object 4101 -> 576 using ZSTD
[3163267.798266] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163267.798328] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163268.110925] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163270.311003] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163270.798134] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163270.798259] systemd-journald[1317068]: Compressed data object 4101 -> 576 using ZSTD
[3163270.798564] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163270.798759] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163271.110969] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163273.314355] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163273.798527] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163273.798661] systemd-journald[1317068]: Compressed data object 4101 -> 558 using ZSTD
[3163273.798980] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163273.799103] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163274.111003] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163276.304377] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163276.798587] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163276.798725] systemd-journald[1317068]: Compressed data object 4101 -> 564 using ZSTD
[3163276.799013] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163276.799091] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163277.110977] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163279.297697] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163279.782363] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163279.782505] systemd-journald[1317068]: Compressed data object 4101 -> 577 using ZSTD
[3163279.782819] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163279.782895] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163280.111741] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163282.311079] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163282.815894] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163282.816055] systemd-journald[1317068]: Compressed data object 4101 -> 565 using ZSTD
[3163282.816350] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163282.816456] systemd-journald[1317068]: Compressed data object 692 -> 336 using ZSTD
[3163283.111633] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163283.204007] systemd-journald[1317068]: Sent WATCHDOG=1 notification.
[3163285.304553] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163285.806779] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163285.806932] systemd-journald[1317068]: Compressed data object 4101 -> 554 using ZSTD
[3163285.807235] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163285.807375] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163286.111104] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163288.324486] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163288.815350] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163288.815472] systemd-journald[1317068]: Compressed data object 4101 -> 558 using ZSTD
[3163288.815802] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163288.815893] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163289.124494] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163291.337872] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163291.816026] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163291.816176] systemd-journald[1317068]: Compressed data object 4101 -> 562 using ZSTD
[3163291.816472] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163291.816564] systemd-journald[1317068]: Compressed data object 692 -> 330 using ZSTD
[3163292.117929] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163294.304590] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163294.790186] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163294.790324] systemd-journald[1317068]: Compressed data object 4101 -> 566 using ZSTD
[3163294.790714] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163294.790845] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163295.117822] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163297.297963] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163297.783022] systemd-journald[1317068]: Compressed data object 1138 -> 550 using ZSTD
[3163297.783172] systemd-journald[1317068]: Compressed data object 4101 -> 560 using ZSTD
[3163297.783482] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163297.783579] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163298.124004] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163300.207995] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163300.698227] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163300.698397] systemd-journald[1317068]: Compressed data object 4101 -> 566 using ZSTD
[3163300.698676] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163300.698771] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163301.114557] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163303.327989] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163303.815648] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163303.815810] systemd-journald[1317068]: Compressed data object 4101 -> 561 using ZSTD
[3163303.816074] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163303.816184] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163304.125023] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163306.268122] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163306.766317] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163306.766469] systemd-journald[1317068]: Compressed data object 4101 -> 573 using ZSTD
[3163306.766772] systemd-journald[1317068]: Compressed data object 5086 -> 2112 using ZSTD
[3163306.766876] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163307.111352] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163309.304735] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163309.784284] systemd-journald[1317068]: Compressed data object 1138 -> 557 using ZSTD
[3163309.784436] systemd-journald[1317068]: Compressed data object 4101 -> 564 using ZSTD
[3163309.784721] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163309.784815] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163310.104687] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163312.298022] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163312.774852] systemd-journald[1317068]: Compressed data object 1138 -> 558 using ZSTD
[3163312.774975] systemd-journald[1317068]: Compressed data object 4101 -> 559 using ZSTD
[3163312.775248] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163312.775368] systemd-journald[1317068]: Compressed data object 692 -> 331 using ZSTD
[3163313.114757] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163315.331512] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163315.816202] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163315.816349] systemd-journald[1317068]: Compressed data object 4101 -> 564 using ZSTD
[3163315.816647] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163315.816757] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163316.131512] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163318.334899] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163318.858430] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163318.858580] systemd-journald[1317068]: Compressed data object 4101 -> 556 using ZSTD
[3163318.858889] systemd-journald[1317068]: Compressed data object 5086 -> 2116 using ZSTD
[3163318.858968] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163319.116332] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163321.324895] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163321.891105] systemd-journald[1317068]: Compressed data object 1138 -> 550 using ZSTD
[3163321.891242] systemd-journald[1317068]: Compressed data object 4101 -> 564 using ZSTD
[3163321.891565] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163321.891627] systemd-journald[1317068]: Compressed data object 692 -> 337 using ZSTD
[3163322.141487] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163324.311557] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163324.800116] systemd-journald[1317068]: Compressed data object 1138 -> 558 using ZSTD
[3163324.800268] systemd-journald[1317068]: Compressed data object 4101 -> 560 using ZSTD
[3163324.800536] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163324.800649] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163325.105020] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163327.308342] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163327.791516] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163327.791654] systemd-journald[1317068]: Compressed data object 4101 -> 570 using ZSTD
[3163327.791972] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163327.792095] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163328.108203] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163330.318323] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163330.808699] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163330.808839] systemd-journald[1317068]: Compressed data object 4101 -> 566 using ZSTD
[3163330.809160] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163330.809274] systemd-journald[1317068]: Compressed data object 692 -> 331 using ZSTD
[3163331.104962] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163333.301800] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163333.783405] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163333.783560] systemd-journald[1317068]: Compressed data object 4101 -> 561 using ZSTD
[3163333.783852] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163333.783959] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163334.118352] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163336.315741] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163338.022212] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163338.022366] systemd-journald[1317068]: Compressed data object 4101 -> 566 using ZSTD
[3163338.022710] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163338.022880] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163338.358731] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163341.905049] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163342.392302] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163342.392464] systemd-journald[1317068]: Compressed data object 4101 -> 563 using ZSTD
[3163342.392760] systemd-journald[1317068]: Compressed data object 5086 -> 2116 using ZSTD
[3163342.392850] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163342.659756] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163344.815115] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163345.292028] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163345.292167] systemd-journald[1317068]: Compressed data object 4101 -> 567 using ZSTD
[3163345.292462] systemd-journald[1317068]: Compressed data object 5086 -> 2116 using ZSTD
[3163345.292589] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163345.611808] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163347.795168] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163348.282943] systemd-journald[1317068]: Compressed data object 1138 -> 558 using ZSTD
[3163348.283092] systemd-journald[1317068]: Compressed data object 4101 -> 561 using ZSTD
[3163348.283382] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163348.283499] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163348.625179] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163350.831865] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163351.317231] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163351.317380] systemd-journald[1317068]: Compressed data object 4101 -> 577 using ZSTD
[3163351.317714] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163351.317805] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163351.618455] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163353.825208] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163354.316767] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163354.316905] systemd-journald[1317068]: Compressed data object 4101 -> 565 using ZSTD
[3163354.317223] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163354.317340] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163354.605211] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163356.798546] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163357.284108] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163357.284242] systemd-journald[1317068]: Compressed data object 4101 -> 578 using ZSTD
[3163357.284544] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163357.284677] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163357.605282] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163359.792014] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163359.793473] systemd-journald[1317068]: Data hash table of /var/log/journal/fdced137466145c0b3056bc54f2a2217/system.journal has a fill level at 75.0 (34138 of 45511 items, 26214400 file size, 767 bytes per hash table item), suggesting rotation.
[3163359.793492] systemd-journald[1317068]: /var/log/journal/fdced137466145c0b3056bc54f2a2217/system.journal: Journal header limits reached or header out-of-date, rotating.
[3163359.793503] systemd-journald[1317068]: Rotating...
[3163359.846397] systemd-journald[1317068]: Detected btrfs file system with copy-on-write disabled, all is good.
[3163359.946214] systemd-journald[1317068]: Reserving 333 entries in field hash table.
[3163359.951217] systemd-journald[1317068]: Reserving 45511 entries in data hash table.
[3163360.679624] systemd-journald[1317068]: Failed to re-enable copy-on-write for /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b12cd66-0005f1f89813dc1f.journal: Invalid argument, rewriting file
[3163361.073127] systemd-journald[1317068]: Detected btrfs file system with copy-on-write disabled, all is good.
[3163361.187935] systemd-journald[1317068]: Reserving 333 entries in field hash table.
[3163361.193146] systemd-journald[1317068]: Reserving 45511 entries in data hash table.
[3163361.638013] systemd-journald[1317068]: Failed to re-enable copy-on-write for /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b12fcff-0005f1f8a343d2c7.journal: Invalid argument, rewriting file
[3163361.880715] systemd-journald[1317068]: Detected btrfs file system with copy-on-write disabled, all is good.
[3163362.096317] systemd-journald[1317068]: Reserving 333 entries in field hash table.
[3163362.101543] systemd-journald[1317068]: Reserving 45511 entries in data hash table.
[3163362.421368] systemd-journald[1317068]: Failed to re-enable copy-on-write for /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5015@52f8e62ad71a4cd7a2ad58eea796d8e5-000000009b135061-0005f1f8b74616b7.journal: Invalid argument, rewriting file
[3163362.655813] systemd-journald[1317068]: Detected btrfs file system with copy-on-write disabled, all is good.
[3163362.837993] systemd-journald[1317068]: Reserving 333 entries in field hash table.
[3163362.843100] systemd-journald[1317068]: Reserving 45511 entries in data hash table.
[3163363.154696] systemd-journald[1317068]: Failed to re-enable copy-on-write for /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-1000@345afaa14fa441d3b784ffe45a96dcaf-000000009b13a9ab-0005f1f8ccc4c412.journal: Invalid argument, rewriting file
[3163363.389005] systemd-journald[1317068]: Detected btrfs file system with copy-on-write disabled, all is good.
[3163363.562977] systemd-journald[1317068]: Reserving 333 entries in field hash table.
[3163363.568031] systemd-journald[1317068]: Reserving 45511 entries in data hash table.
[3163363.570385] systemd-journald[1317068]: Failed to parse UID from file name 'user-5017@950246880f54433081c2dd03b946ff52-000000009b0a2801-0005f1f6847e79af.journal', ignoring: Invalid argument
[3163363.570408] systemd-journald[1317068]: Failed to parse UID from file name 'user-5017@950246880f54433081c2dd03b946ff52-000000009b0b49b4-0005f1f6ca0005b4.journal', ignoring: Invalid argument
[3163363.570422] systemd-journald[1317068]: Failed to parse UID from file name 'user-5017@950246880f54433081c2dd03b946ff52-000000009b0d35a2-0005f1f74039922c.journal', ignoring: Invalid argument
[3163363.570437] systemd-journald[1317068]: Failed to parse UID from file name 'user-5017@950246880f54433081c2dd03b946ff52-000000009b0f628b-0005f1f7c6913a21.journal', ignoring: Invalid argument
[3163363.570451] systemd-journald[1317068]: Failed to parse UID from file name 'user-5017@950246880f54433081c2dd03b946ff52-000000009b11c515-0005f1f859543e5b.journal', ignoring: Invalid argument
[3163363.570468] systemd-journald[1317068]: Failed to parse UID from file name 'user-5017@950246880f54433081c2dd03b946ff52-000000009b12fcff-0005f1f8a343d2c7.journal', ignoring: Invalid argument
[3163363.570484] systemd-journald[1317068]: Failed to parse UID from file name 'user-5015@52f8e62ad71a4cd7a2ad58eea796d8e5-000000009b135061-0005f1f8b74616b7.journal', ignoring: Invalid argument
[3163363.570499] systemd-journald[1317068]: Failed to parse UID from file name 'user-5018@1156eb57e3ea4aa1b8bb7b5a95bfd3d7-0000000000000000-0000000000000000.journal', ignoring: Invalid argument
[3163363.570513] systemd-journald[1317068]: Failed to parse UID from file name 'user-1000@345afaa14fa441d3b784ffe45a96dcaf-000000009b13a9ab-0005f1f8ccc4c412.journal', ignoring: Invalid argument
[3163363.570546] systemd-journald[1317068]: Vacuuming...
[3163363.599131] systemd-journald[1317068]: Deleted empty archived journal /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5018@1156eb57e3ea4aa1b8bb7b5a95bfd3d7-0000000000000000-0000000000000000.journal (8.0M).
[3163363.599956] systemd-journald[1317068]: Deleted archived journal /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5017@950246880f54433081c2dd03b946ff52-000000009b0a2801-0005f1f6847e79af.journal (724.0K).
[3163363.613824] systemd-journald[1317068]: Deleted archived journal /var/log/journal/fdced137466145c0b3056bc54f2a2217/system@f8bca68e24e84091adcae856b751a096-000000009b0aac00-0005f1f6a4342b59.journal (22.6M).
[3163363.613851] systemd-journald[1317068]: Vacuuming done, freed 31.3M of archived journals from /var/log/journal/fdced137466145c0b3056bc54f2a2217.
[3163363.629952] systemd-journald[1317068]: Failed to re-enable copy-on-write for /var/log/journal/fdced137466145c0b3056bc54f2a2217/user-5018@1156eb57e3ea4aa1b8bb7b5a95bfd3d7-0000000000000000-0000000000000000.journal: Invalid argument, rewriting file
[3163363.896860] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163363.898372] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163363.898481] systemd-journald[1317068]: Compressed data object 4101 -> 558 using ZSTD
[3163363.898546] systemd-journald[1317068]: Compressed data object 1344 -> 338 using ZSTD
[3163363.898656] systemd-journald[1317068]: Compressed data object 4038 -> 1122 using ZSTD
[3163363.898845] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163363.898908] systemd-journald[1317068]: Compressed data object 692 -> 336 using ZSTD
[3163364.115257] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163364.116850] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163364.121027] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163364.133314] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163364.133441] systemd-journald[1317068]: Compressed data object 4101 -> 561 using ZSTD
[3163364.133720] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163364.133797] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163365.812018] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163366.325941] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163366.326076] systemd-journald[1317068]: Compressed data object 4101 -> 554 using ZSTD
[3163366.326355] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163366.326444] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163366.612072] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163368.805397] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163369.392714] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163369.392835] systemd-journald[1317068]: Compressed data object 4101 -> 561 using ZSTD
[3163369.393116] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163369.393206] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163369.632971] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163371.818714] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163372.359778] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163372.359901] systemd-journald[1317068]: Compressed data object 4101 -> 557 using ZSTD
[3163372.360168] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163372.360244] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163372.615844] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163373.185510] systemd-journald[1317068]: Sent WATCHDOG=1 notification.
[3163374.812141] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163375.343089] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163375.343216] systemd-journald[1317068]: Compressed data object 4101 -> 571 using ZSTD
[3163375.343499] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163375.343588] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163375.612254] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163377.808804] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163378.359813] systemd-journald[1317068]: Compressed data object 1138 -> 559 using ZSTD
[3163378.359934] systemd-journald[1317068]: Compressed data object 4101 -> 551 using ZSTD
[3163378.360218] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163378.360308] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163378.612231] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163380.792179] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163381.284907] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163381.285078] systemd-journald[1317068]: Compressed data object 4101 -> 560 using ZSTD
[3163381.285363] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163381.285441] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163381.651022] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163383.798919] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163384.309860] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163384.309995] systemd-journald[1317068]: Compressed data object 4101 -> 568 using ZSTD
[3163384.310293] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163384.310394] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163384.612242] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163386.802247] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163387.326590] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163387.326724] systemd-journald[1317068]: Compressed data object 4101 -> 563 using ZSTD
[3163387.327003] systemd-journald[1317068]: Compressed data object 5086 -> 2111 using ZSTD
[3163387.327093] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163387.605587] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163389.789037] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163390.301849] systemd-journald[1317068]: Compressed data object 1138 -> 557 using ZSTD
[3163390.301973] systemd-journald[1317068]: Compressed data object 4101 -> 564 using ZSTD
[3163390.302259] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163390.302363] systemd-journald[1317068]: Compressed data object 692 -> 336 using ZSTD
[3163390.612303] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163392.798995] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163393.335395] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163393.335550] systemd-journald[1317068]: Compressed data object 4101 -> 572 using ZSTD
[3163393.335826] systemd-journald[1317068]: Compressed data object 5086 -> 2116 using ZSTD
[3163393.335928] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163393.609017] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163395.815644] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163396.326402] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163396.326535] systemd-journald[1317068]: Compressed data object 4101 -> 562 using ZSTD
[3163396.326798] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163396.326902] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163396.619372] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163398.812373] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163399.351399] systemd-journald[1317068]: Compressed data object 1138 -> 555 using ZSTD
[3163399.351526] systemd-journald[1317068]: Compressed data object 4101 -> 565 using ZSTD
[3163399.351857] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163399.351944] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163399.612467] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163401.829056] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163402.310534] systemd-journald[1317068]: Compressed data object 1138 -> 550 using ZSTD
[3163402.310670] systemd-journald[1317068]: Compressed data object 4101 -> 573 using ZSTD
[3163402.310955] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163402.311047] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163402.612456] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163404.809111] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163405.310111] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163405.310251] systemd-journald[1317068]: Compressed data object 4101 -> 562 using ZSTD
[3163405.310554] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163405.310647] systemd-journald[1317068]: Compressed data object 692 -> 335 using ZSTD
[3163405.612381] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163405.670112] systemd-journald[1317068]: Compressed data object 1127 -> 694 using ZSTD
[3163407.795767] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163408.318645] systemd-journald[1317068]: Compressed data object 1138 -> 558 using ZSTD
[3163408.318804] systemd-journald[1317068]: Compressed data object 4101 -> 557 using ZSTD
[3163408.319106] systemd-journald[1317068]: Compressed data object 5086 -> 2117 using ZSTD
[3163408.319183] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163408.612482] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163410.809175] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163411.294204] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163411.294326] systemd-journald[1317068]: Compressed data object 4101 -> 562 using ZSTD
[3163411.294606] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163411.294695] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163411.612523] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163413.812489] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163414.718873] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163414.719010] systemd-journald[1317068]: Compressed data object 4101 -> 563 using ZSTD
[3163414.719295] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163414.719396] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163415.112604] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163417.309261] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163417.810482] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163417.810605] systemd-journald[1317068]: Compressed data object 4101 -> 555 using ZSTD
[3163417.810889] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163417.810966] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163418.105875] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163420.302661] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163420.827936] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163420.828070] systemd-journald[1317068]: Compressed data object 4101 -> 556 using ZSTD
[3163420.828353] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163420.828428] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163421.115962] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163423.295967] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163423.785776] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163423.785911] systemd-journald[1317068]: Compressed data object 4101 -> 574 using ZSTD
[3163423.786195] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163423.786295] systemd-journald[1317068]: Compressed data object 692 -> 330 using ZSTD
[3163424.112614] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163426.309348] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163426.794400] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163426.794534] systemd-journald[1317068]: Compressed data object 4101 -> 560 using ZSTD
[3163426.794780] systemd-journald[1317068]: Compressed data object 5086 -> 2113 using ZSTD
[3163426.794873] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163427.112668] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163429.309304] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163429.794327] systemd-journald[1317068]: Compressed data object 1138 -> 552 using ZSTD
[3163429.794482] systemd-journald[1317068]: Compressed data object 4101 -> 567 using ZSTD
[3163429.794794] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163429.794886] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163430.112690] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163432.306077] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163432.794693] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163432.794828] systemd-journald[1317068]: Compressed data object 4101 -> 562 using ZSTD
[3163432.795111] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163432.795187] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163433.112683] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163435.316072] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163435.786272] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163435.786402] systemd-journald[1317068]: Compressed data object 4101 -> 577 using ZSTD
[3163435.786704] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163435.786809] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163436.112704] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163438.302788] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163438.786030] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163438.786154] systemd-journald[1317068]: Compressed data object 4101 -> 556 using ZSTD
[3163438.786434] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163438.786538] systemd-journald[1317068]: Compressed data object 692 -> 336 using ZSTD
[3163439.112798] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163441.309504] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163441.794815] systemd-journald[1317068]: Compressed data object 1138 -> 549 using ZSTD
[3163441.794954] systemd-journald[1317068]: Compressed data object 4101 -> 560 using ZSTD
[3163441.795258] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163441.795356] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163442.112790] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163444.306202] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163444.794737] systemd-journald[1317068]: Compressed data object 1138 -> 561 using ZSTD
[3163444.794859] systemd-journald[1317068]: Compressed data object 4101 -> 559 using ZSTD
[3163444.795138] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163444.795229] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163445.112908] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163447.309563] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163447.786558] systemd-journald[1317068]: Compressed data object 1138 -> 553 using ZSTD
[3163447.786695] systemd-journald[1317068]: Compressed data object 4101 -> 557 using ZSTD
[3163447.786976] systemd-journald[1317068]: Compressed data object 5086 -> 2115 using ZSTD
[3163447.787064] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163448.106266] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163450.302969] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163450.795401] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163450.795536] systemd-journald[1317068]: Compressed data object 4101 -> 562 using ZSTD
[3163450.795863] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163450.795939] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163451.112921] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163453.292982] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163453.778541] systemd-journald[1317068]: Compressed data object 1138 -> 554 using ZSTD
[3163453.778663] systemd-journald[1317068]: Compressed data object 4101 -> 551 using ZSTD
[3163453.778945] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163453.779092] systemd-journald[1317068]: Compressed data object 692 -> 333 using ZSTD
[3163454.113036] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163456.309668] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163456.795050] systemd-journald[1317068]: Compressed data object 1138 -> 551 using ZSTD
[3163456.795183] systemd-journald[1317068]: Compressed data object 4101 -> 578 using ZSTD
[3163456.795482] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163456.795571] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163457.113028] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163459.299710] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163459.779021] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163459.779187] systemd-journald[1317068]: Compressed data object 4101 -> 567 using ZSTD
[3163459.779504] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163459.779611] systemd-journald[1317068]: Compressed data object 692 -> 334 using ZSTD
[3163460.119797] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163462.349771] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163462.845245] systemd-journald[1317068]: Compressed data object 1138 -> 556 using ZSTD
[3163462.845379] systemd-journald[1317068]: Compressed data object 4101 -> 558 using ZSTD
[3163462.845626] systemd-journald[1317068]: Compressed data object 5086 -> 2114 using ZSTD
[3163462.845766] systemd-journald[1317068]: Compressed data object 692 -> 332 using ZSTD
[3163463.113225] systemd-journald[1317068]: Successfully sent stream file descriptor to service manager.
[3163463.187104] systemd-journald[1317068]: Sent WATCHDOG=1 notification.

@yuwata @DaanDeMeyer Can the needs-reporter-feedback tag be removed? Thanks

@yuwata yuwata removed the needs-reporter-feedback ❓ There's an unanswered question, the reporter needs to answer label Jan 11, 2023
@HLFH
Copy link

HLFH commented Jan 18, 2023

This is the first time in 12 years that I can say: systemd does not work.

@DaanDeMeyer
Copy link
Contributor

Can your resend a corrupted journal? The previous links in the email you sent me expired

yuwata added a commit to yuwata/systemd that referenced this issue Feb 14, 2024
yuwata pushed a commit to yuwata/systemd that referenced this issue Feb 14, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Feb 14, 2024
yuwata pushed a commit to yuwata/systemd that referenced this issue Feb 14, 2024
mrc0mmand added a commit to yuwata/systemd that referenced this issue Feb 14, 2024
mrc0mmand added a commit to yuwata/systemd that referenced this issue Feb 14, 2024
mrc0mmand added a commit to yuwata/systemd that referenced this issue Feb 14, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Feb 15, 2024
If the source file is removed during copying it, then the result file may
be broken. Let's check if the file still exists during and after copying.

This is important when archiving a journal file on btrfs. Archiving
journal files is done asynchronously. So, a journal file may be removed
by the main thread of journald by journal_directory_vacuum(), while
another thread is copying the file. If that happens, a broken journal
file is created.

Fixes systemd#24150 and systemd#31222.
yuwata pushed a commit to yuwata/systemd that referenced this issue Feb 15, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Feb 15, 2024
If the source file is removed during copying it, then the result file may
be broken. Let's check if the file still exists during and after copying.

This is important when archiving a journal file on btrfs. Archiving
journal files is done asynchronously. So, a journal file may be removed
by the main thread of journald by journal_directory_vacuum(), while
another thread is copying the file. If that happens, a broken journal
file is created.

Fixes systemd#24150 and systemd#31222.
yuwata pushed a commit to yuwata/systemd that referenced this issue Feb 15, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Feb 15, 2024
As the main thread may call journal_directory_vacuum() ->
unlinkat_deallocate() while another thread is copying the file.

Fixes systemd#24150 and systemd#31222.
yuwata pushed a commit to yuwata/systemd that referenced this issue Feb 15, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Feb 15, 2024
As the main thread may call journal_directory_vacuum() ->
unlinkat_deallocate() while another thread is copying the file.

Fixes systemd#24150 and systemd#31222.
yuwata pushed a commit to yuwata/systemd that referenced this issue Feb 15, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Feb 15, 2024
As the main thread may call journal_directory_vacuum() ->
unlinkat_deallocate() while another thread is copying the file.

Fixes systemd#24150 and systemd#31222.
yuwata pushed a commit to yuwata/systemd that referenced this issue Feb 15, 2024
ayhamthemayhem pushed a commit to neighbourhoodie/nh-systemd that referenced this issue Mar 25, 2024
As the main thread may call journal_directory_vacuum() ->
unlinkat_deallocate() while another thread is copying the file.

Fixes systemd#24150 and systemd#31222.
ayhamthemayhem pushed a commit to neighbourhoodie/nh-systemd that referenced this issue Mar 25, 2024
chunyi-wu pushed a commit to chunyi-wu/systemd that referenced this issue Apr 3, 2024
As the main thread may call journal_directory_vacuum() ->
unlinkat_deallocate() while another thread is copying the file.

Fixes systemd#24150 and systemd#31222.
chunyi-wu pushed a commit to chunyi-wu/systemd that referenced this issue Apr 3, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Apr 26, 2024
As the main thread may call journal_directory_vacuum() ->
unlinkat_deallocate() while another thread is copying the file.

Fixes systemd#24150 and systemd#31222.

(cherry picked from commit 18d4e47)
yuwata pushed a commit to yuwata/systemd that referenced this issue Apr 26, 2024
yuwata added a commit to yuwata/systemd that referenced this issue Apr 26, 2024
As the main thread may call journal_directory_vacuum() ->
unlinkat_deallocate() while another thread is copying the file.

Fixes systemd#24150 and systemd#31222.

(cherry picked from commit 18d4e47)
(cherry picked from commit 0420956)
yuwata pushed a commit to yuwata/systemd that referenced this issue Apr 26, 2024
For issue systemd#24150 and systemd#31222.

(cherry picked from commit 8cc4216)
(cherry picked from commit d1a7ffc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 Programming errors, that need preferential fixing journal
Development

Successfully merging a pull request may close this issue.