Odd SSL performance

2015-06-18 Thread Phil Daws
Hello all: we are rolling out a new system and are testing the SSL performance with some strange results. This is all being performed on a cloud hypervisor instance with the following: HA-Proxy version 1.5.11 2015/01/31 8GM RAM / 8 CPUs when we run 'ab' with nbproc set to '1' we see the

RE: Odd SSL performance

2015-06-18 Thread Lukas Tribus
Hi Phil, Hello all: we are rolling out a new system and are testing the SSL performance with some strange results. This is all being performed on a cloud hypervisor instance with the following: You are saying nginx listens on 443 (SSL) and 80, and you connect to those ports directly from

Re: Odd SSL performance

2015-06-18 Thread Baptiste
Phil, First, use '-k' option on ab to keep connections alive on ab side. From a pure benchamrk point of view, using the loopback is useless! Furthermore if all VMs are hosted on the same hypervisor. You won't be able to get any accurate conclusion from your test, because the injector VM is

Re: Odd SSL performance

2015-06-18 Thread Phil Daws
Baptiste, as requested: openssl speed rsa2048 Doing 2048 bit private rsa's for 10s: 1189 2048 bit private RSA's in 10.00s Doing 2048 bit public rsa's for 10s: 50993 2048 bit public RSA's in 10.00s OpenSSL 0.9.8w 23 Apr 2012 built on: Mon Feb 17 16:11:28 PST 2014 options:bn(64,64) md2(int)

Re: Odd SSL performance

2015-06-18 Thread Baptiste
Phil, without -k, HAProxy spends its time to compute TLS keys. Can you run 'openssl speed rsa2048' and report here the number? My guess is that it shouldn't be too far from 400 :) Baptiste On Thu, Jun 18, 2015 at 3:20 PM, Phil Daws ux...@splatnix.net wrote: Hello Baptiste: we were seeing

Re: Odd SSL performance

