Lab 4.2 - Stream some content
Hi,
In lab 4.2, I'm trying this:
The reply.send method can also be passed a stream and Fastify behaves in the same >way - by piping the stream as the HTTP response."
but I don't get it
const dataStream = require('./../../stream');
module.exports = async function (fastify, opts) {
fastify.get('/', async function (request, reply) {
reply.send(dataStream);
})
}
I have also tried with this
const dataStream = require('./../../stream');
module.exports = async function (fastify, opts) {
fastify.get('/', async function (request, reply) {
reply.header('Content-Type', 'application/octet-stream');
reply.send(dataStream);
})
}
Anyone can help me?
Thanks in advance.
Comments
-
Hi,
I have found the answer
'use strict' const stream = require('./../../stream'); module.exports = async function (fastify, opts) { fastify.get('/', async function (request, reply) { reply.headers({'content-type': 'text/html' }); await reply.send(stream()); }) }but I don't understand totally why this is working.
Why I have to await for reply?
Thanks
0 -
it's not about the await - you were passing a function, now you're passing a stream. Note that you're CALLING
stream()in your working example1 -
Hi @xdxmxc,
Without await it doesn't work
'use strict' const stream = require('./../../stream'); module.exports = async function (fastify, opts) { fastify.get('/', async function (request, reply) { reply.headers({'content-type': 'text/html' }); reply.send(stream()); }) }0 -
Hi, @arturo.miguel.next ,
You can remove both
awaitandasyncfor the route handler.Like this:
'use strict' const stream = require('./../../stream'); module.exports = async function (fastify, opts) { fastify.get('/', function (request, reply) { reply.type('text/html'); reply.send(stream()); }) }The reason why your async version handler doesn't work without
awaitmaybe the internal mechanism of fastify I guess.According to your code, here is an equivalent code with implicit
return:'use strict' const stream = require('./../../stream'); module.exports = async function (fastify, opts) { fastify.get('/', async function (request, reply) { reply.headers({'content-type': 'text/html' }); reply.send(stream()); return; // this is an implicit }) }The implicit
returnnotifies fastify that this async function is already over. Fastify does not necessarily need to wait anything else to finish the response. The possible hypothesis might be "Hey, it is already an async handler. If there is anything I need to wait, why would it already returned. It totally could wait inside the function and return lately".When you add the await before
reply.send(stream()), the handler will waitreply.send(stream())to finish before return the function. Then end the HTTP response.You can verify by this:
'use strict' const stream = require("../../stream") module.exports = async function (fastify, opts) { fastify.get('/', async function (request, reply) { reply.type('text/html'); reply.send(stream()); return "Hi, I am Krave." }) }You will see that the response to client finishes immediately without any delay.
1 -
yes @krave is exactly right. Regarding the await, when the route handler returns a promise (as all async functions do) the resolution of the promise determines when the route has been completely handled - not the stream passed to reply send, however the promise returned from reply.send can be awaited in this case to ensure the promise resolves after the stream completes. While this seems clunky it's merely supporting an edge-case, it's better not to mix reply.send and async route functions. So in practice you can either go the way @krave shows OR you avoid reply.send and instead return the stream (or whatever value) from the function (should work async or not).
1
Categories
- All Categories
- 176 LFX Mentorship
- 176 LFX Mentorship: Linux Kernel
- 750 Linux Foundation IT Professional Programs
- 373 Cloud Engineer IT Professional Program
- 169 Advanced Cloud Engineer IT Professional Program
- 74 DevOps IT Professional Program - Discontinued
- 4 DevOps & GitOps IT Professional Program
- 99 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 1 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 3 Cloud & Containers Training
- 1 Cybersecurity Training
- 1 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 1 Networking Training
- 1 Open Source Best Practice Training
- 1 System Administration Training
- 1 System Engineering Training
- 1 Web & Application Development Training
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 768 Linux Distributions
- 81 Debian
- 67 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 106 Mobile Computing
- 18 Android
- 73 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 949 Programming and Development
- 310 Kernel Development
- 621 Software Development
- 982 Software
- 374 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)
