LFW211 lab 8.1
I think I solved the 8.1 lab correctly but I need someone expert in the matter to check the work as the solution felt a bit weird!
const print = (err, contents) => {
if (err) console.error(err)
else console.log(contents )
}
const opA = (err,cb) => {
setTimeout(() => {
cb(null, 'A')
}, 500)
}
const opB = (err,cb) => {
setTimeout(() => {
cb(null, 'B')
}, 250)
}
const opC = (err,cb) => {
setTimeout(() => {
cb(null, 'C')
}, 125)
}
opA(null,print)
opB(null,print)
opC(null,print)
Best Answer
-
@abdullah.yf yep this completes the exercise, nice job
@SyuheiSaito these functions don't return anything, so shouldn't be passed to
then, they also have signatures that expect err and cb functions, where asthenpasses the prior promise into the function. Finally, chaining promises like that means the code will execute serially, and what we want is for it to execute concurrently.0
Answers
-
Hello,
I'm not the expert but since the lab name is parallel execution I guess your solution is OK0 -
thank you
0 -
I've failed 8-1
`const print = (err, contents) => {
if (err) console.error(err)
else console.log(contents)
}const opA = (err,cb) => {
setTimeout(() => {
cb(null, 'A')
}, 500)
}const opB = (err,cb) => {
setTimeout(() => {
cb(null, 'B')
}, 250)
}const opC = (err,cb) => {
setTimeout(() => {
cb(null, 'C')
}, 125)
}let promise = new Promise(print)
promise.then(opA(null,print))
.then(opB(null,print))
.then(opC(null,print))`0 -
Imho we don't need to change the lab code like @abdullah.yf, just do that no ?
opA(print);
opB(print);
opC(print);1 -
@dtravailloux that doesn't match the function signatures. The functions take take two arguments (err, cb).
The main point of this exercise is to demonstrate the non-linear execution of code in the concurrency-based JS language
0 -
Hi @davidmarkclements, i m a bit confused.
I too see what @dtravailloux sees, as function signature, onparallel.jsand on the lab description.The functions opA, opB & opC, they take just ONE parameter and this is the
cb, like so:const opA = (cb) => {
setTimeout(() => {
cb(null, 'A')
}, 500)
}Based on the above, the correct solution should be:
opA(print)
opB(print)
opC(print)3 -
Hi @theodoros , the corect solution for labs 8.1 is the same as yours in my opinion.
All the tasks could just start in parallel.For labs 8.2, opA, opB and opC are just simulations to callback-based async functions.
These functions will do their own async jobs. In most cases we don't what exactly they do.
But we know that if there will not be errors, they finished their jobs successfully.After their sucess, they will invoke the callback -
cbyou passed to them. And the arguments passed to the callback you provide, will be error first, then the results based on their works(those async tasks).So the signatures of opA, opB and opC take just ONE parameter is correct!
What matters is the signatures ofcbs you provide.But if you promisify opA, opB and opC, promisify will take care of the
cbs for you. You don't really need think about them.1 -
good answer @krave
0 -
@theodoros same solution with mine
0 -
here was my solution —
const print = (err, contents) => err ? console.error(err) : console.log(contents) const opA = (cb) => setTimeout(() => { cb(null, 'A') }, 500) const opB = (cb) => setTimeout(() => { cb(null, 'B') }, 250) const opC = (cb) => setTimeout(() => { cb(null, 'C') }, 125) const run = async () => { Promise.all([opA(print), opB(print), opC(print)]) } run().catch(console.error)that returned, in the JavaScript console —
$ node parallel.js C B A
... so I believe I got this one right, yes?
0 -
@faddah no this just creates a Promise from an array with three elements containing the values
undefinedwhile also executing the callbacks and then it wraps another promise (viaasyncfunction) but doesn't await the promise from Promise.all either so this:- creates two promises that don't do anything
- calls the ops using just callbacks
0
Categories
- All Categories
- 178 LFX Mentorship
- 178 LFX Mentorship: Linux Kernel
- 775 Linux Foundation IT Professional Programs
- 384 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 103 Cloud Native Developer IT Professional Program
- 7.7K Training Courses & Learning Paths
- 13 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 35 Cloud & Containers Training
- 3 Cybersecurity Training
- 3 DevOps & Site-Reliability Training
- 2 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 5 System Administration Training
- 1 System Engineering Training
- 6 Web & Application Development Training
- 798 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 96 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 92 Storage
- 773 Linux Distributions
- 81 Debian
- 68 Fedora
- 24 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 32 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 472 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 103 Linux Security
- 79 Network Management
- 102 System Management
- 46 Web Management
- 166 Mobile Computing
- 32 Android
- 119 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 407 Off Topic
- 128 Introductions
- 35 Study Material
- 1.1K Programming and Development
- 311 Kernel Development
- 723 Software Development
- 1K Software
- 418 Applications
- 183 Command Line
- 5 Compiling/Installing
- 71 Games
- 320 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 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)




