{"id":2151,"date":"2024-12-27T06:26:48","date_gmt":"2024-12-27T06:26:48","guid":{"rendered":"https:\/\/imesh.ai\/blog\/?p=2151"},"modified":"2024-12-27T06:26:50","modified_gmt":"2024-12-27T06:26:50","slug":"resolve-sporadic-503-uc-errors-istio-sidecar","status":"publish","type":"post","link":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/","title":{"rendered":"How to resolve Sporadic 503 UC Errors in Istio"},"content":{"rendered":"\n<p>Open-source Istio service mesh is a powerful tool for ensuring resiliency and improving the reliability of your multicloud and multicluster infrastructure. Some issues can cause SREs and the DevOps team to search for solutions incessantly. That\u2019s why we at the IMESH team would start to post about various topics and their resolutions to help adopt the Istio service mesh.\u00a0\u00a0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Issue Summary wrt Istio&nbsp;<\/strong><\/h2>\n\n\n\n<p>Recently, we encountered one of our clients&#8217; instances where their SREs observed sporadic 503 UC Errors on the Istio sidecar. This issue persisted for all the inbound requests across environments such as production, integration, and staging.<\/p>\n\n\n\n<p>The team encountered the following symptoms:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>503 UC Errors<\/strong>: The upstream connection terminated before the response started.<\/li>\n\n\n\n<li><strong>High-load Errors<\/strong>: Errors occur intermittently across multiple services, primarily under high-load conditions.<\/li>\n<\/ul>\n\n\n\n<p>Once the IMESH team was notified, we quickly acknowledged and started diagnosing the issue.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Root Cause Analysis of 503 UC Errors<\/strong><\/h2>\n\n\n\n<p>We analyzed application logs, proxy logs, and tcpdump of the loopback interface to identify the root cause accurately.&nbsp;<\/p>\n\n\n\n<p>The issue stems from <strong>reusing expired or inactive HTTP connections<\/strong> by the Istio proxy when communicating with upstream services.<\/p>\n\n\n\n<p>Below is a quick technical breakdown of our observation.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Istio Proxy Behaviour:<\/strong>\n<ol class=\"wp-block-list\">\n<li>Istio proxies establish <strong>multiple TCP connections<\/strong> to upstream services.<\/li>\n\n\n\n<li>These connections are reused for various requests to enhance performance and reduce connection overhead.<\/li>\n\n\n\n<li>By default, Istio proxies maintain these connections for <strong>up to 1 hour<\/strong>.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Upstream HTTP Keep-Alive Timeout:<\/strong>\n<ol class=\"wp-block-list\">\n<li>Upstream services enforce their <strong>HTTP keep-alive timeout<\/strong>, often configured to shorter durations (e.g., 5 seconds) to close idle connections and free up resources.<\/li>\n\n\n\n<li>After the keep-alive timeout elapses, the upstream service sends a <strong>FIN packet<\/strong> to close the connection. We can observe this in the below <em>tcpdump<\/em>.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n\n\n\n<p>Note: HTTP Keep-alive timeout: 10s<\/p>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li><strong>Reuse of Expired Connections:<\/strong>\n<ol class=\"wp-block-list\">\n<li>Istio sidecar may attempt to reuse these <strong>expired idle connections<\/strong> for new requests, unaware that the connection is no longer.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Race Condition Between FIN and New Requests:<\/strong>\n<ol class=\"wp-block-list\">\n<li>A race condition arises when:\n<ol class=\"wp-block-list\">\n<li>The <strong>FIN packet<\/strong> from the upstream service (indicating connection closure) is delayed(or in process) or not yet processed by the proxy.<\/li>\n\n\n\n<li>The Istio proxy sends a <strong>new request<\/strong> on the same expired connection.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li>In this scenario, the upstream service rejects the new request with <strong>RST packet<\/strong>, terminating the connection and leading to a <strong>503 UC error<\/strong>.<\/li>\n\n\n\n<li>We can observe the race condition in below tcpdump.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n\n\n\n<p>Note: HTTP Keep-alive timeout: 5s<\/p>\n\n\n\n<p><strong>The impact of such configurations is:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Increased error rates (503 UC errors in Istio), particularly during <strong>high load or traffic spikes<\/strong>.<\/li>\n\n\n\n<li>Reduced reliability of services, with potential degradation in the overall user experience.<\/li>\n\n\n\n<li>Operational overhead due to debugging and incident handling.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Proposed Solutions by IMESH<\/strong><\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Connection Timeout Synchronization:<\/strong>\n<ol class=\"wp-block-list\">\n<li>Reduce the Istio proxy\u2019s<a href=\"https:\/\/istio.io\/latest\/docs\/reference\/config\/networking\/destination-rule\/#ConnectionPoolSettings-TCPSettings\"> default connection timeout (currently 1 hour)<\/a> to align with upstream services&#8217; HTTP keep-alive timeout (e.g., 60 seconds).<\/li>\n\n\n\n<li>This ensures the proxy proactively closes connections before the upstream server does.\u00a0<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n\n\n\n<p><strong>OR<\/strong><\/p>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Increase application HTTP keep-alive timeout (e.g., 60 seconds or higher). The higher the HTTP keep-alive value, the lower the chances of idle connection timeout expiry.<\/li>\n\n\n\n<li>Note: The above two can be combined to eliminate race conditions.<\/li>\n<\/ol>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li><strong>Disable Keep-Alive<\/strong>\n<ol class=\"wp-block-list\">\n<li>Altogether disable HTTP KeepAlive (tested with Sanic), causing the application to close the connection after each request. This may degrade performance, as a new connection will be established for every request.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Error Handling and Retries:<\/strong>\n<ol class=\"wp-block-list\">\n<li>Enhance Istio retry policies to gracefully retry failed requests caused by connection reuse issues with the help of Envoy Filter. This poses risk of idempotency issues, however, depending on the particular server framework.<\/li>\n\n\n\n<li>Implement circuit breakers to reduce the load on problematic upstream services during traffic spikes.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Monitoring Enhancements:\u00a0<\/strong>\n<ol class=\"wp-block-list\">\n<li>Set up alerts to monitor for spikes in 503 UC errors and respond promptly.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Hassle-free Istio support and maintenance by IMESH<\/h2>\n\n\n\n<p>As you adopt open-source Istio more in an enterprise setup, you may encounter some issues or bugs. The Istio community is already doing a fantastic job creating new features and solving bugs and issues. However, there can be instances in which problems are critical and can disrupt services; feel free to <a href=\"https:\/\/imesh.ai\/contact-us.html\">contact us<\/a> for dedicated and quick help for enterprise Istio support.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Open-source Istio service mesh is a powerful tool for ensuring resiliency and<span class=\"excerpt-more\"><\/span><\/p>\n","protected":false},"author":7,"featured_media":2153,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[32],"tags":[53],"class_list":["post-2151","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-istio-service-mesh","tag-istio"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to resolve Sporadic 503 UC Errors in Istio Sidecar<\/title>\n<meta name=\"description\" content=\"Find out the Istio configurations, behavior, issues, and resolutions wrt sporadic 503 UC errors in Istio sidecar\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to resolve Sporadic 503 UC Errors in Istio Sidecar\" \/>\n<meta property=\"og:description\" content=\"Find out the Istio configurations, behavior, issues, and resolutions wrt sporadic 503 UC errors in Istio sidecar\" \/>\n<meta property=\"og:url\" content=\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/\" \/>\n<meta property=\"og:site_name\" content=\"IMESH\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-27T06:26:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-27T06:26:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ravi Verma\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ravi Verma\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/\"},\"author\":{\"name\":\"Ravi Verma\",\"@id\":\"https:\/\/imesh.ai\/blog\/#\/schema\/person\/de71147e8308a9de3e6e329890ba3fb8\"},\"headline\":\"How to resolve Sporadic 503 UC Errors in Istio\",\"datePublished\":\"2024-12-27T06:26:48+00:00\",\"dateModified\":\"2024-12-27T06:26:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/\"},\"wordCount\":689,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/imesh.ai\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg\",\"keywords\":[\"istio\"],\"articleSection\":[\"Istio service mesh\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/\",\"url\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/\",\"name\":\"How to resolve Sporadic 503 UC Errors in Istio Sidecar\",\"isPartOf\":{\"@id\":\"https:\/\/imesh.ai\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg\",\"datePublished\":\"2024-12-27T06:26:48+00:00\",\"dateModified\":\"2024-12-27T06:26:50+00:00\",\"description\":\"Find out the Istio configurations, behavior, issues, and resolutions wrt sporadic 503 UC errors in Istio sidecar\",\"breadcrumb\":{\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage\",\"url\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg\",\"contentUrl\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg\",\"width\":1024,\"height\":576,\"caption\":\"How to resolve Sporadic 503 UC Errors in Istio Sidecar\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/imesh.ai\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to resolve Sporadic 503 UC Errors in Istio\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/imesh.ai\/blog\/#website\",\"url\":\"https:\/\/imesh.ai\/blog\/\",\"name\":\"IMESH Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/imesh.ai\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/imesh.ai\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/imesh.ai\/blog\/#organization\",\"name\":\"IMESH\",\"url\":\"https:\/\/imesh.ai\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/imesh.ai\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/IMESH-LOGO-scaled.jpg\",\"contentUrl\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/IMESH-LOGO-scaled.jpg\",\"width\":2560,\"height\":1665,\"caption\":\"IMESH\"},\"image\":{\"@id\":\"https:\/\/imesh.ai\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/imeshai\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/imesh.ai\/blog\/#\/schema\/person\/de71147e8308a9de3e6e329890ba3fb8\",\"name\":\"Ravi Verma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/imesh.ai\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/Ravi-Color-e1679567181569-142x150.jpg\",\"contentUrl\":\"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/Ravi-Color-e1679567181569-142x150.jpg\",\"caption\":\"Ravi Verma\"},\"description\":\"Ravi is the CTO of IMESH. Ravi, a technology visionary, brings 12+ years of experience in software development and cloud architecture in enterprise software. He has led R&amp;D divisions at Samsung and GE Healthcare and architected high-performance, secure and scalable systems for Baxter and Aricent. \u200bHis passion and interest lie in network and security. Ravi frequently discusses open-source technologies such as Kubernetes, Istio, and Envoy Proxy from the CNCF landscape.\",\"sameAs\":[\"https:\/\/imesh.ai\"],\"url\":\"https:\/\/imesh.ai\/blog\/author\/raviimesh-ai\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to resolve Sporadic 503 UC Errors in Istio Sidecar","description":"Find out the Istio configurations, behavior, issues, and resolutions wrt sporadic 503 UC errors in Istio sidecar","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:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/","og_locale":"en_US","og_type":"article","og_title":"How to resolve Sporadic 503 UC Errors in Istio Sidecar","og_description":"Find out the Istio configurations, behavior, issues, and resolutions wrt sporadic 503 UC errors in Istio sidecar","og_url":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/","og_site_name":"IMESH","article_published_time":"2024-12-27T06:26:48+00:00","article_modified_time":"2024-12-27T06:26:50+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg","type":"image\/jpeg"}],"author":"Ravi Verma","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ravi Verma","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#article","isPartOf":{"@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/"},"author":{"name":"Ravi Verma","@id":"https:\/\/imesh.ai\/blog\/#\/schema\/person\/de71147e8308a9de3e6e329890ba3fb8"},"headline":"How to resolve Sporadic 503 UC Errors in Istio","datePublished":"2024-12-27T06:26:48+00:00","dateModified":"2024-12-27T06:26:50+00:00","mainEntityOfPage":{"@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/"},"wordCount":689,"commentCount":0,"publisher":{"@id":"https:\/\/imesh.ai\/blog\/#organization"},"image":{"@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage"},"thumbnailUrl":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg","keywords":["istio"],"articleSection":["Istio service mesh"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/","url":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/","name":"How to resolve Sporadic 503 UC Errors in Istio Sidecar","isPartOf":{"@id":"https:\/\/imesh.ai\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage"},"image":{"@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage"},"thumbnailUrl":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg","datePublished":"2024-12-27T06:26:48+00:00","dateModified":"2024-12-27T06:26:50+00:00","description":"Find out the Istio configurations, behavior, issues, and resolutions wrt sporadic 503 UC errors in Istio sidecar","breadcrumb":{"@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#primaryimage","url":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg","contentUrl":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg","width":1024,"height":576,"caption":"How to resolve Sporadic 503 UC Errors in Istio Sidecar"},{"@type":"BreadcrumbList","@id":"https:\/\/imesh.ai\/blog\/resolve-sporadic-503-uc-errors-istio-sidecar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/imesh.ai\/blog\/"},{"@type":"ListItem","position":2,"name":"How to resolve Sporadic 503 UC Errors in Istio"}]},{"@type":"WebSite","@id":"https:\/\/imesh.ai\/blog\/#website","url":"https:\/\/imesh.ai\/blog\/","name":"IMESH Blog","description":"","publisher":{"@id":"https:\/\/imesh.ai\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/imesh.ai\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/imesh.ai\/blog\/#organization","name":"IMESH","url":"https:\/\/imesh.ai\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/imesh.ai\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/IMESH-LOGO-scaled.jpg","contentUrl":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/IMESH-LOGO-scaled.jpg","width":2560,"height":1665,"caption":"IMESH"},"image":{"@id":"https:\/\/imesh.ai\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/imeshai"]},{"@type":"Person","@id":"https:\/\/imesh.ai\/blog\/#\/schema\/person\/de71147e8308a9de3e6e329890ba3fb8","name":"Ravi Verma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/imesh.ai\/blog\/#\/schema\/person\/image\/","url":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/Ravi-Color-e1679567181569-142x150.jpg","contentUrl":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2023\/03\/Ravi-Color-e1679567181569-142x150.jpg","caption":"Ravi Verma"},"description":"Ravi is the CTO of IMESH. Ravi, a technology visionary, brings 12+ years of experience in software development and cloud architecture in enterprise software. He has led R&amp;D divisions at Samsung and GE Healthcare and architected high-performance, secure and scalable systems for Baxter and Aricent. \u200bHis passion and interest lie in network and security. Ravi frequently discusses open-source technologies such as Kubernetes, Istio, and Envoy Proxy from the CNCF landscape.","sameAs":["https:\/\/imesh.ai"],"url":"https:\/\/imesh.ai\/blog\/author\/raviimesh-ai\/"}]}},"jetpack_featured_media_url":"https:\/\/imesh.ai\/blog\/wp-content\/uploads\/2024\/12\/How-to-resolve-Sporadic-503-UC-Errors-in-Istio-Sidecar.jpg","_links":{"self":[{"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/posts\/2151","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/comments?post=2151"}],"version-history":[{"count":1,"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/posts\/2151\/revisions"}],"predecessor-version":[{"id":2152,"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/posts\/2151\/revisions\/2152"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/media\/2153"}],"wp:attachment":[{"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/media?parent=2151"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/categories?post=2151"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/imesh.ai\/blog\/wp-json\/wp\/v2\/tags?post=2151"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}