RagingHungryPanda

joined 2 years ago
[–] RagingHungryPanda@lemm.ee 22 points 1 week ago (4 children)

I wish we had 5 minute headways haha.

[–] RagingHungryPanda@lemm.ee 1 points 1 week ago

Thanks for giving it a good read through! If you're getting on nvme ssds, you may find some of your problems just go away. The difference could be insane.

I was reading something recently about databases or disk layouts that were meant for business applications vs ones meant for reporting and one difference was that on disk they were either laid out by row vs by column.

[–] RagingHungryPanda@lemm.ee 1 points 2 weeks ago (2 children)

That was a bit of a hasty write, so there's probably some issues with it, but that's the gist

[–] RagingHungryPanda@lemm.ee 1 points 2 weeks ago (5 children)

yes? maybe, depending on what you mean.

Let's say you're doing a job and that job will involve reading 1M records or something. Pagination means you grab N number at a time, say 1000, in multiple queries as they're being done.

Reading your post again to try and get context, it looks like you're identifying duplicates as part of a job.

I don't know what you're using to determine a duplicate, if it's structural or not, but since you're running on HDDs, it might be faster to get that information into ram and then do the job in batches and update in batches. This will also allow you to do things like writing to the DB while doing CPU processing.

BTW, your hard disks are going to be your bottleneck unless you're reaching out over the internet, so your best bet is to move that data onto an NVMe SSD. That'll blow any other suggestion I have out of the water.

BUT! there are ways to help things out. I don't know what language you're working in. I'm a dotnet dev, so I can answer some things from that perspective.

One thing you may want to do, especially if there's other traffic on this server:

  • use WITH (NOLOCK) so that you're not stopping other reads and write on the tables you're looking at
  • use pagination, either with windowing or LIMIT/SKIP to grab only a certain number of records at a time

Use a HashSet (this can work if you have record types) or some other method of equality that's property based. Many Dictionary/HashSet types can take some kind of equality comparer.

So, what you can do is asynchronously read from the disk into memory and start some kind of processing job. If this job does also not require the disk, you can do another read while you're processing. Don't do a write and a read at the same time since you're on HDDs.

This might look something like:

offset = 0, limit = 1000

task = readBatchFromDb(offset, limit)

result = await task

data = new HashSet\<YourType>(new YourTypeEqualityComparer()) // if you only care about the equality and not the data after use, you can just store the hash codes

while (!result.IsEmpty) {

offset = advance(offset)

task = readBatchFromDb(offset, limit) // start a new read batch



dataToWork = data.exclusion(result) // or something to not rework any objects

data.addRange(result)



dataToWrite = doYourThing(dataToWork)

// don't write while reading

result = await task



await writeToDb(dataToWrite) // to not read and write. There's a lost optimization on not doing any cpu work

}



// Let's say you can set up a read or write queue to keep things busy

abstract class IoJob {

public sealed class ReadJob(your args) : IoJob

{

Task\<Data> ReadTask {get;set;}

}

public sealed class WriteJob(write data) : IoJob

{

Task WriteTask {get;set;}

}

}



Task\<IoJob> executeJob(IoJob job){

switch job {

ReadJob rj => readBatchFromDb(rj.Offset, rj.Limit), // let's say this job assigns the data to the ReadJob and returns it

WriteJob wj => writeToDb(wj) // function should return the write job

}

}



Stack\<IoJob> jobs = new ();



jobs.Enqueue(new ReadJob(offset, limit));

jobs.Enqueue(new ReadJob(advance(offset), limit)); // get the second job ready to start



job = jobs.Dequeue();

do () {

// kick off the next job

if (jobs.Peek() != null) executeJob(jobs.Peek());



if (result is ReadJob rj) {



data = await rj.Task;

if (data.IsEmpty) continue;



jobs.Enqueue(new ReadJob(next stuff))



dataToWork = data.exclusion(data)

data.AddRange(data)



dataToWrite = doYourThing(dataToWork)

jobs.Enqueue(new WriteJob(dataToWrite))

}

else if (result is WriteJob wj) {

await writeToDb(wj.Data)

}



} while ((job = jobs.Dequeue()) != null)

