{"id":9636,"date":"2013-02-25T12:11:18","date_gmt":"2013-02-25T06:41:18","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=9636"},"modified":"2013-02-25T12:18:24","modified_gmt":"2013-02-25T06:48:24","slug":"clustering-in-node-js","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/","title":{"rendered":"Clustering in Node.js"},"content":{"rendered":"<p><strong>Node.js<\/strong> is single threaded so it runs one process on a single <strong>CPU<\/strong>, as the power of <strong>Node.js<\/strong> is its performance and speed it doesn&#8217;t seem good to use only one <strong>CPU<\/strong> in a multi-core system. For utilizing all the <strong>CPUs<\/strong>, <strong>Node.js<\/strong> allows us to create a network of processes that all shares the same port.<\/p>\n<p style=\"padding:10px\">\n<p>Create a file named <strong>clusterExample.js<\/strong><\/p>\n<p>[js]<br \/>\nvar cluster = require(&#8216;cluster&#8217;); \/\/use the cluster module<br \/>\nvar http = require(&#8216;http&#8217;)<br \/>\nvar noOfCPUs = require(&#8216;os&#8217;).cpus().length(); \/\/count the no of CPUs available<\/p>\n<p>if (cluster.isMaster) { \/\/Check if the cluster is master or worker process<br \/>\n  for (var i = 0; i &lt; noOfCPUs; i++) {<br \/>\n    cluster.fork() \/\/creates a worker process<br \/>\n  }<\/p>\n<p>  \/\/give message on console when worker process starts listening<br \/>\n  cluster.on(&#8216;listening&#8217;, function (worker, address) {<br \/>\n    console.log(&quot;A new worker process with #&quot; + worker.id + &quot; is now listening to &quot; + &quot;:&quot; + address.port);<br \/>\n  });<\/p>\n<p>  \/\/give message on console and create a new worker porcess when a worker process dies<br \/>\n  cluster.on(&#8216;exit&#8217;, function (worker, code, signal) {<br \/>\n    console.log(&quot;worker process with #&quot; + worker.process.pid + &quot;died&quot;);<br \/>\n    cluster.fork(); \/\/create the new worker process<br \/>\n  });<br \/>\n} else {<br \/>\n  http.createServer(function (req, res) {<br \/>\n    res.writeHead(200);<br \/>\n    res.end(&quot;Cluster Example\\n&quot;);<br \/>\n  }).listen(9090);<br \/>\n}<br \/>\n[\/js]<\/p>\n<p>Now run the clusterExample.js<\/p>\n<p>[js]node clusterExample.js[\/js]<\/p>\n<h3>Output:<\/h3>\n<p>A new worker process with #1 is now listening to :9090<br \/>\nA new worker process\u00a0with #2 is now listening to :9090<br \/>\nA new worker process\u00a0with #3 is now listening to :9090<br \/>\nA new worker process\u00a0with #4 is now listening to :9090<\/p>\n<p style=\"padding:10px\">\n<p>Shreyance Jain<br \/>\n<a href=\"mailto:shreyance@intelligrape.com\">shreyance@intelligrape.com<\/a><\/p>\n<p style=\"padding:10px\">\n","protected":false},"excerpt":{"rendered":"<p>Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn&#8217;t seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same [&hellip;]<\/p>\n","protected":false},"author":64,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":9,"footnotes":""},"categories":[1],"tags":[1137,1138,1124],"class_list":["post-9636","post","type-post","status-publish","format-standard","hentry","category-technology","tag-cluster","tag-cpu","tag-node-js"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn&#039;t seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Shreyance Jain\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Clustering in Node.js | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn&#039;t seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Clustering in Node.js | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn&#039;t seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#article\",\"name\":\"Clustering in Node.js | TO THE NEW Blog\",\"headline\":\"Clustering in Node.js\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shreyance\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2013-02-25T12:11:18+05:30\",\"dateModified\":\"2013-02-25T12:18:24+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#webpage\"},\"articleSection\":\"Technology, cluster, CPU, node.js\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#listItem\",\"name\":\"Clustering in Node.js\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#listItem\",\"position\":3,\"name\":\"Clustering in Node.js\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shreyance\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shreyance\\\/\",\"name\":\"Shreyance Jain\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2df2db27caa4ff869f6e062b0feb0907a696f8dfa956a752248725188e4cc5bd?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Shreyance Jain\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/\",\"name\":\"Clustering in Node.js | TO THE NEW Blog\",\"description\":\"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn't seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/clustering-in-node-js\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shreyance\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shreyance\\\/#author\"},\"datePublished\":\"2013-02-25T12:11:18+05:30\",\"dateModified\":\"2013-02-25T12:18:24+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Clustering in Node.js | TO THE NEW Blog","description":"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn't seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same","canonical_url":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#article","name":"Clustering in Node.js | TO THE NEW Blog","headline":"Clustering in Node.js","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/shreyance\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2013-02-25T12:11:18+05:30","dateModified":"2013-02-25T12:18:24+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#webpage"},"articleSection":"Technology, cluster, CPU, node.js"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.online\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#listItem","name":"Clustering in Node.js"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#listItem","position":3,"name":"Clustering in Node.js","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/shreyance\/#author","url":"https:\/\/2thenew.online\/blog\/author\/shreyance\/","name":"Shreyance Jain","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/2df2db27caa4ff869f6e062b0feb0907a696f8dfa956a752248725188e4cc5bd?s=96&d=mm&r=g","width":96,"height":96,"caption":"Shreyance Jain"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#webpage","url":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/","name":"Clustering in Node.js | TO THE NEW Blog","description":"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn't seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/shreyance\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/shreyance\/#author"},"datePublished":"2013-02-25T12:11:18+05:30","dateModified":"2013-02-25T12:18:24+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Clustering in Node.js | TO THE NEW Blog","og:description":"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn't seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same","og:url":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Clustering in Node.js | TO THE NEW Blog","twitter:description":"Node.js is single threaded so it runs one process on a single CPU, as the power of Node.js is its performance and speed it doesn't seem good to use only one CPU in a multi-core system. For utilizing all the CPUs, Node.js allows us to create a network of processes that all shares the same","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"9636","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 08:08:02","updated":"2024-02-29 10:52:24","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tClustering in Node.js\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Technology","link":"https:\/\/2thenew.online\/blog\/category\/technology\/"},{"label":"Clustering in Node.js","link":"https:\/\/2thenew.online\/blog\/clustering-in-node-js\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/9636","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/64"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=9636"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/9636\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=9636"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=9636"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=9636"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}