fluent-plugin-sql
fluent-plugin-sql copied to clipboard
SQL input/output plugin for Fluentd
We have some nested fields that we want to use within `column_mapping`, such as `column_mapping 'user.id:user_id,user.name:name'`, but this code is preventing it from working: https://github.com/fluent/fluent-plugin-sql/blob/daca62a41d1a0a725c54f997d3af7bfca7bfc46f/lib/fluent/plugin/out_sql.rb#L56-L67 Specifically `record[k]`. We patched this...
>Is there a support for composite primary key. > Is there a way to give two columns for update.
Any reason for not supporting multi worker configuration on output? Using `td-agent 4.3.0 fluentd 1.14.3 (438a82aead488a86180cd484bbc4e7e344a9032b)`. It looks like all SQL output plugins don't support it at all.
Oracle
Hi, I just started using Fluentd and am looking for a way of saving events to an Oracle database. At the moment I'm trying to use the enhanced_oracle adapter but...
In my fluentd config I have provided the following column_mapping:- ``` table 'login' column_mapping 'id:id,name:name,email:email,timestmp:timestmp' ``` All the comumn names mentioned above are Case-Sensitive. But duing the actual data insertion...
Hi @repeatedly This PR aim to fix the error when streaming to BigQuery, related to this PR #45 ```], @index=1>]”```
I'm using version 2.2.0 with oracle_enhanced as the adapter. What can I do to fix the date formatting when working with Oracle database. For example `2017-12-20 01:33:20` shows up as...
Hello, I have the below configuration for SQL database, so I have a column which is primary and it is autoincremented column, ideally while inserting data, we don't need to...
Adjusts according to suggestions in #43 This fixed our issues as well so I thought we'd PR it.
I have a field `pkey` which defaults to a generated uuid as follows: `pkey UUID NOT NULL DEFAULT uuid_generate_v1(),` I think the plugin is autofilling any missing column with NULL:...