[–] RagingHungryPanda@lemm.ee 2 points 2 weeks ago

I've got Idrive backups at 5TB for like $5 a month or something.

[–] RagingHungryPanda@lemm.ee 4 points 2 weeks ago* (last edited 2 weeks ago)

Sweet!

What's up is everything I've been running and down is what I haven't.

not working

I haven't been able to get friendica to connect to Maria DB, so I'll eventually try just MySql. Grafana isn't running bc I would need to change a lot of things to get an exporter into each container and the truenas apps don't really allow that configuration - fine if you have docker compose though, which I've started doing more and more.

new

I just got up and running with Stirling pdf, a free (and paid) PDF editor. That looks pretty sweet.

But I'm now also using 15GB of the 32 on the system, which is still plenty for Arc cache for me

what I want

I want to rent a VPS to host various fediverse apps, probably Lemmy, pixelfed, and write freely to start, for the nomad/expect communities. I've been looking at netcup and they have some decent arm offerings.

I'd like to put Talos Linux on it so I can get some kubernetes experience. They have a good sized server for €10, so I could expand to add a DB server or one specifically for logging and metrics.

I was looking at Hetzner, but I've read that their block storage is super slow and causes timeouts on DB.

Of course, can I even run these apps on arm? I guess I gotta find that out.

One thing I'd like to do is make a web page that makes signups super easy and would create an account on all services, ideally. Not a huge deal of that isn't reasonable, but it'd be nice to allow doing it once rather than multiple times. If I could get sso, that'd be good, but I don't know how supported that is.

[–] RagingHungryPanda@lemm.ee 1 points 3 weeks ago

https://youtu.be/4d0Q64SQujY

I'm actually watching a video about that, complete with studies and everything.

[–] RagingHungryPanda@lemm.ee 1 points 3 weeks ago

Unfortunately no, it's just one log line over and over. At some point it did have the username and IP, but it usually contains neither.

[–] RagingHungryPanda@lemm.ee 2 points 3 weeks ago (2 children)

It didn't really change when I put the db in the same compose file. I have them on the same docker network, so any container can reference any other container by its name, in this case mariadb and access any ports, not just the ones that are exposed.

Evidence for this working is that MariaDB is logging the rejected connection attempts.

[–] RagingHungryPanda@lemm.ee 2 points 3 weeks ago

Now that I'm looking at it again, I wonder if I can get rid of some of this stuff 🤔

[–] RagingHungryPanda@lemm.ee 2 points 3 weeks ago* (last edited 2 weeks ago) (5 children)

Thank you for the help. Here is the last set of configurations that I was running.
Edit: this is running on my TrueNas server.

networks:
  maria-db-network:
    external: True
services:
  friendica:
    build: /mnt/MainStorage/apps/friendica/config/app
    environment:
      - FRIENDICA_ADMIN_MAIL=<admin email>
      - FRIENDICA_TZ=America/Chicago
      - FRIENDICA_LANG=en-US
      - FRIENDICA_URL=https://friendica.mydomain.com/
      - FRIENDICA_SITENAME=My Friendica
      - SMTP=<the smtp>
      - SMTP_DOMAIN=<smtp domain
      - SMTP_FROM=admin
      - SMTP_AUTH_USER=<le user>
      - SMTP_AUTH_PASS=<auth pass>
      - SMTP_TLS=true
      - SMTP_STARTTLS=true
      - MYSQL_PASSWORD=<db pass>
      - MYSQL_DATABASE=friendica
      - MYSQL_USER=friendica
      - MYSQL_HOST=mariadb
      - MYSQL_PORT=3306
    image: friendica
    networks:
      - maria-db-network
    ports:
      - '30110:80'
    volumes:
      - /mnt/MainStorage/apps/friendica/data:/var/www/html
      - /mnt/MainStorage/apps/friendica/config/app:/app

addon.config.php file:

<?php

