:plugin: jdbc :type: input /////////////////////////////////////////// START - GENERATED VARIABLES, DO NOT EDIT! /////////////////////////////////////////// :version: %VERSION% :release_date: %RELEASE_DATE% :changelog_url: %CHANGELOG_URL% :include_path: ../../../../logstash/docs/include /////////////////////////////////////////// END - GENERATED VARIABLES, DO NOT EDIT! /////////////////////////////////////////// [id="plugins-{type}s-{plugin}"] === Jdbc input plugin include::{include_path}/plugin_header.asciidoc[] ==== Description This plugin was created as a way to ingest data in any database with a JDBC interface into Logstash. You can periodically schedule ingestion using a cron syntax (see `schedule` setting) or run the query one time to load data into Logstash. Each row in the resultset becomes a single event. Columns in the resultset are converted into fields in the event. ==== Drivers This plugin does not come packaged with JDBC driver libraries. The desired jdbc driver library must be explicitly passed in to the plugin using the `jdbc_driver_library` configuration option. ==== Scheduling Input from this plugin can be scheduled to run periodically according to a specific schedule. This scheduling syntax is powered by https://github.com/jmettraux/rufus-scheduler[rufus-scheduler]. The syntax is cron-like with some extensions specific to Rufus (e.g. timezone support ). Examples: |========================================================== | `* 5 * 1-3 *` | will execute every minute of 5am every day of January through March. | `0 * * * *` | will execute on the 0th minute of every hour every day. | `0 6 * * * America/Chicago` | will execute at 6:00am (UTC/GMT -5) every day. |========================================================== Further documentation describing this syntax can be found https://github.com/jmettraux/rufus-scheduler#parsing-cronlines-and-time-strings[here]. ==== State The plugin will persist the `sql_last_value` parameter in the form of a metadata file stored in the configured `last_run_metadata_path`. Upon query execution, this file will be updated with the current value of `sql_last_value`. Next time the pipeline starts up, this value will be updated by reading from the file. If `clean_run` is set to true, this value will be ignored and `sql_last_value` will be set to Jan 1, 1970, or 0 if `use_column_value` is true, as if no query has ever been executed. ==== Dealing With Large Result-sets Many JDBC drivers use the `fetch_size` parameter to limit how many results are pre-fetched at a time from the cursor into the client's cache before retrieving more results from the result-set. This is configured in this plugin using the `jdbc_fetch_size` configuration option. No fetch size is set by default in this plugin, so the specific driver's default size will be used. ==== Usage: Here is an example of setting up the plugin to fetch data from a MySQL database. First, we place the appropriate JDBC driver library in our current path (this can be placed anywhere on your filesystem). In this example, we connect to the 'mydb' database using the user: 'mysql' and wish to input all rows in the 'songs' table that match a specific artist. The following examples demonstrates a possible Logstash configuration for this. The `schedule` option in this example will instruct the plugin to execute this input statement on the minute, every minute. [source,ruby] ------------------------------------------------------------------------------ input { jdbc { jdbc_driver_library => "mysql-connector-java-5.1.36-bin.jar" jdbc_driver_class => "com.mysql.jdbc.Driver" jdbc_connection_string => "jdbc:mysql://localhost:3306/mydb" jdbc_user => "mysql" parameters => { "favorite_artist" => "Beethoven" } schedule => "* * * * *" statement => "SELECT * from songs where artist = :favorite_artist" } } ------------------------------------------------------------------------------ ==== Configuring SQL statement A sql statement is required for this input. This can be passed-in via a statement option in the form of a string, or read from a file (`statement_filepath`). File option is typically used when the SQL statement is large or cumbersome to supply in the config. The file option only supports one SQL statement. The plugin will only accept one of the options. It cannot read a statement from a file as well as from the `statement` configuration parameter. ==== Configuring multiple SQL statements Configuring multiple SQL statements is useful when there is a need to query and ingest data from different database tables or views. It is possible to define separate Logstash configuration files for each statement or to define multiple statements in a single configuration file. When using multiple statements in a single Logstash configuration file, each statement has to be defined as a separate jdbc input (including jdbc driver, connection string and other required parameters). Please note that if any of the statements use the `sql_last_value` parameter (e.g. for ingesting only data changed since last run), each input should define its own `last_run_metadata_path` parameter. Failure to do so will result in undesired behaviour, as all inputs will store their state to the same (default) metadata file, effectively overwriting each other's `sql_last_value`. ==== Predefined Parameters Some parameters are built-in and can be used from within your queries. Here is the list: |========================================================== |sql_last_value | The value used to calculate which rows to query. Before any query is run, this is set to Thursday, 1 January 1970, or 0 if `use_column_value` is true and `tracking_column` is set. It is updated accordingly after subsequent queries are run. |========================================================== Example: [source,ruby] --------------------------------------------------------------------------------------------------- input { jdbc { statement => "SELECT id, mycolumn1, mycolumn2 FROM my_table WHERE id > :sql_last_value" use_column_value => true tracking_column => "id" # ... other configuration bits } } --------------------------------------------------------------------------------------------------- [id="plugins-{type}s-{plugin}-options"] ==== Jdbc Input Configuration Options This plugin supports the following configuration options plus the <> described later. [cols="<,<,<",options="header",] |======================================================================= |Setting |Input type|Required | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|Yes | <> |<>|No | <> |<>|Yes | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |a valid filesystem path|No | <> |<>|No | <> |<>|Yes | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>|No | <> |<>, one of `["fatal", "error", "warn", "info", "debug"]`|No | <> |<>|No | <> |a valid filesystem path|No | <> |<>|No | <> |<>, one of `["numeric", "timestamp"]`|No | <> |<>|No |======================================================================= Also see <> for a list of options supported by all input plugins.   [id="plugins-{type}s-{plugin}-clean_run"] ===== `clean_run` * Value type is <> * Default value is `false` Whether the previous run state should be preserved [id="plugins-{type}s-{plugin}-columns_charset"] ===== `columns_charset` * Value type is <> * Default value is `{}` The character encoding for specific columns. This option will override the `:charset` option for the specified columns. Example: [source,ruby] ------------------------------------------------------- input { jdbc { ... columns_charset => { "column0" => "ISO-8859-1" } ... } } ------------------------------------------------------- this will only convert column0 that has ISO-8859-1 as an original encoding. [id="plugins-{type}s-{plugin}-connection_retry_attempts"] ===== `connection_retry_attempts` * Value type is <> * Default value is `1` Maximum number of times to try connecting to database [id="plugins-{type}s-{plugin}-connection_retry_attempts_wait_time"] ===== `connection_retry_attempts_wait_time` * Value type is <> * Default value is `0.5` Number of seconds to sleep between connection attempts [id="plugins-{type}s-{plugin}-jdbc_connection_string"] ===== `jdbc_connection_string` * This is a required setting. * Value type is <> * There is no default value for this setting. JDBC connection string [id="plugins-{type}s-{plugin}-jdbc_default_timezone"] ===== `jdbc_default_timezone` * Value type is <> * There is no default value for this setting. Timezone conversion. SQL does not allow for timezone data in timestamp fields. This plugin will automatically convert your SQL timestamp fields to Logstash timestamps, in relative UTC time in ISO8601 format. Using this setting will manually assign a specified timezone offset, instead of using the timezone setting of the local machine. You must use a canonical timezone, *America/Denver*, for example. [id="plugins-{type}s-{plugin}-jdbc_driver_class"] ===== `jdbc_driver_class` * This is a required setting. * Value type is <> * There is no default value for this setting. JDBC driver class to load, for exmaple, "org.apache.derby.jdbc.ClientDriver" NB per https://github.com/logstash-plugins/logstash-input-jdbc/issues/43 if you are using the Oracle JDBC driver (ojdbc6.jar) the correct `jdbc_driver_class` is `"Java::oracle.jdbc.driver.OracleDriver"` [id="plugins-{type}s-{plugin}-jdbc_driver_library"] ===== `jdbc_driver_library` * Value type is <> * There is no default value for this setting. Tentative of abstracting JDBC logic to a mixin for potential reuse in other plugins (input/output) This method is called when someone includes this module Add these methods to the 'base' given. JDBC driver library path to third party driver library. In case of multiple libraries being required you can pass them separated by a comma. If not provided, Plugin will look for the driver class in the Logstash Java classpath. [id="plugins-{type}s-{plugin}-jdbc_fetch_size"] ===== `jdbc_fetch_size` * Value type is <> * There is no default value for this setting. JDBC fetch size. if not provided, respective driver's default will be used [id="plugins-{type}s-{plugin}-jdbc_page_size"] ===== `jdbc_page_size` * Value type is <> * Default value is `100000` JDBC page size [id="plugins-{type}s-{plugin}-jdbc_paging_enabled"] ===== `jdbc_paging_enabled` * Value type is <> * Default value is `false` JDBC enable paging This will cause a sql statement to be broken up into multiple queries. Each query will use limits and offsets to collectively retrieve the full result-set. The limit size is set with `jdbc_page_size`. Be aware that ordering is not guaranteed between queries. [id="plugins-{type}s-{plugin}-jdbc_password"] ===== `jdbc_password` * Value type is <> * There is no default value for this setting. JDBC password [id="plugins-{type}s-{plugin}-jdbc_password_filepath"] ===== `jdbc_password_filepath` * Value type is <> * There is no default value for this setting. JDBC password filename [id="plugins-{type}s-{plugin}-jdbc_pool_timeout"] ===== `jdbc_pool_timeout` * Value type is <> * Default value is `5` Connection pool configuration. The amount of seconds to wait to acquire a connection before raising a PoolTimeoutError (default 5) [id="plugins-{type}s-{plugin}-jdbc_user"] ===== `jdbc_user` * This is a required setting. * Value type is <> * There is no default value for this setting. JDBC user [id="plugins-{type}s-{plugin}-jdbc_validate_connection"] ===== `jdbc_validate_connection` * Value type is <> * Default value is `false` Connection pool configuration. Validate connection before use. [id="plugins-{type}s-{plugin}-jdbc_validation_timeout"] ===== `jdbc_validation_timeout` * Value type is <> * Default value is `3600` Connection pool configuration. How often to validate a connection (in seconds) [id="plugins-{type}s-{plugin}-last_run_metadata_path"] ===== `last_run_metadata_path` * Value type is <> * Default value is `"/home/ph/.logstash_jdbc_last_run"` Path to file with last run time [id="plugins-{type}s-{plugin}-lowercase_column_names"] ===== `lowercase_column_names` * Value type is <> * Default value is `true` Whether to force the lowercasing of identifier fields [id="plugins-{type}s-{plugin}-parameters"] ===== `parameters` * Value type is <> * Default value is `{}` Hash of query parameter, for example `{ "target_id" => "321" }` [id="plugins-{type}s-{plugin}-record_last_run"] ===== `record_last_run` * Value type is <> * Default value is `true` Whether to save state or not in last_run_metadata_path [id="plugins-{type}s-{plugin}-schedule"] ===== `schedule` * Value type is <> * There is no default value for this setting. Schedule of when to periodically run statement, in Cron format for example: "* * * * *" (execute query every minute, on the minute) There is no schedule by default. If no schedule is given, then the statement is run exactly once. [id="plugins-{type}s-{plugin}-sequel_opts"] ===== `sequel_opts` * Value type is <> * Default value is `{}` General/Vendor-specific Sequel configuration options. An example of an optional connection pool configuration max_connections - The maximum number of connections the connection pool examples of vendor-specific options can be found in this documentation page: https://github.com/jeremyevans/sequel/blob/master/doc/opening_databases.rdoc [id="plugins-{type}s-{plugin}-sql_log_level"] ===== `sql_log_level` * Value can be any of: `fatal`, `error`, `warn`, `info`, `debug` * Default value is `"info"` Log level at which to log SQL queries, the accepted values are the common ones fatal, error, warn, info and debug. The default value is info. [id="plugins-{type}s-{plugin}-statement"] ===== `statement` * Value type is <> * There is no default value for this setting. If undefined, Logstash will complain, even if codec is unused. Statement to execute To use parameters, use named parameter syntax. For example: [source, ruby] ----------------------------------------------- "SELECT * FROM MYTABLE WHERE id = :target_id" ----------------------------------------------- here, ":target_id" is a named parameter. You can configure named parameters with the `parameters` setting. [id="plugins-{type}s-{plugin}-statement_filepath"] ===== `statement_filepath` * Value type is <> * There is no default value for this setting. Path of file containing statement to execute [id="plugins-{type}s-{plugin}-tracking_column"] ===== `tracking_column` * Value type is <> * There is no default value for this setting. If tracking column value rather than timestamp, the column whose value is to be tracked [id="plugins-{type}s-{plugin}-tracking_column_type"] ===== `tracking_column_type` * Value can be any of: `numeric`, `timestamp` * Default value is `"numeric"` Type of tracking column. Currently only "numeric" and "timestamp" [id="plugins-{type}s-{plugin}-use_column_value"] ===== `use_column_value` * Value type is <> * Default value is `false` Use an incremental column value rather than a timestamp [id="plugins-{type}s-{plugin}-common-options"] include::{include_path}/{type}.asciidoc[]