Saurabh vermaedunode.hashnode.dev·Oct 15, 2023Clustering In NodeJsWe all have multiple CPUs in our machines and the Node js server uses only one of them. If we want to scale out the node js application and minimize the load balancing here comes the clustering under play. Node. js is known to be a single-threaded ru...Discuss·1 likeNode.js
Riya Jaiswalriyajaiswal25.hashnode.dev·Jul 14, 2023Understanding Cluster AnalysisBasically, cluster analysis is the distribution of data points into various clusters. The criteria of distributing them into various clusters is such that there must be similarity between datapoints in same cluster and difference in data points betwe...DiscussData Mining
DataTPointdatatpoint.hashnode.dev·Apr 9, 2023Which Type of Cluster to use in Databricks?What is the cluster in Databricks? A Databricks cluster is a collection of resources and structures that you use to perform data engineering, data science, and data analysis tasks, such as ETL pipeline production, media analysis, ad hoc analysis, and...Discuss·10 likes·106 readsDatabricks
Harjinder Singhforjndrbr7.hashnode.dev·Dec 15, 2022Elastic search multi node cluster with docker-composeA multi-node Elasticsearch cluster is a group of Elasticsearch nodes that work together to distribute data and provide high availability and scalability for search operations. This type of cluster is useful for large-scale applications that need to h...Discuss·11 likes·3.3K readselasticsearch
Seth PhatProsethphat.dev·Nov 24, 2022Why DB clustering is really awesome to scale a monolith project?Hey folks, Have you ever heard about DB Clustering (eg MySQL Clustering)? If not, I would give you a quick summary of it. Before, I worked at a big company based in Munich, Germany (Still working in Vietnam tho haha). Oh boy, they do have a big monol...Discuss·56 readsTech tipsMySQL
Shams Nahidblog.shams-nahid.com·Sep 27, 2022Clustering in Node.js: Look for the limitationsConsider a scenario, in the node server, we receive a request and have tons of computation before sending the response. This computation task is in javascript and is not delegated to the OS or thread pools. During this computation, the event loop can...Discuss·1 like·205 readsNode.js & JavaScriptNode.js