首页 > 系统相关 >nginx-gridfs Benchmarking Raw Results

nginx-gridfs Benchmarking Raw Results

时间:2023-06-11 17:36:31浏览次数:58  
标签:10k ab 100k Concurrent nginx Raw 5k 1k Benchmarking



Raw Data

Spreadsheet with test results (ODF format)

These following links show the raw output from the benchmarking utilities.

GridFS Over Network

This test scenario shows performance for HTTP requests over a gigabit Ethernet LAN connection. MongoDB and nginx are on the same system and the HTTP client is remote

GridFS From Local Machine

This test scenario shows performance for HTTP requests originating on the HTTP server (removing network limitations). MongoDB, nginx, and the benchmark utility are all on the same system

ZFS Over Network

This test scenario shows performance for HTTP requests over a gigabit Ethernet LAN connection serving the files statically from disk.

ZFS From Local Machine

This test scenario shows performance for HTTP requests originating on the HTTP server (removing network limitations) serving the files statically from disk.

标签:10k,ab,100k,Concurrent,nginx,Raw,5k,1k,Benchmarking
From: https://blog.51cto.com/u_16088628/6458330

相关文章

  • nginx-ssl
    阿里云sslhttps://cloud.tencent.com/developer/article/1444888?from=15425&areaSource=102001.1&traceId=hr6wuqWG00xJ9twXuLoOAapkaddopenssl-devopensslmkdir/usr/local/nginx/conf/sslcd/usr/local/nginx/conf/sslopensslgenrsa-outmy.key-des31024......
  • k8s 1.26.5 Ingress-nginx 的高可用部署
    1.安装部署ingress-nginx本次部署使用了高可用的形式,会在每个node节点做亲和性(master不部署),让每一个pod都部署上去,然后加入NGINX去过负载,这样我们之后用NGINX的80端口访问域名就可以了。主机地址端口k8s-node01192.168.80.48nginx启动端口:3080,负载均衡端口:根据ingre......
  • Nginx用作反向代理服务器使用!
        Nginx("enginex")是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器。Nginx是由IgorSysoev为俄罗斯访问量第二的Rambler.ru站点开发的,它已经在该站点运行超过三年了。Igor将源代码以类BSD许可证的形式发布。Nginx超越Apache的高性......
  • Linux系统下配置Nginx服务器
    Nginx是一个高性能的开源HTTP和反向代理服务器,也可以作为电子邮件(SMTP/POP3/IMAP)代理服务器、负载均衡器和HTTP缓存服务器,使用在安装Nginx之前,需要安装一些其他软件依赖,如gcc、pcre、zlib和openssl。1、yum installgcc-ygcc是GNUCompilerCollection的简称,包含编译器和其他编......
  • nginx-clojure-0.6.0 集成nginx 1.25.0 构建的解决方法
    今天也说过关于nginx-clojure-0.6.0集成nginx1.2.50构建是有问题的,以下是解决方法实际问题staticdeclarationof‘ngx_http_close_request’followsnon-staticdeclaration原因nginx-clojure复制了nginx源码中对于nginx的处理函数(ngx_http_clojure_mem.c文件)......
  • CorelDRAW好用么?cdr文件用什么打开?(cdr文件打开方式汇总)
    通过上文的介绍,大家对矢量图形设计软件有了一定的了解,和同类软件对比选择也有了一个明确的方向,CorelDRAW是矢量软件中的最老牌大哥,功能强大没说的,此外它还集成了CorelPHOTO-PAINT、CorelFontManager等在内的7个软件包。而且对比于illustrator和freehand,CorelDRAW更为简单易上手C......
  • nginx优化配置进程数与cpu亲和性之间的关系,你真正了解吗???
    关于nginx的进程数的配置,以及cpu亲和性的配置,大家能了解多少呢? worker_processes:配置线程数在高并发的web服务器场景下,并发实际是有进程处理,那么为了保障处理并发,线程数肯定要事先启动足。打个比方就像是开餐厅,开业之前需要招聘相对数量的服务员来接待客户。而worker_process......
  • Nginx 获取与传递真实访问IP
    1.环境首先,我这里的环境为nginx-1.1.2.2,通过yum安装。如果想要源码安装,需要通过如下参数,启用ngx_http_realip_module模块。--with-http_realip_module而传递真实IP到后端,需要使用到ngx_http_proxy_module模块,此模块默认会编译。对于Nginx的安装和添加nginx模块等,有问题可参考......
  • nginx及常用部署方式与性能优化
    nginx做反向代理服务器nginx配置:upstreambackend_server{server123.34.34.34weight=1server123.34.34.35weight=1}server{location/{proxy_passhttp://backend_server;proxy_set_headerHost$http_hosti:$http_host:$proxy_port;......
  • NGINX配置详解
    NGINX配置详解关于ngx虽然一直在用,但是对其配置及详细作用有些一知半解,本周趁有时间刚好一起梳理下。本篇文章将包括常用的ngx功能,如代理及负载均衡等,争取内容尽量全面丰富一些。什么是NGXNginx是开源的轻量级Web服务器、反向代理服务器,以及负载均衡器和HTTP缓存器。其特......