It's a scary thought that such issues exist, regardless of how common or not.
I think planes already scrutinized to a very high degree. What I am more concerned about is airlines doing the reboot in flight to save time. Planes are often on a very tight schedule (maybe not cargo planes).
Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
21–30 of 77 posts
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#22Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#23It is a very well know issue with every plane. Sometimes there are no solutions to a problem. You need these hacky solutions. The title is clearly catchy with everything that is going on with Boeing. But the point is, this reboot process is very well managed and known. So I won't call it scary.
I agree it's not scary and it's a good, known workaround. But it's software - we shouldn't say "there are no solutions". The solution is: fix this problem and add long runtime testing to the qa process. Especially if this is a known issue in other planes.
The issue here is overflow due to time. The time is saved in a variable (don't know how much bits), which overflows after the gives period. Now there are two options 1. Upgrade circuits of every plane. These planes were designed/built a long time back. Bigger registers were not practical due to costs. 2. Document it and have a process for it.
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#24How is this news?
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#25Occasionally rebooting a system is actually a good thing. “Hello, IT, have you tried turning it off and on!?”
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#26Normal :) Same for the Boeing 787 back in 2015: https://news.ycombinator.com/item?id=17907654
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#27It's a scary thought that such issues exist, regardless of how common or not.
I think planes already scrutinized to a very high degree. What I am more concerned about is airlines doing the reboot in flight to save time. Planes are often on a very tight schedule (maybe not cargo planes).
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#28I think the comments here say more about us as an audience than they do about the Airbus. We're totally accustomed to hardware & software problems whose solution is, "just restart it," and we don't even find it all that disturbing - mostly just humorous. Our standards as developers & testers have gotten pretty low. I think the only way you'd see outrage here at HN is if the restart involved a real physical crash (as…
The problem is when "have you tried rebooting" becomes the first troubleshooting step and you stop investigating.
But if you realise after the investigation that a reboot reliably prevents the issue, it's a worthwhile approach, especially if fixing the error would require many complicated changes that may lead to further errors.
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#29Earlier quoted context omitted.
I agree it's not scary and it's a good, known workaround. But it's software - we shouldn't say "there are no solutions". The solution is: fix this problem and add long runtime testing to the qa process. Especially if this is a known issue in other planes.
When dealing with physical systems it is impossible to have no bugs. To give an extreme example, there is a not a small chance that the cosmic rays can change a bit in a system's memory - https://stackoverflow.com/questions/2580933/cosmic-rays-what... The issue here is overflow due to time. The time is saved in a variable (don't know how much bits), which overflows after the gives period. Now there are two options 1.…
In plane investigations I've looked at (not many) the issue has always been a compounding of several errors or shortcomings .. that strongly suggests you shouldn't let small errors build up in different systems, to me. [1]
If it's a register which takes down the whole system then surely they'd know that (and could fix it with a watchdog that returned the effected systems to the boot state without reboot) -- other comments seem to be saying "meh, it's complex, doesn't matter what the error is as long as reboot fixes it"; that seems really dangerous in safety critical systems.
[1] but I acknowledge the "better the devil you know" issue and that pragmatism and cost take over at some point.
Re: Some models of Airbus A350 airliners need to be hard-rebooted after 149 hours
#30I think the comments here say more about us as an audience than they do about the Airbus. We're totally accustomed to hardware & software problems whose solution is, "just restart it," and we don't even find it all that disturbing - mostly just humorous. Our standards as developers & testers have gotten pretty low. I think the only way you'd see outrage here at HN is if the restart involved a real physical crash (as…
That's not necessarily a "low" standard. It's that the value of preventing a reboot every few days is much lower than other things we could spend our time on. Mandatory oftware perfection would be a huge drag on valuable new features.