2015-06-18 Thread Phil Daws
Hello Lukas: Path is as follows: Internet - HAProxy [Frontend:443 - Backend:80] - 6 x NGINX Yeah, unfortunately due to the application behind NGINX our benchmarking has to be without keep-alives :( Thanks, Phil - On 18 Jun, 2015, at 13:38, Lukas Tribus luky...@hotmail.com wrote: Hi

Re: TiO2 for paint industry

2015-06-18 Thread Sinotechem
Dear Purchase Manager, Good day! Glad to know you are in the market of chemical raw material. We are Sinotec Industrial Group Co.,Ltd, a leading chemical supplier from China. Below is our main products list: 1. Titanium Dioxide Anatase / Rutile 2. Zinc Oxide 3. Iron Oxide series 4.

Re: Odd SSL performance

2015-06-18 Thread Phil Daws
Hello Baptiste: we were seeing lower tps from a remote system to the front-end LB hence trying to exclude client side issues by using the LB interface. Yes, when we use '-k', we do see a huge difference but its interesting that we pretty much always get 390 tps for a single core, and when we

[SPAM] *Traductions et interprètes de qualité en toutes langues...

2015-06-18 Thread Aurelien SUPOT A.Text Work
Si vous ne visualisez pas correctement l’e-mail, cliquez ici http://url.snd36.ch/visu-9A01808E-6FD6-4677-BAAD-CA18A05D11AD-526194411-675635-18062015.html Bonjour, Je me permets de vous contacter afin de vous proposer nos services de traduction et d'interprétation professionnelle. Notre agence,

Location of log file of haproxy

2015-06-18 Thread Ajay Kumar
Hi, I am using HAProxy in smartOS VM of Joyent but failed to trace of its log file. I explored in internet too but not found any more than following but then not found folder /etc/rsyslog.d/ in the smartOS. http://kvz.io/blog/2010/08/11/haproxy-logging/

Delaying requests with Lua

2015-06-18 Thread bjun...@gmail.com
Hi, i want to delay specific requests and i want to have a random delay for every request (for example in a range from 1000ms - 2000ms) As an ugly hack, you can use the following (with a static value): tcp-request inspect-delay 2000ms tcp-request content accept if WAIT_END I think i can

30w rgb outer door led floodlight

2015-06-18 Thread kathy
Hello, Hot sales outdoor 100w COB led floodlight LED HIGH BAY LIGHTING 30W led high bay 25$usd each pcs100W led high bay 45$usd each pcs150W led high bay only 58$usd each pcsLED FLOOD LIGHTING 10W only 3.3$usd each pcs50W only 12.5$usd each pcs80W only

Re: http-server-close when a request timeouts after a success HAProxy does not send 504

2015-06-18 Thread Brendan Hubble
Hi Lukas, Sorry for the misundering. I beleive it is a keep-alive session as the requests go one after each other. When testing with cURL we where using the line as followed. (Address is differnt from previous pastebin due to I am testing in VMs) curl http://172.20.30.167/Sloth/do?t=1000

Re: Delaying requests with Lua

2015-06-18 Thread Thierry FOURNIER
Hi, You can do this with Lua. Its very easy. First, you create a lua file containing the following code. The name of this Lua file is file.lua. function delay_request(txn) core.msleep(1000 + txn.f.rand(1000)) end Second, you configura haproxy for loading ths file. In the global

Re: Delaying requests with Lua

2015-06-18 Thread PiBa-NL
Thing to check, what happens to concurrent connection requests? My guess is with 10 concurrent requests it might take up to 20 seconds(worst case for 10 connections) for some requests instead of the expected max 2.. Thierry FOURNIER schreef op 18-6-2015 om 19:35: Hi, You can do this with

Re: Delaying requests with Lua

2015-06-18 Thread Thierry
On Thu, 18 Jun 2015 20:27:07 +0200 PiBa-NL piba.nl@gmail.com wrote: Thing to check, what happens to concurrent connection requests? My guess is with 10 concurrent requests it might take up to 20 seconds(worst case for 10 connections) for some requests instead of the expected max 2..

Re: LB as a first row of defence against DDoS

2015-06-18 Thread Shawn Heisey
On 6/17/2015 9:29 PM, Krishna Kumar (Engineering) wrote: Referring to Baptiste's excellent blog on Use a lb as a first row of defense against DDoS @ http://blog.haproxy.com/2012/02/27/use-a-load-balancer-as-a-first-row-of-defense-against-ddos/ I am not able to find a follow up, if it was

Raw materials of TiO2 for Paint and Coating

2015-06-18 Thread Sinotechem
Dear Sir or Madam, Greeting! Thank you very much for making time to see my email. This is Taurin, from SINOTEC INDUSTRIAL GROUP CO.,LTD, we are a professional and leading Chemicals manufacturer for Paint Coating industry in China, since 1994. Our core products for the industry: 1.

Re: Delaying requests with Lua

2015-06-18 Thread PiBa-NL
Ok i didn't realize the msleep to be coming from haproxy itself the 'core.' should have made me think twice before sending that mail. Thanks for clearing it up, of course still actual results from Bjoern will be interesting to hear a well :). Thierry schreef op 18-6-2015 om 21:12: On Thu, 18

Re: Location of log file of haproxy

2015-06-18 Thread Baptiste
On Thu, Jun 18, 2015 at 7:17 PM, Ajay Kumar ajaykumarm...@gmail.com wrote: Hi, I am using HAProxy in smartOS VM of Joyent but failed to trace of its log file. I explored in internet too but not found any more than following but then not found folder /etc/rsyslog.d/ in the smartOS.

Jusqu’au 28 juin, découvrez des offres qui vous ressemblent

2015-06-18 Thread VINCI Immobilier via VisiteOnline
Title: MAILING Si ce message ne s'affiche pas correctement, visualisez la version en ligne. On a tous des envies d'immobilier, et vous ? J'achte mon 1er appartement je veux tre gagnant On revend pour acheter en toute srnit

Lua testcase.. some 'random' data returned when loading a image.. 1.6dev2

2015-06-18 Thread PiBa-NL
Hi guys, I'm sure i am abusing lua for completely wrong thing here. But i do not understand why the result isn't at least consistent.. Ive got a Pinguïns.jpg of 759kB (Default Windows 7 example image).. And have the configuration listed below. When requesting the image from a browser the top of

Re: [ANNOUNCE] haproxy-1.6-dev2

2015-06-18 Thread Baptiste
On Wed, Jun 17, 2015 at 5:08 PM, Willy Tarreau wi...@haproxy.com wrote: Hi all, the impatient readers among you will have noticed that it's been almost 3 weeks since I sent the e-mail announcing the imminent release of 1.6-dev2. That end of merge window has been a nightmare and is not

Super high flux output and high luminance led floodlight

2015-06-18 Thread kathy
Hello, 200W IP65 Mean well led high bay 50W led high bay Mean Well driver 43$usd 100W led high bay Mean Well driver 72$usd 200W led high bay Mean Well driver 148$usd We supply led lamp with high