{"id":29947,"date":"2022-11-25T18:24:00","date_gmt":"2022-11-25T12:54:00","guid":{"rendered":"https:\/\/blazeclan.com\/performance-testing-cloud-jmeter\/"},"modified":"2023-03-09T16:30:36","modified_gmt":"2023-03-09T11:00:36","slug":"performance-testing-cloud-jmeter","status":"publish","type":"post","link":"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/","title":{"rendered":"Performance Testing in the Cloud with JMeter"},"content":{"rendered":"<h3><span><strong>JMeter<\/strong><\/span><\/h3>\n<p>JMeter, along with it\u2019s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures. JMeter can simulate multiple users with concurrent threads, creating a heavy load against web application under test.<\/p>\n<p>For instance, one M4 Large instance will be sufficient to serve 250 requests per seconds. Nevertheless, stimulating additional users would require launching of more than one JMeter instances by setting up clusters with multiple machines.<\/p>\n<p>Nonetheless, in a situation where everybody is migrating onto the&nbsp;cloud to get a handle on the paradigm shift of the technology, the pay-as-you-go model has become a trend instead of on-premise reserved servers. This, in turn,&nbsp;becomes a limitation for JMeter, regardless of the fact that&nbsp;JMeter supports countless testing strategies such as Load Testing, Distributed Testing, and Functional Testing.<\/p>\n<p>JMeter uses Java RMI (Remote Method Invocation) to communicate to its slaves, but these connections require all the servers on the same subnet, which is not a feasible option while using EC2 instances.<\/p>\n<p><span><em>Below, is a short tutorial to resolve this problem using a 3 node configuration in AWS to execute tests assuming that the test has already been written in the .jmx file.<\/em><\/span><\/p>\n<p>However, before we dive into the step-by-step instructions, let\u2019s take a glance at the definition of some important terms.<\/p>\n<ul>\n<li><span><strong>Master<\/strong><\/span> \u2013 The system running JMeter GUI, which controls the test<\/li>\n<li><span><strong>Slave<\/strong><\/span> \u2013 The system running JMeter-server which takes commands from the GUI and sends requests to the target system(s)<\/li>\n<li><strong><span>Target<\/span><\/strong> \u2013 The web-server we plan to stress test<\/li>\n<\/ul>\n<p>Going ahead, there is one master instance that sends the test to 2 slaves. These slaves execute the test and send the results back to the master to collect and combine the results.<\/p>\n<p><span><strong>Note:*<\/strong><\/span><\/p>\n<ul>\n<li>The test will be executed on both slave machines and not divided across them. &nbsp;This means that if one wants to run 300 threads in the test, the target will be hit with 600 threads.<\/li>\n<li>The master does NOT execute any tests. Gathering the results and orchestrating the tests is enough to handle for one machine.<\/li>\n<li>The test will be sent out to the slaves from the master.&nbsp; There&#8217;s no need to copy the test file to all slaves.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h3><span><strong>Running JMeter on Remote:<\/strong><\/span><\/h3>\n<p>Before starting with remote testing, following points are to be considered:<\/p>\n<ol>\n<li>The firewalls on the systems are turned off.<\/li>\n<li>All the clients are on the same sub-net.<\/li>\n<li>The server is in the same subnet, if 192.x.x.x or 10.x.x.x IP addresses are used. If the server doesn\u2019t use 192 or 10 IP address, there shouldn\u2019t be any problems.<\/li>\n<li>Make sure JMeter can access the server.<\/li>\n<\/ol>\n<p>4.1 Turn on Sharing from \u201cMy computer&gt; Properties&gt; Advance System settings&gt; Remote&gt; Remote Assistance\u201d AND<\/p>\n<p>4.2 Turn on Sharing settings from \u201cControl Panel&gt; Network and Internet&gt; Network and Sharing Center&gt; Advanced sharing settings\u201d<\/p>\n<ol start=\"5\">\n<li>Make sure you use the same version of JMeter on all the systems. Mixing versions may not work correctly.<\/li>\n<li>Make sure you have changed the&nbsp;option to Computer sleeps from \u201cControl Panel&gt;Hardware and Sound&gt;Power Options&gt;Edit Plan Settings\u201d for all machines (Master and Slave\/s) to Never.<\/li>\n<\/ol>\n<p>&nbsp;To confirm the communication in channel: try to Ping from Slaves to Master and Master to Slaves, once.<\/p>\n<p><em><span>&nbsp;Following settings below are also to be considered before proceeding to remote testing:<\/span><\/em><\/p>\n<ol>\n<li>Go to JMeter bin folder<\/li>\n<li>Open \u201cjmeter.properties\u201d file in Edit mode<\/li>\n<li>Go to \u201c# Remote hosts and RMI configuration\u201d section<\/li>\n<li>Mention the IP address\/es of Slaves as a value for \u201cremote_hosts\u201d and make sure you have uncommented the same.<\/li>\n<\/ol>\n<p>e.g: remote_hosts=10.1.1.144,10.1.1.35,10.1.1.56,10.1.1.34,10.1.1.140<\/p>\n<p>&nbsp;<\/p>\n<p><span><strong>Note:<\/strong><\/span> Make sure to update this line in each run for the slaves included in the test with correct IP.<\/p>\n<p>Mention \u201cserver.rmi.create=false\u201d for Master AND \u201cserver.rmi.create=true\u201d for Slave\/s<\/p>\n<p>Uncomment \u201cmode=Asynch\u201d<\/p>\n<p>Uncomment \u201casynch.batch.queue.size=\u201d and update the value to 250<\/p>\n<p>e.g.: asynch.batch.queue.size=250<\/p>\n<p>(This setting denotes that if the machine IP is used as SLAVE; it will serve 250 users max to run on.)<\/p>\n<p>&nbsp;<\/p>\n<p><span><em>Now, as all the points have been considered and the settings have been done, let&#8217;s run .jmx file remote from the&nbsp;command line: <\/em><\/span><\/p>\n<p>&nbsp;<\/p>\n<p>NOTE: Make sure you have started the remote servers before running test.<\/p>\n<p>&nbsp;<\/p>\n<ol>\n<li>Open command line from jmeter\/bin<\/li>\n<li>Enter the&nbsp;following command:<\/li>\n<\/ol>\n<p>jmeter -n -t myjmetertest.jmx -l myjmetertest_10users.jtl -R ipnumber1,ipnumber2<\/p>\n<p><strong><em>Running JMeter on Remote from UI:(NOT recommended for big tests)<\/em><\/strong><\/p>\n<p>NOTE: Make sure you have started the remote servers before running test.<\/p>\n<ol>\n<li>Open jmeter GUI<\/li>\n<li>Open jmx file you would like to run on the&nbsp;remote and add necessary listeners to Test Plan.<\/li>\n<li>Click on \u201cRemote Start all\u201d button from the top.<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>JMeter JMeter, along with it\u2019s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures. JMeter can simulate multiple users with concurrent threads, creating a heavy load against web application under test. For instance, one M4 Large instance will be sufficient to [&hellip;]<\/p>\n","protected":false},"author":192,"featured_media":16319,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1718,914,2037,1949],"tags":[3386,3388,3390],"class_list":["post-29947","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-aws-cloud-computing-india","category-cloud","category-news-more-india","category-tech-india","tag-performance-testing-india","tag-testing-on-aws-india","tag-testing-on-cloud-india"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Performance Testing in the Cloud with JMeter - Blazeclan<\/title>\n<meta name=\"description\" content=\"JMeter, along with it\u00e2\u20ac\u2122s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Performance Testing in the Cloud with JMeter - Blazeclan\" \/>\n<meta property=\"og:description\" content=\"JMeter, along with it\u00e2\u20ac\u2122s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/\" \/>\n<meta property=\"og:site_name\" content=\"Blazeclan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/blazeclan.hq\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-25T12:54:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-09T11:00:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Team Blazeclan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:site\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team Blazeclan\" \/>\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:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/\"},\"author\":{\"name\":\"Team Blazeclan\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8\"},\"headline\":\"Performance Testing in the Cloud with JMeter\",\"datePublished\":\"2022-11-25T12:54:00+00:00\",\"dateModified\":\"2023-03-09T11:00:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/\"},\"wordCount\":818,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#organization\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png\",\"keywords\":[\"Performance Testing\",\"Testing on AWS\",\"Testing on Cloud\"],\"articleSection\":[\"AWS Cloud Computing\",\"Cloud\",\"News &amp; More\",\"Tech\"],\"inLanguage\":\"en-IN\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/\",\"url\":\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/\",\"name\":\"Performance Testing in the Cloud with JMeter - Blazeclan\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png\",\"datePublished\":\"2022-11-25T12:54:00+00:00\",\"dateModified\":\"2023-03-09T11:00:36+00:00\",\"description\":\"JMeter, along with it\u00e2\u20ac\u2122s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures.\",\"breadcrumb\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#breadcrumb\"},\"inLanguage\":\"en-IN\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-IN\",\"@id\":\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png\",\"width\":1650,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blazeclan.com\/india\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Performance Testing in the Cloud with JMeter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blazeclan.com\/india\/#website\",\"url\":\"https:\/\/blazeclan.com\/india\/\",\"name\":\"Blazeclan\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blazeclan.com\/india\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-IN\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blazeclan.com\/india\/#organization\",\"name\":\"Blazeclan\",\"url\":\"https:\/\/blazeclan.com\/india\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-IN\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"caption\":\"Blazeclan\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/blazeclan.hq\/\",\"https:\/\/x.com\/blazeclan_hq\",\"https:\/\/www.instagram.com\/blazeclantechnologies\/\",\"https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/\",\"https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8\",\"name\":\"Team Blazeclan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-IN\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g\",\"caption\":\"Team Blazeclan\"},\"sameAs\":[\"http:\/\/localhost\/ps-local-wp\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Performance Testing in the Cloud with JMeter - Blazeclan","description":"JMeter, along with it\u00e2\u20ac\u2122s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures.","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:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/","og_locale":"en_US","og_type":"article","og_title":"Performance Testing in the Cloud with JMeter - Blazeclan","og_description":"JMeter, along with it\u00e2\u20ac\u2122s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures.","og_url":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/","og_site_name":"Blazeclan","article_publisher":"https:\/\/www.facebook.com\/blazeclan.hq\/","article_published_time":"2022-11-25T12:54:00+00:00","article_modified_time":"2023-03-09T11:00:36+00:00","og_image":[{"width":1650,"height":680,"url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png","type":"image\/png"}],"author":"Team Blazeclan","twitter_card":"summary_large_image","twitter_creator":"@blazeclan_hq","twitter_site":"@blazeclan_hq","twitter_misc":{"Written by":"Team Blazeclan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#article","isPartOf":{"@id":"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/"},"author":{"name":"Team Blazeclan","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8"},"headline":"Performance Testing in the Cloud with JMeter","datePublished":"2022-11-25T12:54:00+00:00","dateModified":"2023-03-09T11:00:36+00:00","mainEntityOfPage":{"@id":"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/"},"wordCount":818,"commentCount":0,"publisher":{"@id":"https:\/\/blazeclan.com\/india\/#organization"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png","keywords":["Performance Testing","Testing on AWS","Testing on Cloud"],"articleSection":["AWS Cloud Computing","Cloud","News &amp; More","Tech"],"inLanguage":"en-IN","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blazeclan.com\/india\/blog\/performance-testing-cloud-jmeter\/","url":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/","name":"Performance Testing in the Cloud with JMeter - Blazeclan","isPartOf":{"@id":"https:\/\/blazeclan.com\/india\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png","datePublished":"2022-11-25T12:54:00+00:00","dateModified":"2023-03-09T11:00:36+00:00","description":"JMeter, along with it\u00e2\u20ac\u2122s out of the box features is an open source software entirely designed on Java application to stress test websites and your application architectures.","breadcrumb":{"@id":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#breadcrumb"},"inLanguage":"en-IN","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/"]}]},{"@type":"ImageObject","inLanguage":"en-IN","@id":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#primaryimage","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2016\/12\/Performance-Testing-in-the-Cloud-with-JMeter-2.png","width":1650,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/blazeclan.com\/blog\/performance-testing-cloud-jmeter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blazeclan.com\/india\/"},{"@type":"ListItem","position":2,"name":"Performance Testing in the Cloud with JMeter"}]},{"@type":"WebSite","@id":"https:\/\/blazeclan.com\/india\/#website","url":"https:\/\/blazeclan.com\/india\/","name":"Blazeclan","description":"","publisher":{"@id":"https:\/\/blazeclan.com\/india\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blazeclan.com\/india\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-IN"},{"@type":"Organization","@id":"https:\/\/blazeclan.com\/india\/#organization","name":"Blazeclan","url":"https:\/\/blazeclan.com\/india\/","logo":{"@type":"ImageObject","inLanguage":"en-IN","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","caption":"Blazeclan"},"image":{"@id":"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/blazeclan.hq\/","https:\/\/x.com\/blazeclan_hq","https:\/\/www.instagram.com\/blazeclantechnologies\/","https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/","https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow"]},{"@type":"Person","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8","name":"Team Blazeclan","image":{"@type":"ImageObject","inLanguage":"en-IN","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g","caption":"Team Blazeclan"},"sameAs":["http:\/\/localhost\/ps-local-wp"]}]}},"_links":{"self":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/posts\/29947","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/users\/192"}],"replies":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/comments?post=29947"}],"version-history":[{"count":0,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/posts\/29947\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/media\/16319"}],"wp:attachment":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/media?parent=29947"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/categories?post=29947"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/tags?post=29947"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}