Skip to main content



Eduardo Galeano: Latin America is the region of open veins. Everything, from the discovery until our times, has always been transmuted into European—or later United States—capital, and as such has accumulated in distant centers of power. Everything: the soil, its fruits and its mineral-rich depths, the people and their capacity to work and to consume, natural resources and human resources. Production methods and class structure have been successively determined from outside for each area by meshing it into the universal gearbox of capitalism. To each area has been assigned a function, always for the benefit of the foreign metropolis of the moment, and the endless chain of dependency has been endlessly extended. https://wordsmith.social/protestation/quotes#quote9134


Eduardo Galeano: Veneration for the past has always seemed to me reactionary. The right chooses to talk about the past because it prefers dead people: a quiet world, a quiet time. The powerful who legitimize their privileges by heredity cultivate nostalgia. History is studied as if we are visiting a museum; but this collection of mummies is a swindle. They lie to us about the past as they lie to us about the present: they mask the face of reality. They force the oppressed victims to absorb an alien, desiccated, sterile memory fabricated by the oppressor, so that they will resign themselves to a life that isn’t theirs as if it were the only one possible. https://wordsmith.social/protestation/quotes#quote9135


Eduardo Galeano: The Latin American cause is about all a social cause: the rebirth of Latin America must start with the overthrow of its masters, country by country. We are entering times of rebellion and change. There are those who believe that destiny rests on the knees of the gods; but the truth is that it confronts the conscience of man with a burning challenge. https://wordsmith.social/protestation/quotes#quote9136


Got my anti-cistamines today! One order of tit-tacs and one order of antiboyotics!

#hrt #trans #transfemme

reshared this

in reply to Shiri Bailem

welcome! to the world of tomorrow!

congratulations! it just gets better from here 💜



(for those unfamiliar: Framework makes a modular upgradable open laptop design, their laptops have expansion bays that accept these cards which all use standard USB-C ports as their basis, so their USB-A expansion card can technically be used as a C-A adapter on other computers)



Oh God, I'm LOVING Scott Pilgrim: Takes Off!

It Is NOT What You Expect It Is!

Shannon Prickett reshared this.

in reply to ראַף 🟣

@raf 🟣 My jaw hit the floor and never quite got off it the whole rest of the way.

I was half watching it while playing games, expecting a straight retelling with minor changes and more content... I was so confused at the end of episode 1!

in reply to Shiri Bailem

My initial expectation is it's going to be like the Matrix 4 movie with lots of callbacks but done so much better

But no spoilers! I'm checking this out!



Short Planned Maintenance Tonight


My apologies if this is inconvenient, I opted to do it on shorter notice without a set hour because (a) there's not a lot of activity on the server and (b) I'm really impatient.

I'm doing a hardware upgrade that requires rebooting the network storage backend which will bring down everything for a short time. It should take well under 30 minutes to do the hardware swap and most of the downtime is just going to be the database starting back up (which often takes in the range of another 30 minutes).

As part of this I'll also be deploying some software updates that require a reboot to take effect.



WTF?


I honestly haven't the foggiest idea how this happened, but apparently the DNS settings got changed a few days ago on the servers with absolutely no explanation (and to junk nonsense settings for some reason). I'm going to keep an eye on them to make sure they don't change again.

Additionally I think that created a cascade that caused the other problems.

Any posts you've made over the past 2-3 days haven't been sent to other servers, but will start sending now.

As far as the other problems, I think when that happened it caused so many processes to lag and take way longer and more resources than usual as any time it tried to contact another server it timed out on the dns request.



DOS Overload


There's been some recent outages of the server, the root cause I've tracked down to the server getting overloaded with requests (mostly updates from other servers). Those updates have been coming in faster than the server can process them and preventing other requests from coming through.

I've made some tweaks that I believe have resolved it, fingers crossed.

Technical explanation:

The servers ran out of php-fpm threads to handle requests. It was configured with static count of 30 each (60 total). They were definitely impacted significantly by memory leaks which kept the count low.

I've changed it from static to ondemand and increased the count to 100 each, I'll probably go in and increase it again since it's still pegged at that limit almost constantly. But thankfully running on-demand seems to be keeping the memory usage per thread drastically lower.

Where the static assignment of 30 was eating up 8GB of ram, 100 on-demand threads is only taking up 1.3GB.

I'm going to increase it until it's either hitting memory constraints or it's no longer constantly at full capacity.

in reply to Server News

There's definitely some sort of time and code problem involved as it hit again this morning even with the previous changes, though this time it only impacted updates (making posts/comments/likes, getting new posts). I think reading was unaffected because those operations are faster and require significantly less memory.

For whatever reason, sometime around midnight the server gets hit with a bunch of requests that all seem to lock up, eating up large quantities of memory and then won't exit. (With on-demand the threads exit after 10s of being idle, there was over 100 threads running continuously from midnight until I killed them around 9am). Likewise there was a very massive flood of updates from other servers corresponding to that, so I think it might just be a bunch of large servers sending bulk updates or some such.

New tuning to handle that: I put firmer time limits into PHP to prevent threads from running forever, there's two options for setting max times and the first was getting ignored (I think friendica overrode it? the second should override that and kill any threads going too long)

In addition to that, I set up a rate limiter to the inbox endpoint (where other servers send updates to), this should help keep that from overloading the server (majority of the time it'll just be slowing them down by a second or two unless the server is overloaded, at which point the rate limit should help get it accessible for users)