{"id":7941,"date":"2025-11-29T08:11:45","date_gmt":"2025-11-29T07:11:45","guid":{"rendered":"https:\/\/web-dev-weissblau.de\/microconsult\/?p=7941"},"modified":"2026-02-13T07:32:04","modified_gmt":"2026-02-13T06:32:04","slug":"effective-power-interruption-testing","status":"publish","type":"post","link":"https:\/\/www.microconsult.de\/en\/effective-power-interruption-testing\/","title":{"rendered":"Effective Power Interruption Testing"},"content":{"rendered":"<h2>How to Fail Best<\/h2>\n<p style=\"text-align: left;\" align=\"center\">Autor: Thom Denholm, Datalight Inc.<\/p>\n<h3>Beitrag &#8211; Embedded Software Engineering Kongress 2017<\/h3>\n<p><strong>From dropped batteries to system failures, embedded designs require solid power interruption testing. Durability demands for embedded products have increased as the expected lifetime of high reliability products has grown. Faced with these conditions, developers must expand their testing toolkit. To achieve the most comprehensive reliability testing in the least amount of time, stress testing\u00a0must\u00a0utilize I\/O at the point of power interruption.<\/strong><\/p>\n<p>When your team is responsible for validating the reliability of a design for the embedded marketplace, you need to do more than just tick a box or read a marketing document. Real testing of reliability involves getting into the guts of the embedded design, and covers everything between the application and the hardware. This whitepaper is focused on testing the file system and its interactions. Catching a vulnerability in design or testing is far more efficient (and far less expensive) than handling problems in the field.<\/p>\n<h2>Definition of Reliability<\/h2>\n<p>Reliability can be defined as: whatever a given customer thinks it is. Powering up and starting the OS are a requirement for nearly all devices, and being able to start the primary device application is very important. Without those, the user must wait for a system restore. Many customers expect their favorite settings or programmed routes to be available and reflected in their next use of the device. Elite customers (and some certifications) require an even higher definition of reliability. They need to start up with settings changed immediately before the power was lost.<\/p>\n<p>(see\u00a0<a title=\"Fachinfo_ESE_power-interruption-testing_datalight_denholm\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_datalight_denholm.pdf\" target=\"_blank\" rel=\"noopener\">PDF\u00a0<\/a>image 1)<\/p>\n<p>It is safe to say that even though the needs of the individual customer vary, the testing bar must be set quite high. Likely higher than the average developer expects.<\/p>\n<h2>System reliability vs Data on the media<\/h2>\n<p>Examining the previous cases from the computer point of view, the first is related directly to the system files. Sudden power loss could corrupt other files, as long as it doesn\u2019t touch the system files. One trick used by developers is to put the system files on a separate partition or even separate media to achieve this goal. Files can be marked read only, though that only keeps the file system from touching them.<\/p>\n<p>To save the end user settings, those changes have to make it to the media. On embedded Linux, for instance, those changes must make it through the write-back cache and any buffers. The data also needs to clear any hardware block cache. In time, all the data will eventually be flushed \u2013 if the user waits long enough, their settings will be saved.<a title=\"\" href=\"https:\/\/www.microconsult.de\/2045-0-Effective-Power-Interruption-Testing---ESE-2017.html#_edn1\" target=\"_blank\" rel=\"noopener\" name=\"_ednref1\">[1]<\/a><\/p>\n<p>In addition to user data, the file system metadata also must be in the appropriate place. For most file systems, Linux flush and fsync commands are used to achieve complete control of the file system, which is the only way to ensure data is committed to the media.<\/p>\n<p>That control over the file system and block device are the key to the final use case, where the data must be committed immediately \u2013 waiting for the block cache to time out is not an option.<\/p>\n<p>The next step is to refine the granularity even more \u2013 what happens when the power is interrupted?<\/p>\n<h2>Write interrupted mid-block<\/h2>\n<p>Writes can be interrupted at any point, primarily when power is lost. This results in two options \u2013 the system could be in the middle of writing a block or in between writing blocks.<\/p>\n<p>On older magnetic media, an interruption in the middle of writing a block would leave a partial write. The block being written is corrupted \u2013 it likely contains fragments of new data and old data. If this was the only copy of that data, it is lost \u2013 and the file that contained it is probably useless.<\/p>\n<p>New NAND based media, from SSD and eMMC to SD and CF, have an even larger problem with interrupted writes. It is so big that vendors specifically recommend maintaining power during block writes just to avoid it. Assuming that media power is maintained with a capacitor or other technique, an interrupted write becomes instead write interruption between blocks.<\/p>\n<h2>Write interrupted between blocks<\/h2>\n<p>From the user perspective, each write consists of one or more blocks of data, along with any metadata that must be written. If a given write is a small amount of data, up to one block, with no metadata changes, then power interruption won\u2019t be a problem. For larger writes, an interruption between write blocks will interrupt what is known as an atomic operation.<\/p>\n<p>[1]\u00a0<a href=\"https:\/\/www.datalight.com\/resources\/whitepapers\/reliably-committing-data-in-linux\" target=\"_blank\" rel=\"noopener\">https:\/\/www.datalight.com\/resources\/whitepapers\/reliably-committing-data-in-linux<\/a><\/p>\n<p>File systems such as FAT don\u2019t do anything special for an atomic operation, so interrupting one of those is not much better than a mid-block interruption on magnetic media. The file being written to has some updated blocks and some not yet updated. For most user data, this is enough to render the file useless.<\/p>\n<p>Metadata should also be part of an atomic write. If it isn\u2019t, one of two situations can occur. If the data is written but the metadata has not been, the data would be lost as the system recovered from power interruption. A potentially worse case is if the metadata is written but the data has not yet been. A system recovering in this situation would then try to open this updated file and find either garbage or, worse, other data from the media \u2013 a potential security risk.<a title=\"\" href=\"https:\/\/www.microconsult.de\/2045-0-Effective-Power-Interruption-Testing---ESE-2017.html#_edn2\" target=\"_blank\" rel=\"noopener\" name=\"_ednref2\">[2]<\/a><\/p>\n<p>Testing to make sure longer writes are committed the way a system designer expects is another requirement for comprehensive testing.<\/p>\n<h2>Validate the written data<\/h2>\n<p>At this point, the developer has an expectation of how data will be written and\/or recovered as part of a power interruption. This is all assuming the writes happen in the order they were initiated, which is not always the case. Complete testing should validate the expected state of the media after interrupted writes.<\/p>\n<h2>All I need is O_DIRECT<\/h2>\n<p>On Linux file systems, there is a particularly persistent myth that opening a file with O_DIRECT is all that is required for data to be reliability stored on the media, and the fsync() command would not be necessary in this case.<\/p>\n<p>We measured the performance of sequential writes using fsync, O_DIRECT, and neither. The orange bar represents the maximum speed of the media, 225 MB\/sec. This demonstrates that O_DIRECT is writing only to the DRAM cache, and is not sufficient to guarantee reliability.<\/p>\n<p>2\u00a0<a href=\"https:\/\/www.linux-magazine.com\/Online\/News\/Linus-Torvalds-Upset-over-Ext3-and-Ext4\" target=\"_blank\" rel=\"noopener\">https:\/\/www.linux-magazine.com\/Online\/News\/Linus-Torvalds-Upset-over-Ext3-and-Ext4<\/a><\/p>\n<p>(see\u00a0<a title=\"Fachinfo_ESE_power-interruption-testing_datalight_denholm\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_datalight_denholm.pdf\" target=\"_blank\" rel=\"noopener\">PDF\u00a0<\/a>image 2)<\/p>\n<h2>Stress!<\/h2>\n<p>Flushes, user and metadata writes, and handling interruptions during and between block writes covers the basic reliability testing for normal system use. The next thing to focus on is system stress \u2013 unusual cases that will likely occur in the field.<\/p>\n<p>The first of these that most developers don\u2019t examine is what happens when the disk is full. Besides the potential performance implications, a disk full situation can generate more writes as garbage is collected. Related to that are extreme situations in the number of files \u2013 does the system latency increase noticeably beyond the first 100 or so files? Both of these situations lead to a larger write error window \u2013 and a larger potential for failure.<\/p>\n<p>Another stressor is a system update. This is a situation that is especially important to test thoroughly, especially when power interruption may occur. Atomic writes here can be a major factor which allows the device to recover from a failed update.<\/p>\n<p>Extreme use cases also hit the media especially hard. In the case of NAND flash media, thousands of reads from a given file can cause read disturb, adding bit errors to the media. If these bit errors are not taken care of (a process called scrubbing), the correctible errors can grow to uncorrectable errors.<\/p>\n<p>Other potential media failures include some of these items:<\/p>\n<ul>\n<li>Specific write patterns \u2013 on NAND media without randomization, writing all zeroes (0x00) is actually worse for the flash than writing other patterns.<\/li>\n<li>Hot Spots \u2013 media locations that are prone to failure for reasons unknown to the developer (and possibly even to the vendor)<\/li>\n<\/ul>\n<h2>Discards (the Trim statement)<\/h2>\n<p>Another storage related item is discards \u2013 using the trim command to inform the media that data is no longer in use. On devices where discards are not used (or under-utilized), latency can increase noticeably once all the blocks on the media have been written once. This increase latency causes a noticeable drop in performance; when writes take longer, the potential error window grows.<\/p>\n<p>For that matter, the firmware on most NAND based solutions is a black box. What is happening when the media is busy discarding data or wear leveling or garbage collecting? What happens when the power is interrupted during those operations? Using the file system to generate these sorts of failures can be very hit or miss, and a custom media test should be developed to validate its operation during a variety of power interruptions.<\/p>\n<h2>Tactics for effective testing<\/h2>\n<p>We have examined a number of methods that can be used to generate more effective power interruption testing, so now we must put them all together.<\/p>\n<p>First of all, interrupting an embedded device while quiescent or while reading will result in nothing being lost, unless it is updating something in the background. So power interruption testing needs to trigger those background writes where possible and, most importantly, focus on the writes. Random power interruptions during writes are most likely to exercise the safety routines of the file system and application.<\/p>\n<p>The next step is validating the data written, not just the structure. Make sure that what is most important to your customer is being confirmed here \u2013 overwrites and completely atomic operations. If data is overwritten in place, then an entire operation must be atomic to prevent a corrupt state \u2013 half old data, half new data, all useless.<\/p>\n<p>While the user data is important, the system files can be even more important. If corruption of other files affects system files, the entire device can be rendered unusable. The same could happen if power interrupts an unprotected system update.<\/p>\n<h2>Check the disk<\/h2>\n<p>Most file systems provide a utility based on chkdsk to detect these sorts of failures, though they can\u2019t usually correct them very well.<\/p>\n<p>The original MS DOS chkdsk found data that was on the media but not represented in the file allocation table (FAT) and also could find a number of errors within the FAT. It was not able to connect that data to file names, so files full of lost chains and other errors resulted in nearly useless files such as FILE0001.CHK \u2013 taking up space but not useful for most applications.<\/p>\n<h2>Conclusion<\/h2>\n<p>The best testing meets both the needs of the strictest users and the goals of stressing the system in the best way. Interruptions during writes will demonstrate the most failures and accurately reflect field stress. Other factors to consider include validation of data, atomic operations and cases that also stress the media. Real testing of reliability is more than just a requirement, it also leads to long term success of the embedded design.<\/p>\n<h2>Author<\/h2>\n<p>Thom Denholm is an experienced embedded software engineer, combining a strong focus on operating system and file system internals with a knowledge of modern flash devices. He has a degree in Mathematics and Computer Science from Gonzaga University. His love for solving difficult technical problems has served him well in his seventeen years with Datalight. In his spare time, he works as a professional baseball umpire.<\/p>\n<p><a title=\"Fachinfo_ESE_power-interruption-testing_datalight_denholm\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_datalight_denholm.pdf\" target=\"_blank\" rel=\"noopener\"><strong>Beitrag als PDF downloaden<\/strong><\/a><\/p>\n<hr \/>\n<h2>Test, Qualit\u00e4t &amp; Debug &#8211; unsere Trainings &amp; Coachings<\/h2>\n<p><strong>Wollen Sie sich auf den aktuellen Stand der Technik bringen?<\/strong><\/p>\n<p>Dann informieren Sie sich\u00a0<a title=\"Test &amp; Debug Training und Coaching\" href=\"https:\/\/www.microconsult.de\/alle-trainings-termine-komplettuebersicht\/\" target=\"_blank\" rel=\"noopener\"><strong>hier<\/strong>\u00a0<\/a>zu Schulungen\/ Seminaren\/ Trainings\/ Workshops und individuellen Coachings von MircoConsult zum Thema Test, Qualit\u00e4t &amp; Debug.<\/p>\n<p><strong>Training &amp; Coaching zu den weiteren Themen unseren Portfolios finden Sie\u00a0<a title=\"Training &amp; Beratung - alle Themen\" href=\"https:\/\/www.microconsult.de\/training-beratung\/\" target=\"_blank\" rel=\"noopener\">hier<\/a>.<\/strong><\/p>\n<hr \/>\n<h2>Test, Qualit\u00e4t &amp; Debug &#8211; Fachwissen<\/h2>\n<p>Wertvolles Fachwissen zum Thema\u00a0Test, Qualit\u00e4t &amp; Debug steht\u00a0<a title=\"Test und Debug\" href=\"https:\/\/www.microconsult.de\/test-und-debug\/\" target=\"_blank\" rel=\"noopener\"><strong>hier<\/strong>\u00a0<\/a>f\u00fcr Sie zum kostenfreien Download bereit.<\/p>\n<p><a title=\"Test und Debug\" href=\"https:\/\/www.microconsult.de\/test-und-debug\/\" target=\"_blank\" rel=\"noopener\"><strong>Zu den Fachinformationen<\/strong><\/a><\/p>\n<p><strong><br \/>\nFachwissen zu weiteren Themen unseren Portfolios finden Sie\u00a0<a title=\"Fachinformationen\" href=\"https:\/\/www.microconsult.de\/fachwissen\/\" target=\"_blank\" rel=\"noopener\">hier<\/a>.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to Fail Best Autor: Thom Denholm, Datalight Inc. Beitrag &#8211; Embedded Software Engineering Kongress 2017 From dropped batteries to system failures, embedded designs require solid power interruption testing. Durability demands for embedded products have increased as the expected lifetime of high reliability products has grown. Faced with these conditions, developers must expand their testing [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-7941","post","type-post","status-publish","format-standard","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Effective Power Interruption Testing - MicroConsult Academy GmbH<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.microconsult.de\/en\/effective-power-interruption-testing\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Effective Power Interruption Testing - MicroConsult Academy GmbH\" \/>\n<meta property=\"og:description\" content=\"How to Fail Best Autor: Thom Denholm, Datalight Inc. Beitrag &#8211; Embedded Software Engineering Kongress 2017 From dropped batteries to system failures, embedded designs require solid power interruption testing. Durability demands for embedded products have increased as the expected lifetime of high reliability products has grown. Faced with these conditions, developers must expand their testing [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microconsult.de\/en\/effective-power-interruption-testing\/\" \/>\n<meta property=\"og:site_name\" content=\"MicroConsult Academy GmbH\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-29T07:11:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-13T06:32:04+00:00\" \/>\n<meta name=\"author\" content=\"weissblau media\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"weissblau media\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/\"},\"author\":{\"name\":\"weissblau media\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"headline\":\"Effective Power Interruption Testing\",\"datePublished\":\"2025-11-29T07:11:45+00:00\",\"dateModified\":\"2026-02-13T06:32:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/\"},\"wordCount\":2024,\"commentCount\":0,\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/\",\"name\":\"Effective Power Interruption Testing - MicroConsult Academy GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\"},\"datePublished\":\"2025-11-29T07:11:45+00:00\",\"dateModified\":\"2026-02-13T06:32:04+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/effective-power-interruption-testing\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.microconsult.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Effective Power Interruption Testing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/\",\"name\":\"MicroConsult Academy GmbH\",\"description\":\"Professionelle Schulungen, Beratung und Projektunterst\u00fctzung\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.microconsult.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\",\"name\":\"weissblau media\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"caption\":\"weissblau media\"},\"sameAs\":[\"https:\\\/\\\/www.microconsult.de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Effective Power Interruption Testing - MicroConsult Academy GmbH","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.microconsult.de\/en\/effective-power-interruption-testing\/","og_locale":"en_GB","og_type":"article","og_title":"Effective Power Interruption Testing - MicroConsult Academy GmbH","og_description":"How to Fail Best Autor: Thom Denholm, Datalight Inc. Beitrag &#8211; Embedded Software Engineering Kongress 2017 From dropped batteries to system failures, embedded designs require solid power interruption testing. Durability demands for embedded products have increased as the expected lifetime of high reliability products has grown. Faced with these conditions, developers must expand their testing [&hellip;]","og_url":"https:\/\/www.microconsult.de\/en\/effective-power-interruption-testing\/","og_site_name":"MicroConsult Academy GmbH","article_published_time":"2025-11-29T07:11:45+00:00","article_modified_time":"2026-02-13T06:32:04+00:00","author":"weissblau media","twitter_card":"summary_large_image","twitter_misc":{"Written by":"weissblau media","Estimated reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microconsult.de\/effective-power-interruption-testing\/#article","isPartOf":{"@id":"https:\/\/www.microconsult.de\/effective-power-interruption-testing\/"},"author":{"name":"weissblau media","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"headline":"Effective Power Interruption Testing","datePublished":"2025-11-29T07:11:45+00:00","dateModified":"2026-02-13T06:32:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microconsult.de\/effective-power-interruption-testing\/"},"wordCount":2024,"commentCount":0,"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microconsult.de\/effective-power-interruption-testing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microconsult.de\/effective-power-interruption-testing\/","url":"https:\/\/www.microconsult.de\/effective-power-interruption-testing\/","name":"Effective Power Interruption Testing - MicroConsult Academy GmbH","isPartOf":{"@id":"https:\/\/www.microconsult.de\/#website"},"datePublished":"2025-11-29T07:11:45+00:00","dateModified":"2026-02-13T06:32:04+00:00","author":{"@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"breadcrumb":{"@id":"https:\/\/www.microconsult.de\/effective-power-interruption-testing\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microconsult.de\/effective-power-interruption-testing\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.microconsult.de\/effective-power-interruption-testing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microconsult.de\/"},{"@type":"ListItem","position":2,"name":"Effective Power Interruption Testing"}]},{"@type":"WebSite","@id":"https:\/\/www.microconsult.de\/#website","url":"https:\/\/www.microconsult.de\/","name":"MicroConsult Academy GmbH","description":"Professional training, consulting and project support","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microconsult.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a","name":"weissblau media","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","caption":"weissblau media"},"sameAs":["https:\/\/www.microconsult.de"]}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7941","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/comments?post=7941"}],"version-history":[{"count":6,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7941\/revisions"}],"predecessor-version":[{"id":11690,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7941\/revisions\/11690"}],"wp:attachment":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/media?parent=7941"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/categories?post=7941"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/tags?post=7941"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}