HttpSplitClientsModule
(Difference between revisions)
Willybarro (Talk | contribs) (→Sending a query string variable to 51% of clients (to PHP scripts)) |
Willybarro (Talk | contribs) (→Examples) |
||
| (One intermediate revision by one user not shown) | |||
| Line 22: | Line 22: | ||
On the sample configuration above, the input for calculating the percentage is the variable plus string ('''"${remote_addr}AAA"'''). The value of this string is hashed using MurmurHash2 (which will generate a 32bit integer). | On the sample configuration above, the input for calculating the percentage is the variable plus string ('''"${remote_addr}AAA"'''). The value of this string is hashed using MurmurHash2 (which will generate a 32bit integer). | ||
In the example given: | In the example given: | ||
| − | * Hash values from 0 to 1739461754 (40.5%) will set the $variant variable with the value ".one"; | + | * Hash values from 0 to 1739461754 (40.5%) will set the $variant variable with the value ".one" and will try to load the file "index.one.html"; |
| − | * Hash values from 1739461755 to 4294967295 (59.5%) will set the $variant variable with the value ".two" | + | * Hash values from 1739461755 to 4294967295 (59.5%) will set the $variant variable with the value ".two" and will try to load the file "index.two.html"; |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
== Sending a query string variable to 51% of clients (to PHP scripts) == | == Sending a query string variable to 51% of clients (to PHP scripts) == | ||
| Line 47: | Line 40: | ||
} | } | ||
</geshi> | </geshi> | ||
| + | |||
| + | == Redirecting 51% of the traffic to another URL == | ||
| + | <geshi lang="nginx"> | ||
| + | http { | ||
| + | split_clients "${remote_addr}" $redirectSite { | ||
| + | 51% "1"; | ||
| + | 49% "0"; | ||
| + | } | ||
| + | |||
| + | server { | ||
| + | location / { | ||
| + | if ($redirectSite = "1") { | ||
| + | return 302 "http://www.website2.com/"; | ||
| + | } | ||
| + | [...] | ||
| + | } | ||
| + | } | ||
| + | </geshi> | ||
| + | * Although on nginx [http://wiki.nginx.org/IfIsEvil IF is evil], we can use it in this specific case. | ||
| + | |||
| + | == Appendix == | ||
| + | |||
| + | Instead of '''${remote_addr}''', one could use '''${cookie}''', '''${args}''' or any other [http://wiki.nginx.org/HttpCoreModule#Variables nginx variable]. You may also add a salt (arbitrary string) if you wish. | ||
| + | |||
| + | * Keep in mind that if you use a variable like '''${remote_addr}''' (user IP), the hash (and percentage) will always be the same as long as the user/client keep the same IP. In other words, the '''$variant''' value will always be the same for the same IP. | ||
| + | * Hashing algorithm is MurmurHash2 since version 1.0.1; Previously CRC32. | ||
= Directives = | = Directives = | ||
Latest revision as of 18:01, 2 January 2013
Contents |
[edit] Synopsis
ngx_http_split_clients_module is used to split clients based on some conditions(e.g ip addresses, headers, cookies, etc).
[edit] Examples
[edit] Basic configuration:
On the sample configuration above, the input for calculating the percentage is the variable plus string ("${remote_addr}AAA"). The value of this string is hashed using MurmurHash2 (which will generate a 32bit integer). In the example given:
- Hash values from 0 to 1739461754 (40.5%) will set the $variant variable with the value ".one" and will try to load the file "index.one.html";
- Hash values from 1739461755 to 4294967295 (59.5%) will set the $variant variable with the value ".two" and will try to load the file "index.two.html";
[edit] Sending a query string variable to 51% of clients (to PHP scripts)
[edit] Redirecting 51% of the traffic to another URL
- Although on nginx IF is evil, we can use it in this specific case.
[edit] Appendix
Instead of ${remote_addr}, one could use ${cookie}, ${args} or any other nginx variable. You may also add a salt (arbitrary string) if you wish.
- Keep in mind that if you use a variable like ${remote_addr} (user IP), the hash (and percentage) will always be the same as long as the user/client keep the same IP. In other words, the $variant value will always be the same for the same IP.
- Hashing algorithm is MurmurHash2 since version 1.0.1; Previously CRC32.
[edit] Directives
[edit] split_clients
| Syntax: | split_clients string $variable { ... } |
| Default: | |
| Context: | http |
| Reference: | split_clients |










