According to POSIX specification, if you write less than the size of PIPE_BUF, this operation shall be atomic.
The default writableStream.highwatermark in nodejs is 16 kilobyte. writableStream.write will return false when the total size of the being flushed data is greater this value.
Let say the PIPE_BUF of my OS is 512 byte which is much smaller than writableStream.highWatermark. Does it mean the write operation of nodejs must not be atomic?