Movatterモバイル変換


[0]ホーム

URL:


Loading

Jdbc input plugin

For other versions, see theVersioned plugin docs.

For questions about the plugin, open a topic in theDiscuss forums. For bugs or feature requests, open an issue inGithub. For the list of Elastic supported plugins, please consult theElastic Support Matrix.

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 (seeschedule 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.

This plugin does not come packaged with JDBC driver libraries. The desired jdbc driver library must be explicitly passed in to the plugin using thejdbc_driver_library configuration option.

See thejdbc_driver_library andjdbc_driver_class options for more info.

Input from this plugin can be scheduled to run periodically according to a specific schedule. This scheduling syntax is powered byrufus-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/Chicagowill execute at 6:00am (UTC/GMT -5) every day.

Further documentation describing this syntax can be foundhere.

The plugin will persist thesql_last_value parameter in the form of a metadata file stored in the configuredlast_run_metadata_path. Upon query execution, this file will be updated with the current value ofsql_last_value. Next time the pipeline starts up, this value will be updated by reading from the file. Ifclean_run is set to true, this value will be ignored andsql_last_value will be set to Jan 1, 1970, or 0 ifuse_column_value is true, as if no query has ever been executed.

Many JDBC drivers use thefetch_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 thejdbc_fetch_size configuration option. No fetch size is set by default in this plugin, so the specific driver’s default size will be used.

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 themydb database using the user:mysql and wish to input all rows in thesongs table that match a specific artist. The following examples demonstrates a possible Logstash configuration for this. Theschedule option in this example will instruct the plugin to execute this input statement on the minute, every minute.

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"  }}

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 thestatement configuration parameter.

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 thesql_last_value parameter (e.g. for ingesting only data changed since last run), each input should define its ownlast_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’ssql_last_value.

Some parameters are built-in and can be used from within your queries. Here is the list:

sql_last_valueThe value used to calculate which rows to query. Before any query is run,this is set to Thursday, 1 January 1970, or 0 ifuse_column_value is true andtracking_column is set. It is updated accordingly after subsequent queries are run.
offset, sizeValues used with manual paging mode to explicitly implement the paging.Supported only ifjdbc_paging_enabled is enabled andjdbc_paging_mode has theexplicit value.

Example:

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  }}

Using server side prepared statements can speed up execution times as the server optimises the query plan and execution.

Note

Not all JDBC accessible technologies will support prepared statements.

With the introduction of Prepared Statement support comes a different code execution path and some new settings. Most of the existing settings are still useful but there are several new settings for Prepared Statements to read up on. Use the boolean settinguse_prepared_statements to enable this execution mode. Use theprepared_statement_name setting to specify a name for the Prepared Statement, this identifies the prepared statement locally and remotely and it should be unique in your config and on the database. Use theprepared_statement_bind_values array setting to specify the bind values, use the exact string:sql_last_value (multiple times if necessary) for the predefined parameter mentioned before. Thestatement (orstatement_path) setting still holds the SQL statement but to use bind variables you must use the? character as a placeholder in the exact order found in theprepared_statement_bind_values array.

Note

Building count queries around a prepared statement is not supported at this time. Because jdbc paging uses count queries whenjdbc_paging_mode has valueauto,jdbc paging is not supported with prepared statements at this time either. Therefore,jdbc_paging_enabled,jdbc_page_size settings are ignored when using prepared statements.

Example:

input {  jdbc {    statement => "SELECT * FROM mgd.seq_sequence WHERE _sequence_key > ? AND _sequence_key < ? + ? ORDER BY _sequence_key ASC"    prepared_statement_bind_values => [":sql_last_value", ":sql_last_value", 4]    prepared_statement_name => "foobar"    use_prepared_statements => true    use_column_value => true    tracking_column_type => "numeric"    tracking_column => "_sequence_key"    last_run_metadata_path => "/elastic/tmp/testing/confs/test-jdbc-int-sql_last_value.yml"    # ... other configuration bits  }}

The JDBC input plugin leverages thesequel library to query databases through their JDBC drivers. The implementation of drivers will vary, however, potentially leading to unexpected behavior.

Some databases - such as Sybase or SQL Anywhere - may have issues with stale connections, timing out between scheduled runs and never reconnecting.

To ensure connections are valid before queries are executed, enablejdbc_validate_connection and setjdbc_validation_timeout to a shorter interval than theschedule.

input {  jdbc {    schedule => "* * * * *"    jdbc_validate_connection => true    jdbc_validation_timeout => 50  }}
  1. run every minute
  2. 50 seconds

This plugin supports the following configuration options plus theCommon options described later.

SettingInput typeRequired
clean_runbooleanNo
columns_charsethashNo
connection_retry_attemptsnumberNo
connection_retry_attempts_wait_timenumberNo
jdbc_connection_stringstringYes
jdbc_default_timezonestringNo
jdbc_driver_classstringYes
jdbc_driver_librarystringNo
jdbc_fetch_sizenumberNo
jdbc_page_sizenumberNo
jdbc_paging_enabledbooleanNo
jdbc_paging_modestring, one of["auto", "explicit"]No
jdbc_passwordpasswordNo
jdbc_password_filepatha valid filesystem pathNo
jdbc_pool_timeoutnumberNo
jdbc_userstringYes
jdbc_validate_connectionbooleanNo
jdbc_validation_timeoutnumberNo
last_run_metadata_pathstringNo
lowercase_column_namesbooleanNo
parametershashNo
plugin_timezonestring, one of["local", "utc"]No
prepared_statement_bind_valuesarrayNo
prepared_statement_namestringNo
record_last_runbooleanNo
schedulestringNo
sequel_optshashNo
sql_log_levelstring, one of["fatal", "error", "warn", "info", "debug"]No
statementstringNo
statement_filepatha valid filesystem pathNo
statement_retry_attemptsnumberNo
statement_retry_attempts_wait_timenumberNo
tracking_columnstringNo
tracking_column_typestring, one of["numeric", "timestamp"]No
use_column_valuebooleanNo
use_prepared_statementsbooleanNo

Also seeCommon options for a list of options supported by all input plugins.

  • Value type isboolean
  • Default value isfalse

Whether the previous run state should be preserved

  • Value type ishash
  • Default value is{}

The character encoding for specific columns. This option will override the:charset option for the specified columns.

Example:

input {  jdbc {    ...    columns_charset => { "column0" => "ISO-8859-1" }    ...  }}

this will only convert column0 that has ISO-8859-1 as an original encoding.

  • Value type isnumber
  • Default value is1

Maximum number of times to try connecting to database

  • Value type isnumber
  • Default value is0.5

Number of seconds to sleep between connection attempts

  • This is a required setting.
  • Value type isstring
  • There is no default value for this setting.

JDBC connection string

  • Value type isstring

    • Value should be a canonical timezone or offset, such asEurope/Paris orEtc/GMT+3
    • Valuemay include square-bracketed extensions, such asAmerica/Denver[dst_enabled_on_overlap:true]
  • There is no default value for this setting.

Logstash and Elasticsearch expect timestamps to be expressed in UTC terms. If your database has recorded timestamps that are relative to another timezone, the database timezone if you will, then set this setting to be the timezone that the database is using. However, as SQL does not allow for timezone data in timestamp fields we can’t figure this out on a record by record basis. 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.

While it is common to store local times in SQL’s timestamp column type, many timezones change their offset during the course of a calendar year and therefore cannot be used with SQL’s timestamp type to represent an ordered, continuous timeline. For example in theAmerica/Chicago zone when daylight saving time (DST) ends in the autumn, the clock rolls from01:59:59 back to01:00:00, making any timestamp in the 2-hour period between01:00:00CDT and02:00:00CST on that day ambiguous.

When encountering an ambiguous timestamp caused by a DST transition, the query will fail unless the timezone specified here includes a square-bracketed instruction for how to handle overlapping periods (such as:America/Chicago[dst_enabled_on_overlap:true] orAustralia/Melbourne[dst_enabled_on_overlap:false]).

  • Value can be any of:utc,local
  • Default value is"utc"

If you want this plugin to offset timestamps to a timezone other than UTC, you can set this setting tolocal and the plugin will use the OS timezone for offset adjustments.

Note: when specifyingplugin_timezone and/orjdbc_default_timezone, offset adjustments are made in two places, ifsql_last_value is a timestamp and it is used as a parameter in the statement then offset adjustment is done from the plugin timezone into the data timezone and while records are processed, timestamps are offset adjusted from the database timezone to the plugin timezone. If your database timezone is UTC then you do not need to set either of these settings.

  • This is a required setting.
  • Value type isstring
  • There is no default value for this setting.

JDBC driver class to load, for example, "org.apache.derby.jdbc.ClientDriver"

Note

Perhttps://github.com/logstash-plugins/logstash-input-jdbc/issues/43, prependingJava:: to the driver class may be required if it appears that the driver is not being loaded correctly despite relevant jar(s) being provided by either via thejdbc_driver_library setting or being placed in the Logstash Java classpath. This is known to be the case for the Oracle JDBC driver (ojdbc6.jar), where the correctjdbc_driver_class is"Java::oracle.jdbc.driver.OracleDriver", and may also be the case for other JDBC drivers.

  • Value type isstring
  • There is no default value for this setting.

JDBC driver library path to third party driver library. In case of multiple libraries being required you can pass them separated by a comma.

Note

If not provided, Plugin will look for the driver class in the Logstash Java classpath. Additionally, if the library does not appear to be being loaded correctly via this setting, placing the relevant jar(s) in the Logstash Java classpath rather than via this setting may help. Please also make sure the path is readable by the Logstash process (e.g.logstash user when running as a service).

  • Value type isnumber
  • There is no default value for this setting.

JDBC fetch size. if not provided, respective driver’s default will be used

  • Value type isnumber
  • Default value is100000

JDBC page size

  • Value type isboolean
  • Default value isfalse

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 withjdbc_page_size.

Be aware that ordering is not guaranteed between queries.

  • Value can be any of:auto,explicit
  • Default value is"auto"

Whether to useexplicit orauto mode during the JDBC paging

Ifauto, your statement will be automatically surrounded by a count query and subsequent multiple paged queries (withLIMIT statement, etc.).

Ifexplicit, multiple queries (without a count query ahead) will be performed with your statement, until no more rows are retrieved. You have to write your own paging conditions in your statement configuration. Theoffset andsize parameters can be used in your statement (size equal tojdbc_page_size, andoffset incremented bysize for each query). When the number of rows returned by the query is not equal tosize, SQL paging will be ended. Example:

input {  jdbc {    statement => "SELECT id, mycolumn1, mycolumn2 FROM my_table WHERE id > :sql_last_value LIMIT :size OFFSET :offset",    jdbc_paging_enabled => true,    jdbc_paging_mode => "explicit",    jdbc_page_size => 100000  }}
input {  jdbc {    statement => "CALL fetch_my_data(:sql_last_value, :offset, :size)",    jdbc_paging_enabled => true,    jdbc_paging_mode => "explicit",    jdbc_page_size => 100000  }}

This mode can be considered in the following situations:

  1. Performance issues encountered in default paging mode.
  2. Your SQL statement is complex, so simply surrounding it with paging statements is not what you want.
  3. Your statement is a stored procedure, and the actual paging statement is inside it.
  • Value type ispassword
  • There is no default value for this setting.

JDBC password

  • Value type ispath
  • There is no default value for this setting.

JDBC password filename

  • Value type isnumber
  • Default value is5

Connection pool configuration. The amount of seconds to wait to acquire a connection before raising a PoolTimeoutError (default 5)

  • This is a required setting.
  • Value type isstring
  • There is no default value for this setting.

JDBC user

  • Value type isboolean
  • Default value isfalse

Connection pool configuration. Validate connection before use.

  • Value type isnumber
  • Default value is3600

Connection pool configuration. How often to validate a connection (in seconds)

  • Value type isstring
  • Default value is"<path.data>/plugins/inputs/jdbc/logstash_jdbc_last_run"

Path to file with last run time

In versions prior to 5.2.6 the metadata file was written to$HOME/.logstash_jdbc_last_run. If during a Logstash upgrade the file is found in "$HOME" it will be moved to the default location under "path.data". If the path is defined by the user then no automatic move is performed.

  • Value type isboolean
  • Default value istrue

Whether to force the lowercasing of identifier fields

  • Value type ishash
  • Default value is{}

Hash of query parameter, for example{ "target_id" => "321" }

  • Value type isarray
  • Default value is[]

Array of bind values for the prepared statement.:sql_last_value is a reserved predefined string

  • Value type isstring
  • Default value is""

Name given to the prepared statement. It must be unique in your config and in the database

  • Value type isboolean
  • Default value istrue

Whether to save state or not inlast_run_metadata_path

  • Value type isstring
  • 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.

  • Value type ishash
  • 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

  • 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.

  • Value type isstring
  • 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:

"SELECT * FROM MYTABLE WHERE id = :target_id"

here, ":target_id" is a named parameter. You can configure named parameters with theparameters setting.

  • Value type ispath
  • There is no default value for this setting.

Path of file containing statement to execute

  • Value type isnumber
  • Default value is1

Maximum number of times to try executing a statement.

  • Value type isnumber
  • Default value is0.5

Number of seconds to sleep between statement execution attempts.

  • Value type is .field reference.
  • There is no default value for this setting.

Without atarget, events are created from each row column at the root level. When thetarget is set to a field reference, the column of each row is placed in the target field instead.

This option can be useful to avoid populating unknown fields when a downstream schema such as ECS is enforced.

  • Value type isstring
  • There is no default value for this setting.

The column whose value is to be tracked ifuse_column_value is set totrue

  • Value can be any of:numeric,timestamp
  • Default value is"numeric"

Type of tracking column. Currently only "numeric" and "timestamp"

  • Value type isboolean
  • Default value isfalse

When set totrue, uses the definedtracking_column value as the:sql_last_value. When set tofalse,:sql_last_value reflects the last time the query was executed.

  • Value type isboolean
  • Default value isfalse

When set totrue, enables prepare statement usage

These configuration options are supported by all input plugins:

  • Value type ishash
  • Default value is{}

Add a field to an event

  • Value type iscodec
  • Default value is"plain"

The codec used for input data. Input codecs are a convenient method for decoding your data before it enters the input, without needing a separate filter in your Logstash pipeline.

  • Value type isboolean
  • Default value istrue

Disable or enable metric logging for this specific plugin instance by default we record all the metrics we can, but you can disable metrics collection for a specific plugin.

  • Value type isstring
  • There is no default value for this setting.

Add a uniqueID to the plugin configuration. If no ID is specified, Logstash will generate one. It is strongly recommended to set this ID in your configuration. This is particularly useful when you have two or more plugins of the same type, for example, if you have 2 jdbc inputs. Adding a named ID in this case will help in monitoring Logstash when using the monitoring APIs.

input {  jdbc {    id => "my_plugin_id"  }}
Note

Variable substitution in theid field only supports environment variables and does not support the use of values from the secret store.

  • Value type isarray
  • There is no default value for this setting.

Add any number of arbitrary tags to your event.

This can help with processing later.

  • Value type isstring
  • There is no default value for this setting.

Add atype field to all events handled by this input.

Types are used mainly for filter activation.

The type is stored as part of the event itself, so you can also use the type to search for it in Kibana.

If you try to set a type on an event that already has one (for example when you send an event from a shipper to an indexer) then a new input will not override the existing type. A type set at the shipper stays with that event for its life even when sent to another Logstash server.

Welcome to the docs for thelatest Elastic product versions, including Elastic Stack 9.0 and Elastic Cloud Serverless.To view previous versions, go toelastic.co/guide.


[8]ページ先頭

©2009-2025 Movatter.jp