Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/openresty/drizzle-nginx-module

an nginx upstream module that talks to mysql and drizzle by libdrizzle
https://github.com/openresty/drizzle-nginx-module

Last synced: about 2 months ago
JSON representation

an nginx upstream module that talks to mysql and drizzle by libdrizzle

Awesome Lists containing this project

README

        

Name
====

drizzle-nginx-module - Upstream module for talking to MySQL and Drizzle directly

*This module is not distributed with the Nginx source.* See [the installation instructions](#installation).

Table of Contents
=================

* [Status](#status)
* [Version](#version)
* [Synopsis](#synopsis)
* [Description](#description)
* [Keepalive connection pool](#keepalive-connection-pool)
* [Last Insert ID](#last-insert-id)
* [Directives](#directives)
* [drizzle_server](#drizzle_server)
* [drizzle_keepalive](#drizzle_keepalive)
* [drizzle_query](#drizzle_query)
* [drizzle_pass](#drizzle_pass)
* [drizzle_connect_timeout](#drizzle_connect_timeout)
* [drizzle_send_query_timeout](#drizzle_send_query_timeout)
* [drizzle_recv_cols_timeout](#drizzle_recv_cols_timeout)
* [drizzle_recv_rows_timeout](#drizzle_recv_rows_timeout)
* [drizzle_buffer_size](#drizzle_buffer_size)
* [drizzle_module_header](#drizzle_module_header)
* [drizzle_status](#drizzle_status)
* [Variables](#variables)
* [$drizzle_thread_id](#drizzle_thread_id)
* [Output Format](#output-format)
* [RDS Header Part](#rds-header-part)
* [RDS Body Part](#rds-body-part)
* [Columns](#columns)
* [Rows](#rows)
* [Row Flag](#row-flag)
* [Fields Data](#fields-data)
* [RDS buffer Limitations](#rds-buffer-limitations)
* [Status Code](#status-code)
* [Caveats](#caveats)
* [Trouble Shooting](#trouble-shooting)
* [Known Issues](#known-issues)
* [Installation](#installation)
* [Compatibility](#compatibility)
* [Community](#community)
* [English Mailing List](#english-mailing-list)
* [Chinese Mailing List](#chinese-mailing-list)
* [Report Bugs](#report-bugs)
* [Source Repository](#source-repository)
* [Test Suite](#test-suite)
* [TODO](#todo)
* [Changes](#changes)
* [Authors](#authors)
* [Copyright & License](#copyright--license)
* [See Also](#see-also)

Status
======

This module is already production ready.

Version
=======

This document describes ngx_drizzle [v0.1.11](https://github.com/openresty/drizzle-nginx-module/tags) released on 19 April 2018.

Synopsis
========

```nginx

http {
...

upstream cluster {
# simple round-robin
drizzle_server 127.0.0.1:3306 dbname=test
password=some_pass user=monty protocol=mysql;
drizzle_server 127.0.0.1:1234 dbname=test2
password=pass user=bob protocol=drizzle;
}

upstream backend {
drizzle_server 127.0.0.1:3306 dbname=test
password=some_pass user=monty protocol=mysql;
}

server {
location /mysql {
set $my_sql 'select * from cats';
drizzle_query $my_sql;

drizzle_pass backend;

drizzle_connect_timeout 500ms; # default 60s
drizzle_send_query_timeout 2s; # default 60s
drizzle_recv_cols_timeout 1s; # default 60s
drizzle_recv_rows_timeout 1s; # default 60s
}

...

# for connection pool monitoring
location /mysql-pool-status {
allow 127.0.0.1;
deny all;

drizzle_status;
}
}
}
```

[Back to TOC](#table-of-contents)

Description
===========

This is an nginx upstream module integrating [libdrizzle](https://launchpad.net/drizzle) into Nginx in a non-blocking and streamming way.

Essentially it provides a very efficient and flexible way for nginx internals to access MySQL, Drizzle, as well as other RDBMS's that support the Drizzle or MySQL wired protocol. Also it can serve as a direct REST interface to those RDBMS backends.

This module does not generate human-readable outputs, rather, in a binary format called Resty-DBD-Stream (RDS) designed by ourselves. You usually need other components, like [rds-json-nginx-module](http://github.com/openresty/rds-json-nginx-module), [rds-csv-nginx-module](http://github.com/openresty/rds-csv-nginx-module), or [lua-rds-parser](http://github.com/openresty/lua-rds-parser), to work with this module. See [Output Format](#output-format) for details.

[Back to TOC](#table-of-contents)

Keepalive connection pool
-------------------------

This module also provides a builtin per-worker connection pool mechanism for MySQL or Drizzle TCP connections.

Here's a sample configuration:

```nginx

upstream backend {
drizzle_server 127.0.0.1:3306 dbname=test
password=some_pass user=monty protocol=mysql;
drizzle_keepalive max=100 mode=single overflow=reject;
}
```

For now, the connection pool uses a simple LIFO algorithm to assign idle connections in the pool. That is, most recently (successfully) used connections will be reused first the next time. And new idle connections will always replace the oldest idle connections in the pool even if the pool is already full.

See the [drizzle_keepalive](#drizzle_keepalive) directive for more details.

[Back to TOC](#table-of-contents)

Last Insert ID
--------------
If you want to get LAST_INSERT_ID, then ngx_drizzle already returns that automatically for you when you're doing a SQL insert query. Consider the following sample `nginx.conf` snippet:
```nginx

location /test {
echo_location /mysql "drop table if exists foo";
echo;
echo_location /mysql "create table foo (id serial not null, primary key (id), val real);";
echo;
echo_location /mysql "insert into foo (val) values (3.1415926);";
echo;
echo_location /mysql "select * from foo;";
echo;
}

location /mysql {
drizzle_pass backend;
drizzle_module_header off;
drizzle_query $query_string;
rds_json on;
}
```
Then request `GET /test` gives the following outputs:
```javascript

{"errcode":0}
{"errcode":0}
{"errcode":0,"insert_id":1,"affected_rows":1}
[{"id":1,"val":3.1415926}]
```
You can see the `insert_id` field (as well as the `affected_rows` field in the 3rd JSON response.

[Back to TOC](#table-of-contents)

Directives
==========

[Back to TOC](#table-of-contents)

drizzle_server
--------------
**syntax:** *drizzle_server <host> user=<user> password=<pass> dbname=<database>*

**syntax:** *drizzle_server <host>:<port> user=<user> password=<pass> dbname=<database> protocol=<protocol> charset=<charset>*

**default:** *no*

**context:** *upstream*

Directive assigns the name and the parameters of server. For the name it is possible to use a domain name, an address, with an optional port (default: 3306). If domain name resolves to several addresses, then all are used.

The following options are supported:

**user=**``
MySQL/Drizzle user name `` for login.

**password=**``
Specify mysql password ``for login. If you have special characters like `#` or spaces in your password text, then you'll have to quote the whole key-value pair with either single-quotes or double-quotes, as in

```nginx

drizzle_server 127.0.0.1:3306 user=monty "password=a b#1"
dbname=test protocol=mysql;
```

**dbname=**``
Specify default MySQL database `` for the connection. Note that MySQL does allow referencing tables belonging to different databases by qualifying table names with database names in SQL queries.

**protocol=**``
Specify which wire protocol to use, `drizzle` or `mysql`. Default to `drizzle`.

**charset=**``
Explicitly specify the character set for the MySQL connections. Setting this option to a non-empty value will make this module send out a `set names ''` query right after the mysql connection is established.
If the default character encoding of the MySQL connection is already what you want, you needn't set this option because it has extra runtime cost.
Here is a small example:
```nginx

drizzle_server foo.bar.com:3306 user=monty password=some_pass
dbname=test protocol=mysql
charset=utf8;
```
Please note that for the mysql server, "utf-8" is not a valid encoding name while `utf8` is.

[Back to TOC](#table-of-contents)

drizzle_keepalive
-----------------
**syntax:** *drizzle_keepalive max=<size> mode=<mode>*

**default:** *drizzle_keepalive max=0 mode=single*

**context:** *upstream*

Configures the keep-alive connection pool for MySQL/Drizzle connections.

The following options are supported:

**max=**``
Specify the capacity of the connection pool for the current upstream block. The value *must* be non-zero. If set to `0`, it effectively disables the connection pool. This option is default to `0`.

**mode=**``
This supports two values, `single` and `multi`. The `single` mode means the pool does not distinguish various drizzle servers in the current upstream block while `multi` means the pool will merely reuse connections which have identical server host names and ports. Note that even under `multi`, differences between `dbname` or `user` parameters will be silently ignored. Default to `single`.

**overflow=**``
This option specifies what to do when the connection pool is already full while new database connection is required. Either `reject` or `ignore` can be specified. In case of `reject`, it will reject the current request, and returns the `503 Service Unavailable` error page. For `ignore`, this module will go on creating a new database connection.

[Back to TOC](#table-of-contents)

drizzle_query
-------------
**syntax:** *drizzle_query <sql>*

**default:** *no*

**context:** *http, server, location, location if*

Specify the SQL queries sent to the Drizzle/MySQL backend.

Nginx variable interpolation is supported, but you must be careful with SQL injection attacks. You can use the [set_quote_sql_str](http://github.com/openresty/set-misc-nginx-module#set_quote_sql_str) directive, for example, to quote values for SQL interpolation:

```nginx

location /cat {
set_unescape_uri $name $arg_name;
set_quote_sql_str $quoted_name $name;

drizzle_query "select * from cats where name = $quoted_name";
drizzle_pass my_backend;
}
```

[Back to TOC](#table-of-contents)

drizzle_pass
------------
**syntax:** *drizzle_pass <remote>*

**default:** *no*

**context:** *location, location if*

**phase:** *content*

This directive specifies the Drizzle or MySQL upstream name to be queried in the current location. The `` argument can be any upstream name defined with the [drizzle_server](#drizzle_server) directive.

Nginx variables can also be interpolated into the `` argument, so as to do dynamic backend routing, for example:
```nginx

upstream moon { drizzle_server ...; }

server {
location /cat {
set $backend 'moon';

drizzle_query ...;
drizzle_pass $backend;
}
}
```

[Back to TOC](#table-of-contents)

drizzle_connect_timeout
-----------------------
**syntax:** *drizzle_connect_time <time>*

**default:** *drizzle_connect_time 60s*

**context:** *http, server, location, location if*

Specify the (total) timeout for connecting to a remote Drizzle or MySQL server.

The `

[Back to TOC](#table-of-contents)

drizzle_send_query_timeout
--------------------------
**syntax:** *drizzle_send_query_timeout <time>*

**default:** *drizzle_send_query_timeout 60s*

**context:** *http, server, location, location if*

Specify the (total) timeout for sending a SQL query to a remote Drizzle or MySQL server.

The `

[Back to TOC](#table-of-contents)

drizzle_recv_cols_timeout
-------------------------
**syntax:** *drizzle_recv_cols_timeout <time>*

**default:** *drizzle_recv_cols_timeout 60s*

**context:** *http, server, location, location if*

Specify the (total) timeout for receiving the columns metadata of the result-set to a remote Drizzle or MySQL server.

The `

[Back to TOC](#table-of-contents)

drizzle_recv_rows_timeout
-------------------------
**syntax:** *drizzle_recv_rows_timeout <time>*

**default:** *drizzle_recv_rows_timeout 60s*

**context:** *http, server, location, location if*

Specify the (total) timeout for receiving the rows data of the result-set (if any) to a remote Drizzle or MySQL server.

The `

[Back to TOC](#table-of-contents)

drizzle_buffer_size
-------------------
**syntax:** *drizzle_buffer_size <size>*

**default:** *drizzle_buffer_size 4k/8k*

**context:** *http, server, location, location if*

Specify the buffer size for drizzle outputs. Default to the page size (4k/8k). The larger the buffer, the less streammy the outputing process will be.

[Back to TOC](#table-of-contents)

drizzle_module_header
---------------------
**syntax:** *drizzle_module_header on|off*

**default:** *drizzle_module_header on*

**context:** *http, server, location, location if*

Controls whether to output the drizzle header in the response. Default on.

The drizzle module header looks like this:

X-Resty-DBD-Module: ngx_drizzle 0.1.0

[Back to TOC](#table-of-contents)

drizzle_status
--------------
**syntax:** *drizzle_status*

**default:** *no*

**context:** *location, location if*

**phase:** *content*

When specified, the current Nginx location will output a status report for all the drizzle upstream servers in the virtual server of the current Nginx worker process.

The output looks like this:

worker process: 15231

upstream backend
active connections: 0
connection pool capacity: 10
overflow: reject
cached connection queue: 0
free'd connection queue: 10
cached connection successfully used count:
free'd connection successfully used count: 3 0 0 0 0 0 0 0 0 0
servers: 1
peers: 1

upstream backend2
active connections: 0
connection pool capacity: 0
servers: 1
peers: 1

Note that, this is *not* the global statistics if you do have multiple Nginx worker processes configured in your `nginx.conf`.

[Back to TOC](#table-of-contents)

Variables
=========

This module creates the following Nginx variables:

[Back to TOC](#table-of-contents)

$drizzle_thread_id
------------------

This variable will be assigned a textual number of the underlying MySQL or Drizzle query thread ID when the current SQL query times out. This thread ID can be further used in a SQL kill command to cancel the timed-out query.

Here's an example:
```nginx

drizzle_connect_timeout 1s;
drizzle_send_query_timeout 2s;
drizzle_recv_cols_timeout 1s;
drizzle_recv_rows_timeout 1s;

location /query {
drizzle_query 'select sleep(10)';
drizzle_pass my_backend;
rds_json on;

more_set_headers -s 504 'X-Mysql-Tid: $drizzle_thread_id';
}

location /kill {
drizzle_query "kill query $arg_tid";
drizzle_pass my_backend;
rds_json on;
}

location /main {
content_by_lua '
local res = ngx.location.capture("/query")
if res.status ~= ngx.HTTP_OK then
local tid = res.header["X-Mysql-Tid"]
if tid and tid ~= "" then
ngx.location.capture("/kill", { args = {tid = tid} })
end
return ngx.HTTP_INTERNAL_SERVER_ERROR;
end
ngx.print(res.body)
'
}
```
where we make use of [headers-more-nginx-module](http://github.com/openresty/headers-more-nginx-module), [lua-nginx-module](http://github.com/openresty/lua-nginx-module), and [rds-json-nginx-module](http://github.com/openresty/rds-json-nginx-module) too. When the SQL query timed out, we'll explicitly cancel it immediately. One pitfall here is that you have to add these modules in this order while building Nginx:

* [lua-nginx-module](http://github.com/openresty/lua-nginx-module)
* [headers-more-nginx-module](http://github.com/openresty/headers-more-nginx-module)
* [rds-json-nginx-module](http://github.com/openresty/rds-json-nginx-module)

Such that, their output filters will work in the *reversed* order, i.e., first convert RDS to JSON, and then add our `X-Mysql-Tid` custom header, and finally capture the whole (subrequest) response with the Lua module. You're recommended to use the [OpenResty bundle](http://openresty.org/) though, it ensures the module building order automatically for you.

[Back to TOC](#table-of-contents)

Output Format
=============

This module generates binary query results in a format that is shared among the various Nginx database driver modules like [ngx_postgres](http://github.com/FRiCKLE/ngx_postgres/). This data format is named `Resty DBD Stream` (RDS).

If you're a web app developer, you may be more interested in

* using [rds-json-nginx-module](http://github.com/openresty/rds-json-nginx-module) to obtain JSON output,
* using [rds-csv-nginx-module](http://github.com/openresty/rds-csv-nginx-module) to obain Comma-Separated-Value (CSV) output,
* or using [lua-rds-parser](http://github.com/openresty/lua-rds-parser) to parse the RDS data into Lua data structures.

For the HTTP response header part, the `200 OK` status code should always be returned. The `Content-Type` header *must* be set to `application/x-resty-dbd-stream`. And the driver generating this response also sets a `X-Resty-DBD` header. For instance, this module adds the following output header:

X-Resty-DBD-Module: drizzle 0.1.0

where `0.1.0` is this module's own version number. This `X-Resty-DBD-Module` header is optional though.

Below is the HTTP response body format (version 0.0.3):

[Back to TOC](#table-of-contents)

RDS Header Part
---------------

The RDS Header Part consists of the following fields:

**uint8_t**
endian type (1 means big-endian and little endian otherwise)

**uint32_t**
format version (v1.2.3 is represented as 1002003 in decimal)

**uint8_t**
result type (0 means normal SQL result type, fixed for now)

**uint16_t**
standard error code

**uint16_t**
driver-specific error code

**uint16_t**
driver-specific error string length

**u_char ***
driver-specific error string data

**uint64_t**
database rows affected

**uint64_t**
insert id (if none, 0)

**uint16_t**
column count

[Back to TOC](#table-of-contents)

RDS Body Part
-------------

When the `column count` field in the [RDS Header Part](#rds-header-part) is zero, then the whole RDS Body Part is omitted.

The RDS Body Part consists of two sections, [Columns](#columns) and [Rows](#rows).

### Columns

The columns part consists of zero or more column data. The number of columns is determined by `column count` field in [RDS Header Part](#rds-header-part).

Each column consists of the following fields

**uint16_t**
non-zero value for standard column type code and for the column list terminator and zero otherwise.

**uint16_t**
driver-specific column type code

**uint16_t**
column name length

**u_char ***
column name data

### Rows

The rows part consists of zero or more row data, terminated by a 8-bit zero.

Each row data consists of a [Row Flag](#row-flag) and an optional [Fields Data](#fields-data) part.

#### Row Flag

**uint8_t**
valid row (1 means valid, and 0 means the row list terminator)

#### Fields Data

The Fields Data consists zero or more fields of data. The field count is predetermined by the column number

The installation steps are usually as simple as `./configure --with-http_drizzle_module && make && make install` (But you still need to install the libdrizzle library manually, see [(http://openresty.org/en/drizzle-nginx-module.html) for detailed instructions.

Alternatively, you can compile this module with Nginx core's source by hand:

* You should first install libdrizzle 1.0 which is now distributed with the drizzle project and can be obtained from [(https://launchpad.net/drizzle). The latest drizzle7 release does not support building libdrizzle 1.0 separately and requires a lot of external dependencies like Boost and Protobuf which are painful to install. The last version supporting building libdrizzle 1.0 separately is `2011.07.21`. You can download it from . Which this version of drizzle7, installation of libdrizzle 1.0 is usually as simple as
```nginx

tar xzvf drizzle7-2011.07.21.tar.gz
cd drizzle7-2011.07.21/
./configure --without-server
make libdrizzle-1.0
make install-libdrizzle-1.0
```
Ensure that you have the `python` command point to a `python2` interpreter. It's known that on recent : Arch Linux distribution, `python` is linked to `python3` by default, and while running `make libdrizzle-1.0` will yield the error
```bash

File "config/pandora-plugin", line 185
print "Dependency loop detected with %s" % plugin['name']
^
SyntaxError: invalid syntax
make: *** [.plugin.scan] Error 1
```
You can fix this by pointing `python` to `python2`.
* Download the latest version of the release tarball of this module from drizzle-nginx-module [file list](http://github.com/openresty/drizzle-nginx-module/tags).
* Grab the nginx source code from [nginx.org](http://nginx.org/), for example, the version 1.13.6 (see [nginx compatibility](#compatibility)), and then build the source with this module:
```bash

wget 'http://nginx.org/download/nginx-1.13.6.tar.gz'
tar -xzvf nginx-1.13.6.tar.gz
cd nginx-1.13.6/

# if you have installed libdrizzle to the prefix /opt/drizzle, then
# specify the following environments:
# export LIBDRIZZLE_INC=/opt/drizzle/include/libdrizzle-1.0
# export LIBDRIZZLE_LIB=/opt/drizzle/lib

# Here we assume you would install you nginx under /opt/nginx/.
./configure --prefix=/opt/nginx \
--add-module=/path/to/drizzle-nginx-module

make -j2
make install
```

You usually also need [rds-json-nginx-module](http://github.com/openresty/rds-json-nginx-module) to obtain JSON output from the binary RDS output generated by this upstream module.

[Back to TOC](#table-of-contents)

Compatibility
=============

If you're using MySQL, then MySQL `5.0 ~ 5.5` is required. We're not sure if MySQL `5.6+` work; reports welcome!

This module has been tested on Linux and Mac OS X. Reports on other POSIX-compliant systems will be highly appreciated.

The following versions of Nginx should work with this module:

* 1.16.x
* 1.15.x (last tested: 1.15.8)
* 1.14.x
* 1.13.x (last tested: 1.13.6)
* 1.12.x
* 1.11.x (last tested: 1.11.2)
* 1.10.x
* 1.9.x (last tested: 1.9.15)
* 1.8.x
* 1.7.x (last tested: 1.7.10)
* 1.6.x
* 1.5.x (last tested: 1.5.8)
* 1.4.x (last tested: 1.4.4)
* 1.3.x (last tested: 1.3.7)
* 1.2.x (last tested: 1.2.9)
* 1.1.x (last tested: 1.1.5)
* 1.0.x (last tested: 1.0.8)
* 0.8.x (last tested: 0.8.55)
* 0.7.x >= 0.7.44 (last tested version is 0.7.67)

Earlier versions of Nginx like `0.6.x` and `0.5.x` will *not* work.

If you find that any particular version of Nginx above `0.7.44` does not work with this module, please consider reporting a bug.

[Back to TOC](#table-of-contents)

Community
=========

[Back to TOC](#table-of-contents)

English Mailing List
--------------------

The [openresty-en](https://groups.google.com/group/openresty-en) mailing list is for English speakers.

[Back to TOC](#table-of-contents)

Chinese Mailing List
--------------------

The [openresty](https://groups.google.com/group/openresty) mailing list is for Chinese speakers.

[Back to TOC](#table-of-contents)

Report Bugs
===========

Please submit bug reports, wishlists, or patches by

1. creating a ticket on the [issue tracking interface](http://github.com/openresty/drizzle-nginx-module/issues) provided by GitHub,
1. or sending an email to the [OpenResty community](#community).

[Back to TOC](#table-of-contents)

Source Repository
=================

Available on github at [openresty/drizzle-nginx-module](http://github.com/openresty/drizzle-nginx-module).

[Back to TOC](#table-of-contents)

Test Suite
==========

This module comes with a Perl-driven test suite. The [test cases](http://github.com/openresty/drizzle-nginx-module/tree/master/t/) are
[declarative](http://github.com/openresty/drizzle-nginx-module/blob/master/t/sanity.t) too. Thanks to the [Test::Nginx](http://search.cpan.org/perldoc?Test::Nginx) module in the Perl world.

To run it on your side:

```bash

$ PATH=/path/to/your/nginx-with-echo-module:$PATH prove -r t
```

Because a single nginx server (by default, `localhost:1984`) is used across all the test scripts (`.t` files), it's meaningless to run the test suite in parallel by specifying `-jN` when invoking the `prove` utility.

[Back to TOC](#table-of-contents)

TODO
====
* add the MySQL transaction support.
* add multi-statement MySQL query support.
* implement the "drizzle_max_output_size" directive. When the RDS data is larger then the size specified, the module will try to terminate the output as quickly as possible but will still ensure the resulting response body is still in valid RDS format.
* implement the `drizzle_upstream_next` mechanism for failover support.
* add support for multiple "drizzle_query" directives in a single location.
* implement *weighted* round-robin algorithm for the upstream server clusters.
* add the `max_idle_time` option to the [drizzle_server](#drizzle_server) directive, so that the connection pool will automatically release idle connections for the timeout you specify.
* add the `min` option to the "drizzle_server" directive so that the connection pool will automatically create that number of connections and put them into the pool.
* add Unix domain socket support in the `drizzle_server` directive.
* make the [drizzle_query](#drizzle_query) directive reject variables that have not been processed by a [drizzle_process](#drizzle_process) directive. This will pretect us from SQL injections. There will also be an option ("strict=no") to disable such checks.

[Back to TOC](#table-of-contents)

Changes
=======

The changes of every release of this module can be obtained from the OpenResty bundle's change logs:

[Back to TOC](#table-of-contents)

Authors
=======

* chaoslawful (王晓哲)
* Yichun "agentzh" Zhang (章亦春) , OpenResty Inc.
* Piotr Sikora , Google Inc.

[Back to TOC](#table-of-contents)

Copyright & License
===================

This module is licenced under the BSD license.

Copyright (C) 2009-2014, by Xiaozhe Wang (chaoslawful) .

Copyright (C) 2009-2018, by Yichun "agentzh" Zhang (章亦春) , OpenResty Inc.

Copyright (C) 2010-2014, by FRiCKLE Piotr Sikora , Google Inc.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

[Back to TOC](#table-of-contents)

See Also
========

* [rds-json-nginx-module](http://github.com/openresty/rds-json-nginx-module)
* [rds-csv-nginx-module](http://github.com/openresty/rds-csv-nginx-module)
* [lua-rds-parser](http://github.com/openresty/lua-rds-parser)
* [The OpenResty bundle](http://openresty.org)
* [DrizzleNginxModule bundled by OpenResty](http://openresty.org/#DrizzleNginxModule)
* [postgres-nginx-module](http://github.com/FRiCKLE/ngx_postgres)
* [lua-nginx-module](http://github.com/openresty/lua-nginx-module)
* The [lua-resty-mysql](https://github.com/openresty/lua-resty-mysql) library based on the [lua-nginx-module](http://github.com/openresty/lua-nginx-module) cosocket API.