ఒకే Node ప్రక్రియ ఒక CPU కోర్ మాత్రమే ఉపయోగించుకుంటుంది (దీని JS ఒక thread-లో నడుస్తుంది). యంత్రంలో అన్ని కోర్లను ఉపయోగించుకోవడానికి, మీరు బహుళ Node ప్రక్రియలను నడుపుతారు — cluster మాడ్యూల్ ద్వారా, PM2 వంటి ప్రక్రియ నిర్వాహకం, లేదా కంటైనర్ సమన్వయం — మరియు వాటిలో అంతటా అభ్యర్థనలను load-balance చేస్తారు.
సమస్య
A server with 8 CPU cores running ONE Node process → uses ~1 core, wastes 7.
Need multiple processes to utilize all cores and handle more concurrent load.
