Drizzle Protocol

drizzle_protocol implements the Drizzle network protocol.

Loading

This plugin is loaded by default, but it may need to be configured. See the plugin’s Configuration and Variables.

To stop the plugin from loading by default, start drizzled with:

--plugin-remove=drizzle_protocol

See also

Plugin Options for more information about adding and removing plugins.

Configuration

These command line options configure the plugin when drizzled is started. See Command Line Options for more information about specifying command line options.

--drizzle-protocol.bind-address ARG
Default:localhost
Variable:drizzle_protocol_bind_address

Address to bind to.

--drizzle-protocol.buffer-length ARG
Default:16384
Variable:drizzle_protocol_buffer_length

Buffer length.

--drizzle-protocol.connect-timeout ARG
Default:10
Variable:drizzle_protocol_connect_timeout

Connect Timeout.

--drizzle-protocol.max-connections ARG
Default:1000
Variable:drizzle_protocol_max_connections

Maximum simultaneous connections.

--drizzle-protocol.port ARG
Default:4427
Variable:drizzle_protocol_port

Port number to use for connection or 0 for default to with Drizzle/MySQL protocol.

--drizzle-protocol.read-timeout ARG
Default:30
Variable:drizzle_protocol_read_timeout

Read Timeout.

--drizzle-protocol.retry-count ARG
Default:10
Variable:drizzle_protocol_retry_count

Retry Count.

--drizzle-protocol.write-timeout ARG
Default:60
Variable:drizzle_protocol_write_timeout

Write Timeout.

Variables

These variables show the running configuration of the plugin. See variables for more information about querying and setting variables.

  • drizzle_protocol_port

    Scope:Global
    Dynamic:No
    Option:--drizzle-protocol.port

    Port number to use for connection or 0 for default to with Drizzle/MySQL protocol.

Authors

Brian Aker

Version

This documentation applies to drizzle_protocol 0.3.

To see which version of the plugin a Drizzle server is running, execute:

SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='drizzle_protocol'

Changelog

v0.3

  • First release.

Table Of Contents

Previous topic

Default Replicator

Next topic

Error Messages to STDERR

This Page