1079
meirl (lemmy.ml)
submitted 1 year ago by idunnololz_test@lemmy.ml to c/memes@lemmy.ml
all 46 comments
sorted by: hot top controversial new old
[-] talos@lemmy.world 59 points 1 year ago

Just came to the comments page and it said "You must log in or register to comment." I was already signed in 💀

[-] useralreadyexists@lemmy.world 15 points 1 year ago

Didn't even leave the page after my comment and got this 🤣

[-] magnetosphere@kbin.social 35 points 1 year ago

Thank you for posting this. I was wondering if the problem was with the site, or with ME.

[-] idunnololz_test@lemmy.ml 27 points 1 year ago

I love getting news from memes.

[-] boeman@lemmy.world 5 points 1 year ago

Define "problem" 😜

[-] Innocent_Bystander@lemdro.id 24 points 1 year ago
[-] NorthWestWind@lemmy.world 20 points 1 year ago

Every reload is a quantum observation

[-] scarabic@lemmy.world 20 points 1 year ago

These stability issues are going to kill the community if they keep up. We’re at a critical phase where the exodus from Reddit has slowed down and we’re trying to stand on our own legs. Those legs have to hold.

[-] MdRuckus@lemmy.world 18 points 1 year ago

Same thing goes for upvoting on some Lemmy apps. There are times I up vote something and scroll down. When I scroll back up my upvote is removed.

[-] ConsciousLochNess@sh.itjust.works 17 points 1 year ago

Haha I just sorted by new to see if people were talking about it. Had to use my SJW account.

[-] useralreadyexists@lemmy.world 13 points 1 year ago

Dude I'm cross-eyed from all the sign in refreshes.

[-] B20bob@lemmy.world 12 points 1 year ago

Glad it's not just me. I can't even log in on liftoff anymore for some reason, just sits there loading forever. Tried clearing cache and data and reinstalling to no avail.

[-] donut4ever@sh.itjust.works 12 points 1 year ago

I signed up to 3 instances with the same username because of this.

[-] hemmes@lemmy.one 3 points 1 year ago

Same, and now I’m down to my last instance.

VLemmy, my previous main just…poof, vanished.

.world is on the fritz.

Please .one keep it together.

[-] jerebear205@lemmy.world 11 points 1 year ago

Yeah, I was confused about why I couldn't post comments, saying I wasn't logged in when I was. It's a quick fix just log out then back in its works great! But it's a bit frustrating tbh.

[-] UnverifiedAPK@lemmy.ml 0 points 1 year ago

Pretty sure that's because the site was compromised and they revoked authentication tokens. But someone correct me if I'm wrong

[-] Marduk73@lemmy.world 10 points 1 year ago

Holy LOL this is seriously apt.

[-] PloKoon@lemmy.world 8 points 1 year ago

This was literally my experience 3 times in the past 1 minute before I saw this post ... 😂

[-] Selmafudd@lemmy.world 7 points 1 year ago

Thank god, I thought this was just a me problem

[-] duckCityComplex@lemmy.world 7 points 1 year ago

I had this problem in the web client and wefwef, but Jerboa is working fine. Other mobile clients might work too?

[-] Motavader@lemmy.world 2 points 1 year ago

Connect has the same issue for me. The app UI shows I'm logged in, Lemmy disagrees, so I just log in again.

[-] ckrius@lemmy.fmhy.ml 1 points 1 year ago

I've had issue with Lemmy.world on jerboa.

[-] duckCityComplex@lemmy.world 1 points 1 year ago

Yeah, I ran into it too yesterday.

[-] Laticauda@lemmy.ca 7 points 1 year ago

Made a lemmy.ca alt account because of this lol

[-] useralreadyexists@lemmy.world 6 points 1 year ago

I'm so thankful for lemm.ee ,, its so smooth. I have been hanging onto my .world account but it gets harder everyday with all the glitches.

[-] jeanofthedead@lemmy.world 3 points 1 year ago

I’m deciding between that instance and sh.it just.works.

[-] useralreadyexists@lemmy.world 2 points 1 year ago