return [
	'system' => [
		'cache_driver' => 'redis',
		'lock_driver' => 'redis',

		'redis_host' => 'redis',

		'pidfile' => '/var/run/friendica.pid',
	]
];

docker file in the config folder

FROM friendica:friendica

RUN mkdir -p /usr/src/config
COPY addon.config.php /usr/src/config/
 

Starting at midnight Thursday night through midnight Friday night, we will be joining with people across the country and beyond to demonstrate our collective outrage over the hostile takeover of our government by unelected billionaires and by those who put profits before people.  For one day, this Friday, we pledge not to buy anything from any major online or in-person retailers, and we pledge to refrain from using credit cards.  We recommend staying away from Facebook, Instagram, and “X.”   

 

This action began as a protest against those corporations who abandoned diversity, equity, and inclusion programs to placate a white supremacist administration.  Those corporations include Target, Citi Bank, Google, and Disney.  It quickly expanded into a “Buy Nothing Day,” with particular recognition of the role of finance capital.  The concept of Economic Blackout 2/28 has quickly spread on social media, propelled by activists, faith communities, students, and rank-and-file workers everywhere.  The movement goes beyond our borders. In Canada, consumers will target USA-based companies to protest Trump’s tariffs, and Mexicans will participate in the Latino Freeze Movement to protest US anti-immigrant and anti-DEI policies.

 

Please participate in this action! It is a simple act that we all can accomplish and that can quickly add up to a collective impact. 

Sign our pledge today!

 

In resistance,

National Board, CPUSA

 

I'm trying my hand at federated blogging! Here's a bit on some things that I got rid of and some things that I added while traveling as a nomad.

 

I'm starting to get in to self hosting and am looking at self-hosted blog solutions. It looks like WriteFreely is the main fediverse blog platform, with Plume as second though I don't see it used much.

But that got me thinking that it'd be good to follow federated blogs and have some long form reading that I follow, like we did back when RSS was the main way of doing things.

But how do I actually find bloggers? It looks like WriteFreely can federate with Mastodon, but it doesn't look like there's a federated blogging platform like lemmy or mastodon. Is this correct? Where I can I go (other than Medium) to find blogs and bloggers in the fediverse?

 

I previously posted about an issue where the nginx container for the Collabora application logs a GET to /robots.txt every 10 seconds. I tried modifying the files in the container, but they were reset on restart. I also tried to run the container with --log-driver=none, but was unsuccessful. Despite being a software dev, I'm new to the homelab world and trunas.

I solved it by changing the docker image and then committing those changes. The change I made was to set access_log off; in the nginx config. I did it at the server root because I don't really care about those logs for this app, but it could be done on the location level.

Here's how I did it: Here's the reference SO post that I used: https://stackoverflow.com/a/74515438

What I did was I shelled into the image:

  • sudo docker exec -it ix-collabora-nginx-1 bash
  • apt update && apt install vim
  • vi /etc/nginx/nginx.conf and add the access_log off;
    • if you're not familiar with vim, arrow key to the line you want then press 'a' to enter "append mode". Make your change, then esc, :wq!. You need the ! because the file is read only
  • apt remove vim
  • exit
  • sudo docker commit <image id>
  • sudo docker restart ix-collabora-nginx-1
 

I'm running TruNas Scale with a docker image for NextCloud and Collabora. Under Collabora, the nginx application is logging a GET to robots.txt about every second and I'm having a hard time filtering this out because it looks like the conf files for nginx get replaced on every restart. I also tried mounting my own version of the nginx.conf file, but that didn't reflect any changes.

 

These are my AllBirds after 1 year of travel. I've been looking to repair the soles, but it doesn't seem that easy. I want shoes that ventilate well and are good for a lot of walking.

These started showing wear after 3 months of just city walking.

Any recommendations? I'm posting here because there isn't much on the shoe communities.

 
 

I don't know if it's because I've been watching Factorio on YouTube or not, because I have not been searching for peanut butter. But anyway, so that's how you do it.

view more: ‹ prev next ›