Library
|
Your profile |
Software systems and computational methods
Reference:
Makarov, I.S., Larin, D.V., Vorobeva , E.G., Emelin, D.P., Kartashov, D.A. (2025). The impact of asynchronous and multithreaded query processing models on the performance of server-side web applications. Software systems and computational methods, 1, 13–20. . https://doi.org/10.7256/2454-0714.2025.1.73665
The impact of asynchronous and multithreaded query processing models on the performance of server-side web applications
DOI: 10.7256/2454-0714.2025.1.73665EDN: UZPPWTReceived: 12-03-2025Published: 03-04-2025Abstract: The object of the study is server-side web applications and their performance when processing a large number of simultaneous requests. Asynchronous technologies (Node.js, Python Asyncio, Go, Kotlin Coroutines) and multithreaded models (Java Threading, Python Threading). The authors analyze asynchronous event loops, goroutines, coroutines, and classical multithreaded approaches in detail, evaluating their effectiveness in tasks with intensive use of I/O and computing resources. An experiment is underway with API development in three languages (Java, Node.js, Go) and testing using the hey utility. It also explores the features of scalability, performance optimization, caching, error handling, load tests, and implementation features of parallel computing. The purpose of the study is to determine which approaches provide the highest performance in server applications. Research methods include load testing, collection of metrics (response time, bandwidth, and server resource consumption), and analysis of the results. The scientific novelty lies in comparing asynchronous and multithreaded methods in real-world web development scenarios. The main conclusions of the study are recommendations on the use of asynchronous technologies in high-load I/O tasks and multithreading in computationally complex scenarios. The results obtained will help developers optimize the performance of server applications depending on their tasks and workload. Additionally, the study examines aspects of the complexity of debugging asynchronous applications, the impact of thread pools on the performance of multithreaded solutions, as well as scenarios in which asynchronous and multithreaded approaches can complement each other. Special attention is paid to server resource management under scalable loads, which will allow IT specialists to more accurately select tools and technologies for solving specific tasks. In conclusion, possible ways to optimize the operation of server applications are discussed, including the use of new approaches and algorithms, as well as the prospects for the development of asynchronous and multithreaded technologies in the context of highly loaded systems, their impact on the overall application architecture, as well as on increasing fault tolerance and security. Keywords: asynchrony, multithreading, efficiency, server-side web applications, load testing, Node.js, Python Asyncio, Go goroutines, Java Threading, performance of server applicationsThis article is automatically translated. Introduction
Modern server-side web applications face increasing demands to handle a large number of simultaneous requests. As the number of users increases and operations become more complex, especially in applications running with APIs, databases, and external services, server-side performance becomes critical. In this context, the choice between asynchronous and multithreaded approaches becomes very important. Asynchronous technologies such as Node.js (event loop), Python Asyncio (concurrency, managed events), Go (goroutines), Kotlin Coroutines, offer opportunities to improve performance due to non-blocking I/O operations and ease of managing a large number of simultaneous connections. On the other hand, multithreaded models such as Java Threading and Python Threading provide reliability and simplicity of logic, but can have overhead costs when creating a large number of threads. [1, c.93-95],[2] This article examines the performance of server-side web applications using asynchronous and multithreaded approaches.
2. Overview of technologies and approaches Asynchronous event loop. Asynchronous event loop is represented by technologies such as Node.js and Python Asyncio. This approach involves using a single thread to manage a large number of requests via non-blocking I/O. This allows for high performance in I/O operations, but complicates debugging and requires the use of asynchronous libraries.[5] Goroutines and coroutines. Go and Kotlin Coroutines use lightweight language runtime-driven streams. They provide high parallelism and are particularly effective in resource-intensive tasks. However, the developer needs to explicitly specify competitive computing. [3, c.260-261],[4] Multithreaded programming. The multithreaded model (Java, Python Threading) allocates a separate thread for each request or uses a thread pool. This approach is useful for tasks that require parallel processing, but it requires careful design and synchronization to avoid errors and performance losses. [1, c.93-95] The comparative table 2.1 of these technologies is shown below.: Table 2.1 – comparison of technologies and approaches
3. Research methodology To conduct the research, a server application with an API in three languages was developed: Java (multithreaded), Node.js (asynchronous), Go (goroutines). The API endpoint processes an incoming request, reads data from the database (delay emulation), and sends a response. Load tests were performed with a different number of simultaneous requests (50, 100, 500, 1000, 5000). The average response time, bandwidth, and server resource usage (CPU, RAM) were evaluated.
4. Implementation Load tests were performed for different load levels: 50, 100, 500, 1000, and 5000 simultaneous requests, which allowed us to identify how each approach copes with the increased load. For each test scenario, we measured the following parameters: Average response time is the average time that has elapsed since the server received the request before sending the response to the client. An important indicator for evaluating the responsiveness of an application (Table 4.1). Table 4.1 – Average response time
Node.js and Go have lower latency under high load due to asynchronous processing and ease of creating new tasks. Throughput (RPS) is the number of requests that the server is able to process per unit of time (Table 4.2). Table 4.2 – Throughput
Go leads the way because of the ease of mining and the fast scheduler, followed by Node.js Java is slowing down due to the cost of thread management and context switching. We used the hey utility to perform load testing. hey is a modern HTTP server load testing tool written in the Go language. It can be considered a modern analogue of utilities such as ApacheBench or wrk, but with a number of advantages: - Ease and efficiency: hey allows you to quickly emulate thousands of simultaneous requests, which is ideal for testing the scalability of a system under real load conditions. - Ease of use: to run the test, it is enough to specify the total number of requests and the number of simultaneous connections. The integration of the hey utility into the load testing process allowed us to gain a deep understanding of the server's behavior under various load levels, which is a key point in optimizing web applications and ensuring their stable operation even under peak load conditions.[6] CPU and RAM usage — how much computing resources the server consumes when processing requests. To investigate them, the Process Explorer utility was used (and also the built-in PowerShell monitoring for a specific Get-Process process | Where-Object { $_.ProcessName -like "java" } | Select-Object Name, CPU, WS). This tool shows the CPU usage, RAM, and other system information for the selected process (Table 4.3). [7] Process Explorer is an advanced utility from Microsoft (Sysinternals) that allows you to monitor active processes in detail and analyze their use of system resources, including CPU (central processing unit) and RAM (RAM). [7] Table 4.3 – CPU and RAM usage
Go consumes the least amount of memory due to the economical goroutines. Node.js stays within the normal range, while Java requires more memory due to the heavy threading model and JVM operation. Based on the tests performed, it can be concluded that Java is suitable for enterprise applications with complex logic, but loses in terms of resource consumption and latency under very high load. Node.js is great for I/O-dependent tasks and rapid development. Better performance under medium loads. Go is ideal for high-load systems and requires fewer resources. Wins with a large number of requests.
Conclusion The study showed the importance of choosing the appropriate query processing model for server-side web applications, depending on the specifics of the load. Asynchronous technologies such as Node.js and Go have demonstrated high efficiency in solving tasks related to intensive use of input-output (I/O), ensuring stable performance even under high loads. These technologies have proven to be more preferable in scenarios with a large number of simultaneous requests, where it is important to minimize delays and resource intensity. References
1. Opivalov, S. A. (2023). Methods of working with streams in Java. International Journal of Humanities and Natural Sciences, 4(79), 93-99.
2. Node.js Guide, Part 1: General information and getting started. Retrieved March 3, 2025, from https://habr.com/ru/companies/ruvds/articles/422893/ 3. Opivalov, S. A. (2023). Prospects for the use of Kotlin in programming. International Journal of Humanities and Natural Sciences, 9(84), 260-262. 4. Parallel programming in Go. Retrieved March 3, 2025, from https://proglib.io/p/parallelnoe-programmirovanie-v-go-2021-05-23?ysclid=m7wag43tb6712881695 5. Asynchronous functions and the Node.js event loop. Retrieved March 4, 2025, from https://translated.turbopages.org/proxy_u/en-ru.ru.137d7d27-67c89218-0c37f6b9-74722d776562/https/www.geeksforgeeks.org/asynchronous-functions-and-the-node-js-event-loop/ 6. Load testing using Hey. Retrieved March 4, 2025, from https://dev.to/saantoryuu/load-testing-using-hey-c84 7. Process Explorer v17.06. Retrieved March 2, 2025, from https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer
Peer Review
Peer reviewers' evaluations remain confidential and are not disclosed to the public. Only external reviews, authorized for publication by the article's author(s), are made public. Typically, these final reviews are conducted after the manuscript's revision. Adhering to our double-blind review policy, the reviewer's identity is kept confidential.
|