{"id":20582,"date":"2022-11-23T10:30:00","date_gmt":"2022-11-23T09:30:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=20582"},"modified":"2022-11-25T16:25:56","modified_gmt":"2022-11-25T15:25:56","slug":"oda-x9-2-and-cpu-speed","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/","title":{"rendered":"ODA X9-2 and CPU speed"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>It&#8217;s been several months now that Oracle released new Oracle Database Appliance X9-2 series. And my first project with 4 of these servers is coming to an end as moving to production is planned for the next weeks. What is the real speed of the Xeon CPUs inside these new servers? Let&#8217;s find out.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Intel Xeon and CPU speed<\/h2>\n\n\n\n<p>I already addressed this topic in a previous blog post, and it&#8217;s still relevant today:<br><a href=\"https:\/\/www.dbi-services.com\/blog\/oracle-database-appliance-and-cpu-speed\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.dbi-services.com\/blog\/oracle-database-appliance-and-cpu-speed\/<\/a><\/p>\n\n\n\n<p>Basically, Intel Xeon CPU have variable CPU speed depending on the number of enabled cores. The less cores you enable, the more speed you will get on the enabled cores.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why core speed is important?<\/h2>\n\n\n\n<p>You may argue that with multiple cores on nowadays&#8217; CPUs, single core speed is not so important. But it is. First, if you run Standard Edition, there is no parallelism and each statement will be processed by a single core, and as soon as everything is in db cache for this statement, duration will mainly be related to core speed. A 3GHz core will be 50% faster than a 2GHz core without any surprise.<\/p>\n\n\n\n<p>Regarding Enterprise Edition, it&#8217;s slightly different. Yes Enterprise Edition supports parallelism, but parallelism has to be configured to work properly. And it&#8217;s not suitable for statements taking fractions of a second to execute. Most of the statements will not use parallelism.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Core speed for Xeon Gold (X8) vs Xeon Silver (X9)<\/h2>\n\n\n\n<p>X9-2 has now Silver Xeon instead of Gold Xeon for previous X8-2. It means that the CPU is no more an high end version. With X9-2, Oracle wanted to keep the same level of performance compared to previous generation, because it&#8217;s enough for this kind of platform. Actually, ODA is an entry level engineered system, and it&#8217;s not supposed to be the best platform available. If your target if maximum CPU speed, you&#8217;d better look at Exadata X9-2M (based on 32-core Xeon Platinum) or build your own server with Gold or Platinum Xeon, although it may not make a significant difference for most of us.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Real core speed according to technical specs sheet<\/h2>\n\n\n\n<p>In the X8-2 specs sheet, you may have seen that Xeon are given for a 2.3GHz core speed. X9-2 specs sheet is given for 2.4GHz cores. But these speeds are not exactly those you will notice. When looking in the Intel spec sheets for these processors, these speeds are &#8220;Base Frequency&#8221;, meaning that you could expect (much) more than these figures.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Real core speed on X8-2 series<\/h2>\n\n\n\n<p>Your system is aware of CPU min and max speeds:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lscpu | grep -e min  -e max\nCPU max MHz:           3900.0000\nCPU min MHz:           1000.0000\n<\/code><\/pre>\n\n\n\n<p>It&#8217;s easy to find the actual CPU speed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lscpu | grep -e \"CPU MHz\" -e \"CPU(s)\" | grep -v NUMA<\/code><\/pre>\n\n\n\n<p>Here are the core speeds I&#8217;ve noticed on an X8-2M:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Enabled cores<\/td><td>CPU MHz<\/td><\/tr><tr><td>64<\/td><td>2800<\/td><\/tr><tr><td>48<\/td><td>3100<\/td><\/tr><tr><td>32<\/td><td>3600<\/td><\/tr><tr><td>24<\/td><td>3600<\/td><\/tr><tr><td>16<\/td><td>3700<\/td><\/tr><tr><td>12<\/td><td>3700<\/td><\/tr><tr><td>8<\/td><td>3900<\/td><\/tr><tr><td>4<\/td><td>3900<\/td><\/tr><tr><td>2<\/td><td>3900<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Basically, disabling half of the cores will bring you a significant speed bump (nearly +30%). And disabling 3\/4 of the cores will bring you the maximum speed on the remaining cores (+40%).<\/p>\n\n\n\n<p>Depending on your ODA, you can then expect:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>3600MHz: X8-2S with 8 cores, X8-2M with 16 cores, X8-2HA with 2x 16 cores<\/li>\n\n\n\n<li>3900MHz: X8-2S with 4 cores, X8-2M with 8 cores, X8-2HA with 2x 8 cores<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Real core speed on X9-2 series<\/h2>\n\n\n\n<p>I didn&#8217;t test all core configurations as X9-2 is quite new, but I will start cutting core numbers by half on my ODA X9-2S with one Xeon:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lscpu | grep CPU\nCPU op-mode(s):        32-bit, 64-bit\nCPU(s):                32\nOn-line CPU(s) list:   0-31\nCPU family:            6\nModel name:            Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz\nCPU MHz:               2900.000\nCPU max MHz:           3400.0000\nCPU min MHz:           800.0000\nNUMA node0 CPU(s):     0-31\n\nodacli update-cpucore -c 8\n\u2026\n\nlscpu | grep CPU\nCPU op-mode(s):        32-bit, 64-bit\nCPU(s):                16\nOn-line CPU(s) list:   0-15\nCPU family:            6\nModel name:            Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz\nCPU MHz:               3400.000\nCPU max MHz:           3400.0000\nCPU min MHz:           800.0000\nNUMA node0 CPU(s):     0-15<\/code><\/pre>\n\n\n\n<p>That&#8217;s it, as soon as half of the cores (or less) are enabled, you will get maximum speed.<\/p>\n\n\n\n<p>Let&#8217;s confirm this on an ODA X9-2L with 2 Xeons:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lscpu | grep CPU\nCPU op-mode(s):        32-bit, 64-bit\nCPU(s):                64\nOn-line CPU(s) list:   0-63\nCPU family:            6\nModel name:            Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz\nCPU MHz:               2899.691\nCPU max MHz:           3400.0000\nCPU min MHz:           800.0000\nNUMA node0 CPU(s):     0-15,32-47\nNUMA node1 CPU(s):     16-31,48-63\n\nodacli update-cpucore -c 16\n\u2026\n\nlscpu | grep CPU\nlscpu | grep CPU\nCPU op-mode(s):        32-bit, 64-bit\nCPU(s):                32\nOn-line CPU(s) list:   0-31\nCPU family:            6\nModel name:            Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz\nCPU MHz:               3400.000\nCPU max MHz:           3400.0000\nCPU min MHz:           800.0000\nNUMA node0 CPU(s):     0-7,16-23\nNUMA node1 CPU(s):     8-15,24-31\n<\/code><\/pre>\n\n\n\n<p>As expected, this is the same behaviour. Maximum speed when enabling half the cores.<\/p>\n\n\n\n<p>I didn&#8217;t try yet on an X9-2HA, but as it&#8217;s basically two X9-2L ODAs without any NVMe disk, it will probably be the same conclusion.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>ODA X9-2 is quite the same hardware when you compare to its previous sibling. But you should know that you will benefit from maximum core speed as soon as your cut half the cores with odacli configure-cpucore. I would recommend to limit your Enterprise licenses to a maximum of 4 CPUs (8 cores) on an X9-2S, 8 CPUs (16 cores) on an X9-2L and 16 CPUs (2x 16 cores) on an X9-2HA. If you use Standard Edition, consider enabling only 8 cores on an X9-2S, 16 cores on an X9-2L and 2x 16 cores on an X9-2HA to reach the best performance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction It&#8217;s been several months now that Oracle released new Oracle Database Appliance X9-2 series. And my first project with 4 of these servers is coming to an end as moving to production is planned for the next weeks. What is the real speed of the Xeon CPUs inside these new servers? Let&#8217;s find out. [&hellip;]<\/p>\n","protected":false},"author":45,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59],"tags":[1476,2752,2567,1327,2559,2568,2556,1696,1697,1698,1699,2569,2427,2682],"type_dbi":[],"class_list":["post-20582","post","type-post","status-publish","format-standard","hentry","category-oracle","tag-appliance","tag-mhz","tag-oda-2","tag-odacli","tag-oracle-2","tag-oracle-database-appliance-2","tag-performance-2","tag-x8-2","tag-x8-2ha","tag-x8-2m","tag-x8-2s","tag-x9-2","tag-x9-2ha","tag-x9-2l"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>ODA X9-2 and CPU speed - dbi Blog<\/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.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ODA X9-2 and CPU speed\" \/>\n<meta property=\"og:description\" content=\"Introduction It&#8217;s been several months now that Oracle released new Oracle Database Appliance X9-2 series. And my first project with 4 of these servers is coming to an end as moving to production is planned for the next weeks. What is the real speed of the Xeon CPUs inside these new servers? Let&#8217;s find out. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-23T09:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-25T15:25:56+00:00\" \/>\n<meta name=\"author\" content=\"J\u00e9r\u00f4me Dubar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"J\u00e9r\u00f4me Dubar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/\"},\"author\":{\"name\":\"J\u00e9r\u00f4me Dubar\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0fb4bbf128b4cda2f96d662dec2baedd\"},\"headline\":\"ODA X9-2 and CPU speed\",\"datePublished\":\"2022-11-23T09:30:00+00:00\",\"dateModified\":\"2022-11-25T15:25:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/\"},\"wordCount\":770,\"commentCount\":4,\"keywords\":[\"appliance\",\"MHz\",\"oda\",\"odacli\",\"oracle\",\"oracle database appliance\",\"performance\",\"x8-2\",\"x8-2ha\",\"x8-2m\",\"x8-2s\",\"x9-2\",\"X9-2HA\",\"X9-2L\"],\"articleSection\":[\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/\",\"name\":\"ODA X9-2 and CPU speed - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2022-11-23T09:30:00+00:00\",\"dateModified\":\"2022-11-25T15:25:56+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0fb4bbf128b4cda2f96d662dec2baedd\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ODA X9-2 and CPU speed\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0fb4bbf128b4cda2f96d662dec2baedd\",\"name\":\"J\u00e9r\u00f4me Dubar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/efaa5a7def0aa4cdaf49a470fb4a7641a3ea6e378ae1455096a0933f99f46d6b?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/efaa5a7def0aa4cdaf49a470fb4a7641a3ea6e378ae1455096a0933f99f46d6b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/efaa5a7def0aa4cdaf49a470fb4a7641a3ea6e378ae1455096a0933f99f46d6b?s=96&d=mm&r=g\",\"caption\":\"J\u00e9r\u00f4me Dubar\"},\"description\":\"J\u00e9r\u00f4me Dubar has more than 15 years of experience in the field of Information Technology. Ten years ago, he specialized in the Oracle Database technology. His expertise is focused on database architectures, high availability (RAC), disaster recovery (DataGuard), backups (RMAN), performance analysis and tuning (AWR\/statspack), migration, consolidation and appliances, especially ODA (his main projects during the last years). Prior to joining dbi services, J\u00e9r\u00f4me Dubar worked in a Franco-Belgian IT service company as Database team manager and main consultant for 7 years. He also worked for 5 years in a software editor company as technical consultant across France. He was also teaching Oracle Database lessons for 9 years. J\u00e9r\u00f4me Dubar holds a Computer Engineering degree from the Lille Sciences and Technologies university in northern France. His branch-related experience covers the public sector, retail, industry, banking, health, e-commerce and IT sectors.\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/jerome-dubar\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"ODA X9-2 and CPU speed - dbi Blog","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.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/","og_locale":"en_US","og_type":"article","og_title":"ODA X9-2 and CPU speed","og_description":"Introduction It&#8217;s been several months now that Oracle released new Oracle Database Appliance X9-2 series. And my first project with 4 of these servers is coming to an end as moving to production is planned for the next weeks. What is the real speed of the Xeon CPUs inside these new servers? Let&#8217;s find out. [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/","og_site_name":"dbi Blog","article_published_time":"2022-11-23T09:30:00+00:00","article_modified_time":"2022-11-25T15:25:56+00:00","author":"J\u00e9r\u00f4me Dubar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"J\u00e9r\u00f4me Dubar","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/"},"author":{"name":"J\u00e9r\u00f4me Dubar","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0fb4bbf128b4cda2f96d662dec2baedd"},"headline":"ODA X9-2 and CPU speed","datePublished":"2022-11-23T09:30:00+00:00","dateModified":"2022-11-25T15:25:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/"},"wordCount":770,"commentCount":4,"keywords":["appliance","MHz","oda","odacli","oracle","oracle database appliance","performance","x8-2","x8-2ha","x8-2m","x8-2s","x9-2","X9-2HA","X9-2L"],"articleSection":["Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/","url":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/","name":"ODA X9-2 and CPU speed - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2022-11-23T09:30:00+00:00","dateModified":"2022-11-25T15:25:56+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0fb4bbf128b4cda2f96d662dec2baedd"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/oda-x9-2-and-cpu-speed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"ODA X9-2 and CPU speed"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0fb4bbf128b4cda2f96d662dec2baedd","name":"J\u00e9r\u00f4me Dubar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/efaa5a7def0aa4cdaf49a470fb4a7641a3ea6e378ae1455096a0933f99f46d6b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/efaa5a7def0aa4cdaf49a470fb4a7641a3ea6e378ae1455096a0933f99f46d6b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/efaa5a7def0aa4cdaf49a470fb4a7641a3ea6e378ae1455096a0933f99f46d6b?s=96&d=mm&r=g","caption":"J\u00e9r\u00f4me Dubar"},"description":"J\u00e9r\u00f4me Dubar has more than 15 years of experience in the field of Information Technology. Ten years ago, he specialized in the Oracle Database technology. His expertise is focused on database architectures, high availability (RAC), disaster recovery (DataGuard), backups (RMAN), performance analysis and tuning (AWR\/statspack), migration, consolidation and appliances, especially ODA (his main projects during the last years). Prior to joining dbi services, J\u00e9r\u00f4me Dubar worked in a Franco-Belgian IT service company as Database team manager and main consultant for 7 years. He also worked for 5 years in a software editor company as technical consultant across France. He was also teaching Oracle Database lessons for 9 years. J\u00e9r\u00f4me Dubar holds a Computer Engineering degree from the Lille Sciences and Technologies university in northern France. His branch-related experience covers the public sector, retail, industry, banking, health, e-commerce and IT sectors.","url":"https:\/\/www.dbi-services.com\/blog\/author\/jerome-dubar\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20582","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/45"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=20582"}],"version-history":[{"count":5,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20582\/revisions"}],"predecessor-version":[{"id":20587,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20582\/revisions\/20587"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=20582"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=20582"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=20582"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=20582"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}