Uploads disabled

tbret
tbret
Joined: 12 Mar 05
Posts: 2115
Credit: 4818108810
RAC: 202415

RE: In the 4+ years I've

Quote:

In the 4+ years I've been crunching here this is the first major (unplanned) problem/outage, you'll be hard pressed to find another project (and its team of programmers/scientists) as reliable and informative as Einstein@home.

Absolutely!

I have been amazed and one hardware glitch is not going to change my amazement.

TimeLord04
TimeLord04
Joined: 8 Sep 06
Posts: 1442
Credit: 72378840
RAC: 0

All Uploads completed and

All Uploads completed and reported. Back to normal, for me. :-)

TimeLord04
Have TARDIS, will travel...
Come along K-9!
Join SETI Refugees

MAGIC Quantum Mechanic
MAGIC Quantum M...
Joined: 18 Jan 05
Posts: 1704
Credit: 1069119501
RAC: 1286937

RE: RE: First time I ever

Quote:
Quote:
First time I ever had over 200 tasks *Pending Credit* here.

I can't remember the last time I had below 1400 tasks pending credit here on any given day!!! I'm currently sat on well over 1700.

I'm hoping when everything returns to normal to have below 500... :-)

It looks like you only have a few tasks left so you can let your GPU crunchers take a rare nap until we get more work

I still have a couple hundred left

DanNeely
DanNeely
Joined: 4 Sep 05
Posts: 1364
Credit: 3562358667
RAC: 197

RE: All Uploads completed

Quote:

All Uploads completed and reported. Back to normal, for me. :-)

According to the event log, I appear to've gotten some uploads done; but the server's apparently being hammered hard enough that after a few uploads it requests my client backoff for a few minutes. My remaining upload backlog in turn is preventing me from doing any fresh downloads.

Bernd Machenschalk
Bernd Machenschalk
Moderator
Administrator
Joined: 15 Oct 04
Posts: 4273
Credit: 245208851
RAC: 13214

Performance of the upload

Performance of the upload server (actually the filesystem) is still less than half than what it used to be. Fragmentation is <2%, defragmenting (the data space) wouldn't help. Apparently XFS has no way to fix/defragment/rebuild the "free inodes btree" of an existing filesystem, so it will stay that way until we completely clean the server and rebuild the whole filesystem.

BM

BM

Bernd Machenschalk
Bernd Machenschalk
Moderator
Administrator
Joined: 15 Oct 04
Posts: 4273
Credit: 245208851
RAC: 13214

FWIW ext4 performance is much

FWIW ext4 performance is much worse than XFS when you have a large number of files in a directory, which occasionally happens in particular on that server.

BM

BM

Bernd Machenschalk
Bernd Machenschalk
Moderator
Administrator
Joined: 15 Oct 04
Posts: 4273
Credit: 245208851
RAC: 13214

All applications and results

All applications and results should be visible again. Still not sending work, though.

BM

BM

jay
jay
Joined: 25 Jan 07
Posts: 99
Credit: 84044023
RAC: 0

Thanks for all of the work!

Thanks for all of the work!
And the patience to think through the scenarios.

.. reminds me of the time when all you had to do was to put in an update to the database.. and then.... :)

Thanks again,
Jay

Mike Hewson
Mike Hewson
Moderator
Joined: 1 Dec 05
Posts: 6537
Credit: 286450285
RAC: 95231

@Magic : now there's an

@Magic : now there's an animal that knows it project preferences ! :-)

Cheers, Mike.

I have made this letter longer than usual because I lack the time to make it shorter ...

... and my other CPU is a Ryzen 5950X :-) Blaise Pascal

Highlander
Highlander
Joined: 1 Jul 05
Posts: 24
Credit: 141220706
RAC: 4756

https://wiki.archlinux.org/in

https://wiki.archlinux.org/index.php/XFS

Little bit more compact form of the XFS FAQ (at end of page):

Free inode btree

Starting Linux 3.16, XFS has added a btree that tracks free inodes. It is equivalent to the existing inode allocation btree
with the exception that the free inode btree tracks inode chunks with at least one free inode. The purpose is to improve lookups for
free inode clusters for inode allocation. It improves performance on aged filesystems i.e. months or years down the track when
you have added and removed millions of files to/from the filesystem. Using this feature doesn't impact overall filesystem
reliability level or recovery capabilities.

This feature relies on the new v5 on-disk format that has been considered stable for production workloads starting Linux Kernel 3.15.
It does not change existing on-disk structures, but adds a new one that must remain consistent with the inode allocation btree; for this
reason older kernels will only be able to mount read-only filesystems with the free inode btree feature.

The feature can be enabled with finobt=1 switch when formatting a XFS partition but requires the metadata checksum to be enabled as well
via the crc=1 switch. Therefore the following options are required to take advantage of both the free inode btree and metadata checksum

# mkfs.xfs -m crc=1,finobt=1 /dev/target_partition

According to the developers, the above -m crc=1,finobt=1 option will be the default mkfs option with the upcoming xfsprogs 3.3 release.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.