You can't go wrong with either.

[-] pmmetits@lemmy.fmhy.ml 2 points 1 year ago

Also had to create an alt, couldn't even upvote

[-] Pacers31Colts18@sh.itjust.works 7 points 1 year ago

I'm starting to think Lemmy.world isn't the instance for me.

[-] A_Toasty_Strudel@lemmy.world 3 points 1 year ago

If having some wonkiness to deal with while the instance is still going through these growing pains it too much to bear, then signing up for an instance more local you may help solve a lot of issues.

[-] clearleaf@lemmy.ca 7 points 1 year ago

Because of this I made an alt account on another instance.

[-] gro2bl@lemm.ee 6 points 1 year ago

Migrated to lemm.ee. maybe I need to keep both accounts 😄

[-] antik@lemmy.world 5 points 1 year ago
[-] DrOrangutan@sh.itjust.works 5 points 1 year ago

Lemmy world rate limiting me when trying to sign up and making me use a different instance seems to have saved me from this.

[-] azvasKvklenko@sh.itjust.works 4 points 1 year ago

Where are they storing the session files then, in Memcached with 512 kB limit? No such issues on sh.itjust.works, so probably not a software issue

[-] idunnololz_test@lemmy.ml 4 points 1 year ago

Could still be a software issue. Someone said this already but it could be possible that Lemmy.world is using a load balancer and multiple servers. These two servers' authentication tokens may be out of sync. So if you hit server 1 and you are sign in to server 1, you're good. If you hit server 2, you're signed out all of a sudden. This can also explain why the issue started to happen abruptly today. It's possible the load on the server wasn't that bad yesterday so the load balancer didn't kick in. This is all speculation. Will have to wait for an official message to confirm anything.

[-] azvasKvklenko@sh.itjust.works 3 points 1 year ago

I set up infrastructure for web apps and what you are describing is still most likely server config issue, not Lemmy issue itself, unless Lemmy is lacking something to allow load balancing (then the bug is missing feature actually, also I don't think so). I don't know how Lemmy keeps/reads its sessions, but usually it doesn't matter from the application code standpoint. Preparing multi-host setup as an admin you need to take care about each instance accessing the same session data or whatever application data needs to be shared anyeay. There are many options:

  • Database: it's not good for DB performance and is usually avoided. The problem cannot occur here as all the instances have to access same database (or replicas) in the first place
  • Filesystem: the problem can occur here, but can be worked around with CIFS or NFS, which hits performance
  • Redis: good for performance, as many hosts as you want can access the same Redis instance (unless Redis is overloaded, which is pretty hard for small session values)
  • Memcached: also an option, but all sessions would be gone on service restart
  • ...?

The load balancing scenario where all requests are handled by one host and the other only takes requests when the other is overloaded, is very unlikely. The most common algorithms for balancing are roundrobin - which means (more-or-less) split connections (not load!) equally across all targets, and leastconn - which means hit the host that is least busy with active connections. I mean of course they could've used 'fallback' alhorithm, but it's rather inefficient in most scenarios.

Or maybe the issue is somewhere else, is caused by full-page/CDN cache etc.

[-] TimeSquirrel@kbin.social 4 points 1 year ago

Ya'll should try Kbin.social. The admin at least lets us know when shits gonna crash and stop working.

[-] Kibo@aussie.zone 3 points 1 year ago
[-] ClanOfTheOcho@lemmy.world 3 points 1 year ago

I was beginning to wonder if the bot purging got a little too ambitious. Also, requisite "I am not a bot" statement. Beep. Boop.

[-] jennwiththesea@lemmy.world 4 points 1 year ago

We are all bots down here.

[-] JJROKCZ@lemmy.world 3 points 1 year ago

Yea i thought it might be another exploit being used but hadn’t heard anything…

wasn't able to sign up decided to pick blahaj lemmy

[-] lightworker@lemmy.world 2 points 1 year ago

Ha, I’m glad I saw this post. Thought I was going mad. :-)

this post was submitted on 11 Jul 2023
1079 points (98.6% liked)

Memes

45189 readers
1301 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS