this post was submitted on 03 Sep 2024
838 points (99.4% liked)

Programmer Humor

32024 readers
503 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 90 points 1 week ago (5 children)

bug ocurred randomly.

Fixed it by now btw.

someone's not sharing the actual root cause.

[–] [email protected] 59 points 1 week ago (4 children)

I'm new to Go and wanted to copy some text-data from a stream into the outputstream of the HTTP response. I was copying the data to and from a []byte with a single Read() and Write() call and expexted everything to be copied as the buffer is always the size of the while data. Turns out Read() sometimes fills the whole buffer and sometimes don't.
Now I'm using io.Copy().

[–] [email protected] 51 points 1 week ago (3 children)

Note that this isn't specific to Go. Reading from stream-like data, be it TCP connections, files or whatever always comes with the risk that not all data is present in the local buffer yet. The vast majority of read operations returns the number of bytes that could be read and you should call them in a loop. Same of write operations actually, if you're writing to a stream-like object as the write buffers may be smaller than what you're trying to write.

[–] [email protected] 13 points 1 week ago (1 children)

I’ve run into the same problem with an API server I wrote in rust. I noticed this bug 5 minutes before a demo and panicked, but fixed it with a 1 second sleep. Eventually, I implemented a more permanent fix by changing the simplistic io calls to ones better designed for streams

[–] [email protected] 7 points 1 week ago

The actual recommended solution is to just read in a loop until you have everything.

load more comments (1 replies)
load more comments (1 replies)
load more comments (1 replies)