Daily backup vs. SSD durability











up vote
0
down vote

favorite












Today when my daily backup prompted for my root password I suddenly got some bad feeling about it. I tried to understand what happens to my SSD disk if backup every day reads all my data and writes them into backup files especially on linux system.



I know it is unhealthy for SSD durability to do huge writes on daily basis. But my question is: can it drastically lower my disk's lifetime? I will appreciate any response that will help me decide whether to switch my backup to weekly basis.



I have Samsung 850 EVO SSD disk.










share|improve this question


























    up vote
    0
    down vote

    favorite












    Today when my daily backup prompted for my root password I suddenly got some bad feeling about it. I tried to understand what happens to my SSD disk if backup every day reads all my data and writes them into backup files especially on linux system.



    I know it is unhealthy for SSD durability to do huge writes on daily basis. But my question is: can it drastically lower my disk's lifetime? I will appreciate any response that will help me decide whether to switch my backup to weekly basis.



    I have Samsung 850 EVO SSD disk.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Today when my daily backup prompted for my root password I suddenly got some bad feeling about it. I tried to understand what happens to my SSD disk if backup every day reads all my data and writes them into backup files especially on linux system.



      I know it is unhealthy for SSD durability to do huge writes on daily basis. But my question is: can it drastically lower my disk's lifetime? I will appreciate any response that will help me decide whether to switch my backup to weekly basis.



      I have Samsung 850 EVO SSD disk.










      share|improve this question













      Today when my daily backup prompted for my root password I suddenly got some bad feeling about it. I tried to understand what happens to my SSD disk if backup every day reads all my data and writes them into backup files especially on linux system.



      I know it is unhealthy for SSD durability to do huge writes on daily basis. But my question is: can it drastically lower my disk's lifetime? I will appreciate any response that will help me decide whether to switch my backup to weekly basis.



      I have Samsung 850 EVO SSD disk.







      backup ssd






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 27 '17 at 8:47









      Jakub Hubert

      157




      157






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          4
          down vote



          accepted










          An SSD is based on flash memory. Data written to it lasts forever; however, it has a limited number of writes.

          Thus, daily or even weekly backups have a dramatic effect on drive life.



          It is preferable to put backups on a separate drive. While backups on the same drive(separate partition) can help you recover from system failures, it can not be used in the event of a drive failure.






          share|improve this answer























          • Heh, this question popped up on the main page becuase of your edit and I answered it, failing to realize it's over a year old, lol.
            – Android Dev
            Nov 20 at 13:55












          • @AndroidDev -- The information in your answer wil be useful to future readers. I edited because I noticed an error when I got an upvote today.
            – ravery
            Nov 20 at 14:50


















          up vote
          1
          down vote













          The 850 EVO has a write endurance of 150TBW IIRC. So let's assume you wrote 30GB a day:



          150TB * 1024 = 153600GB
          153600GB / 30 = 5120 cycles of 30GB
          5120 cycles / 365 = 14 years


          That was just an example with 30GB/day, but you can do the calculations yourself for how much data you write per day.



          You may be interested in taking a look at my question of how to monitor TBW on Samusng SSDs over here: How can I monitor the TBW on my Samsung SSD?



          Also, please keep in mind that hard drives have a limited number of write cycles as well. It's just a lot, lot more than SSDs :)



          Bonus info:



          Not all SSDs have a such a low write endurance. It used to be that SSD NAND was SLC (Single Level Cell) which meant that each cell stored only a single bit. But then, NAND companies discovered they could store 2 bits per cell (MLC, Multi Level Cell) by varying the voltage, like for instance 0-.25v == 00, .25v-.50v == 01, .50v-.75v == 10 and .75v-1.0v == 11. (Numbers are totally bogus, just trying to communicate the idea). Unsurprisingly, as the cells wear out they don't store the varying voltage as well, thus, MLC cells don't last as long as SLC cells. Now, they've figured out how to cram 3 bits per cell with TLC (Triple Level Cell) technology. As you can imagine, TLC drives such as your 850 EVO wear out even faster.






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f950249%2fdaily-backup-vs-ssd-durability%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            4
            down vote



            accepted










            An SSD is based on flash memory. Data written to it lasts forever; however, it has a limited number of writes.

            Thus, daily or even weekly backups have a dramatic effect on drive life.



            It is preferable to put backups on a separate drive. While backups on the same drive(separate partition) can help you recover from system failures, it can not be used in the event of a drive failure.






            share|improve this answer























            • Heh, this question popped up on the main page becuase of your edit and I answered it, failing to realize it's over a year old, lol.
              – Android Dev
              Nov 20 at 13:55












            • @AndroidDev -- The information in your answer wil be useful to future readers. I edited because I noticed an error when I got an upvote today.
              – ravery
              Nov 20 at 14:50















            up vote
            4
            down vote



            accepted










            An SSD is based on flash memory. Data written to it lasts forever; however, it has a limited number of writes.

            Thus, daily or even weekly backups have a dramatic effect on drive life.



            It is preferable to put backups on a separate drive. While backups on the same drive(separate partition) can help you recover from system failures, it can not be used in the event of a drive failure.






            share|improve this answer























            • Heh, this question popped up on the main page becuase of your edit and I answered it, failing to realize it's over a year old, lol.
              – Android Dev
              Nov 20 at 13:55












            • @AndroidDev -- The information in your answer wil be useful to future readers. I edited because I noticed an error when I got an upvote today.
              – ravery
              Nov 20 at 14:50













            up vote
            4
            down vote



            accepted







            up vote
            4
            down vote



            accepted






            An SSD is based on flash memory. Data written to it lasts forever; however, it has a limited number of writes.

            Thus, daily or even weekly backups have a dramatic effect on drive life.



            It is preferable to put backups on a separate drive. While backups on the same drive(separate partition) can help you recover from system failures, it can not be used in the event of a drive failure.






            share|improve this answer














            An SSD is based on flash memory. Data written to it lasts forever; however, it has a limited number of writes.

            Thus, daily or even weekly backups have a dramatic effect on drive life.



            It is preferable to put backups on a separate drive. While backups on the same drive(separate partition) can help you recover from system failures, it can not be used in the event of a drive failure.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 20 at 13:17

























            answered Aug 27 '17 at 9:09









            ravery

            5,38251132




            5,38251132












            • Heh, this question popped up on the main page becuase of your edit and I answered it, failing to realize it's over a year old, lol.
              – Android Dev
              Nov 20 at 13:55












            • @AndroidDev -- The information in your answer wil be useful to future readers. I edited because I noticed an error when I got an upvote today.
              – ravery
              Nov 20 at 14:50


















            • Heh, this question popped up on the main page becuase of your edit and I answered it, failing to realize it's over a year old, lol.
              – Android Dev
              Nov 20 at 13:55












            • @AndroidDev -- The information in your answer wil be useful to future readers. I edited because I noticed an error when I got an upvote today.
              – ravery
              Nov 20 at 14:50
















            Heh, this question popped up on the main page becuase of your edit and I answered it, failing to realize it's over a year old, lol.
            – Android Dev
            Nov 20 at 13:55






            Heh, this question popped up on the main page becuase of your edit and I answered it, failing to realize it's over a year old, lol.
            – Android Dev
            Nov 20 at 13:55














            @AndroidDev -- The information in your answer wil be useful to future readers. I edited because I noticed an error when I got an upvote today.
            – ravery
            Nov 20 at 14:50




            @AndroidDev -- The information in your answer wil be useful to future readers. I edited because I noticed an error when I got an upvote today.
            – ravery
            Nov 20 at 14:50












            up vote
            1
            down vote













            The 850 EVO has a write endurance of 150TBW IIRC. So let's assume you wrote 30GB a day:



            150TB * 1024 = 153600GB
            153600GB / 30 = 5120 cycles of 30GB
            5120 cycles / 365 = 14 years


            That was just an example with 30GB/day, but you can do the calculations yourself for how much data you write per day.



            You may be interested in taking a look at my question of how to monitor TBW on Samusng SSDs over here: How can I monitor the TBW on my Samsung SSD?



            Also, please keep in mind that hard drives have a limited number of write cycles as well. It's just a lot, lot more than SSDs :)



            Bonus info:



            Not all SSDs have a such a low write endurance. It used to be that SSD NAND was SLC (Single Level Cell) which meant that each cell stored only a single bit. But then, NAND companies discovered they could store 2 bits per cell (MLC, Multi Level Cell) by varying the voltage, like for instance 0-.25v == 00, .25v-.50v == 01, .50v-.75v == 10 and .75v-1.0v == 11. (Numbers are totally bogus, just trying to communicate the idea). Unsurprisingly, as the cells wear out they don't store the varying voltage as well, thus, MLC cells don't last as long as SLC cells. Now, they've figured out how to cram 3 bits per cell with TLC (Triple Level Cell) technology. As you can imagine, TLC drives such as your 850 EVO wear out even faster.






            share|improve this answer



























              up vote
              1
              down vote













              The 850 EVO has a write endurance of 150TBW IIRC. So let's assume you wrote 30GB a day:



              150TB * 1024 = 153600GB
              153600GB / 30 = 5120 cycles of 30GB
              5120 cycles / 365 = 14 years


              That was just an example with 30GB/day, but you can do the calculations yourself for how much data you write per day.



              You may be interested in taking a look at my question of how to monitor TBW on Samusng SSDs over here: How can I monitor the TBW on my Samsung SSD?



              Also, please keep in mind that hard drives have a limited number of write cycles as well. It's just a lot, lot more than SSDs :)



              Bonus info:



              Not all SSDs have a such a low write endurance. It used to be that SSD NAND was SLC (Single Level Cell) which meant that each cell stored only a single bit. But then, NAND companies discovered they could store 2 bits per cell (MLC, Multi Level Cell) by varying the voltage, like for instance 0-.25v == 00, .25v-.50v == 01, .50v-.75v == 10 and .75v-1.0v == 11. (Numbers are totally bogus, just trying to communicate the idea). Unsurprisingly, as the cells wear out they don't store the varying voltage as well, thus, MLC cells don't last as long as SLC cells. Now, they've figured out how to cram 3 bits per cell with TLC (Triple Level Cell) technology. As you can imagine, TLC drives such as your 850 EVO wear out even faster.






              share|improve this answer

























                up vote
                1
                down vote










                up vote
                1
                down vote









                The 850 EVO has a write endurance of 150TBW IIRC. So let's assume you wrote 30GB a day:



                150TB * 1024 = 153600GB
                153600GB / 30 = 5120 cycles of 30GB
                5120 cycles / 365 = 14 years


                That was just an example with 30GB/day, but you can do the calculations yourself for how much data you write per day.



                You may be interested in taking a look at my question of how to monitor TBW on Samusng SSDs over here: How can I monitor the TBW on my Samsung SSD?



                Also, please keep in mind that hard drives have a limited number of write cycles as well. It's just a lot, lot more than SSDs :)



                Bonus info:



                Not all SSDs have a such a low write endurance. It used to be that SSD NAND was SLC (Single Level Cell) which meant that each cell stored only a single bit. But then, NAND companies discovered they could store 2 bits per cell (MLC, Multi Level Cell) by varying the voltage, like for instance 0-.25v == 00, .25v-.50v == 01, .50v-.75v == 10 and .75v-1.0v == 11. (Numbers are totally bogus, just trying to communicate the idea). Unsurprisingly, as the cells wear out they don't store the varying voltage as well, thus, MLC cells don't last as long as SLC cells. Now, they've figured out how to cram 3 bits per cell with TLC (Triple Level Cell) technology. As you can imagine, TLC drives such as your 850 EVO wear out even faster.






                share|improve this answer














                The 850 EVO has a write endurance of 150TBW IIRC. So let's assume you wrote 30GB a day:



                150TB * 1024 = 153600GB
                153600GB / 30 = 5120 cycles of 30GB
                5120 cycles / 365 = 14 years


                That was just an example with 30GB/day, but you can do the calculations yourself for how much data you write per day.



                You may be interested in taking a look at my question of how to monitor TBW on Samusng SSDs over here: How can I monitor the TBW on my Samsung SSD?



                Also, please keep in mind that hard drives have a limited number of write cycles as well. It's just a lot, lot more than SSDs :)



                Bonus info:



                Not all SSDs have a such a low write endurance. It used to be that SSD NAND was SLC (Single Level Cell) which meant that each cell stored only a single bit. But then, NAND companies discovered they could store 2 bits per cell (MLC, Multi Level Cell) by varying the voltage, like for instance 0-.25v == 00, .25v-.50v == 01, .50v-.75v == 10 and .75v-1.0v == 11. (Numbers are totally bogus, just trying to communicate the idea). Unsurprisingly, as the cells wear out they don't store the varying voltage as well, thus, MLC cells don't last as long as SLC cells. Now, they've figured out how to cram 3 bits per cell with TLC (Triple Level Cell) technology. As you can imagine, TLC drives such as your 850 EVO wear out even faster.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 20 at 13:52

























                answered Nov 20 at 13:42









                Android Dev

                10.6k63257




                10.6k63257






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f950249%2fdaily-backup-vs-ssd-durability%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Category:香港粉麵

                    List *all* the tuples!

                    Channel [V]