Реклама
5 Common Server Setups For Your Web Application | DigitalOcean
18-01-2023, 23:56 | Автор: EldenFlores1396 | Категория: Портативные программы
5 Common Server Setups For Your Web Application.
When deciding which server architecture to use for your environment, there are many factors to consider, such as performance, scalability, availability, reliability, cost, and ease of management.
Here is a list of commonly used server setups, with a short description of each, including pros and cons. Keep in mind that all of the concepts covered here can be used in various combinations with one another, and Should you loved this information and you would want to receive more details concerning dedicated servers Rostov i implore you to visit our site. that every environment has different requirements, so there is no single, correct configuration.
1. Everything On One Server.
The entire environment resides on a single server. For a typical web application, that would include the web server, application server, and database server. A common variation of this setup is a LAMP stack, which stands for Linux, Apache, MySQL, and PHP, on a single server.
Use Case : Good for setting up an application quickly, as it is the simplest setup possible, but it offers little in the way of scalability and component isolation.
Pros :
Cons :
Application and database contend for the same server resources (CPU, Memory, I/O, etc.) which, aside from possible poor performance, can make it difficult to determine the source (application or database) of poor performance Not readily horizontally scalable.
Related Tutorials :
2. Separate Database Server.
The database management system (DBMS) can be separated from the rest of the environment to eliminate the resource contention between the application and the database, and to increase security by removing the database from the DMZ, or public internet.
Use Case : Good for setting up an application quickly, but keeps application and database from fighting over the same system resources.
Pros :
Application and database tiers do not contend for the same server resources (CPU, Memory, I/O, etc.) You may vertically scale each tier separately, by adding more resources to whichever server needs increased capacity Depending on your setup, it may increase security by removing your database from the DMZ.
Cons :
Slightly more complex setup than single server Performance issues can arise if the network connection between the two servers is high-latency (i.e. the servers are geographically distant from each other), or the bandwidth is too low for the amount of data being transferred.
Related Tutorials :
3. Load Balancer (Reverse Proxy)
Load balancers can be added to a server environment to improve performance and reliability by distributing the workload across multiple servers. If one of the servers that is load balanced fails, the other servers will handle the incoming traffic until the failed server becomes healthy again. It can also be used to serve multiple applications through the same domain and port, by using a layer 7 (application layer) reverse proxy.
Examples of software capable of reverse proxy load balancing: HAProxy, Nginx, and Varnish.
Use Case : Useful in an environment that requires scaling by adding more servers, also known as horizontal scaling.
Pros :
Enables horizontal scaling, i.e. environment capacity can be scaled by adding more servers to it Can protect against DDOS attacks by limiting client connections to a sensible amount and frequency.
Cons :
The load balancer can become a performance bottleneck if it does not have enough resources, or if it is configured poorly Can introduce complexities that require additional consideration, such as where to perform SSL termination and how to handle applications that require sticky sessions The load balancer is a single point of failure; if it goes down, your whole service can go down. A high availability (HA) setup is an infrastructure without a single point of failure. To learn how to implement an HA setup, you can read this section of How To Use Reserved IPs.
Related Tutorials :
4. HTTP Accelerator (Caching Reverse Proxy)
An HTTP accelerator, or caching HTTP reverse proxy, can be used to reduce the time it takes to serve content to a user through a variety of techniques. The main technique employed with an HTTP accelerator is caching responses from a web or application server in memory, so future requests for the same content can be served quickly, серверы под эмуляторы memu with less unnecessary interaction with the web or application servers.
Examples of software capable of HTTP acceleration: you shared windows server Varnish, Squid, Nginx.
Use Case : Useful in an environment with content-heavy dynamic web applications, or with many commonly accessed files.
Pros :
Increase site performance by reducing CPU load on web server, through caching and compression, thereby increasing user capacity Can be used as a reverse proxy load balancer Some caching software can protect against DDOS attacks.
Cons :
Requires tuning to get best performance out of it If the cache-hit rate is low, it could reduce performance.
Related Tutorials :
5. Primary-replica Database Replication.
One way to improve performance of a database system that performs many reads compared to writes, such as a CMS, is to use primary-replica database replication. Replication requires one primary node and one or more replica nodes. In this setup, all updates are sent to the primary node and reads can be distributed across all nodes.
Use Case : Good for increasing the read performance for the database tier of an application.
Here is an example of a primary-replica replication setup, with a single replica node:
Pros :
Improves database read performance by spreading reads across replicas Can improve write performance by using primary exclusively for updates (it spends no time serving read requests)
Cons :
The application accessing the database must have a mechanism to determine which database nodes it should send update and read requests to Updates to replicas are asynchronous, so there is a chance that their contents could be out of date If the primary fails, no updates can be performed on the database until the issue is corrected Does not have built-in failover in case of failure of primary node.
Related Tutorials :
Example: Combining the Concepts.
It is possible to load balance the caching servers, in addition to the application servers, and use database replication in a single environment. The purpose of combining these techniques is to reap the benefits of each without introducing too many issues or complexity. Here is an example diagram of what a server environment could look like:
Let’s assume that the load balancer is configured to recognize static requests (like images, css, javascript, etc.) and send those requests directly to the caching servers, and send other requests to the application servers.
Here is a description of what would happen when a user sends a requests dynamic content:
The user requests dynamic content from _http://example.com/_ (load balancer) The load balancer sends request to app-backend app-backend reads from the database and returns requested content to load balancer The load balancer returns requested data to the user.
If the user requests static content:
The load balancer checks cache-backend to see if the requested content is cached (cache-hit) or not (cache-miss) If cache-hit : return the requested content to the load balancer and jump to Step 7. If cache-miss : the cache server forwards the request to app-backend, through the load balancer The load balancer forwards the request through to app-backend app-backend reads from the database then returns requested content to the load balancer The load balancer forwards the response to cache-backend cache-backend caches the content then returns it to the load balancer The load balancer returns requested data to the user.
This environment still has two single points of failure (load balancer and primary database server), but it provides the all of the other reliability and performance benefits that were described in each section above.
Conclusion.
Now that you are familiar with some basic server setups, you should have a good idea of what kind of setup you would use for your own application(s). If you are working on improving your own environment, remember that an iterative process is best to avoid introducing too many complexities too quickly.
Let us know of any setups you recommend or would like to learn more about in the comments below!
Want to learn more? Join the DigitalOcean Community!
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Скачать Skymonk по прямой ссылке
Просмотров: 22  |  Комментариев: (0)
Уважаемый посетитель, Вы зашли на сайт kopirki.net как незарегистрированный пользователь.
Мы рекомендуем Вам зарегистрироваться либо войти на сайт под своим именем.