README.md in fluent-plugin-bigquery-0.2.6 vs README.md in fluent-plugin-bigquery-0.2.7

- old
+ new

@@ -161,9 +161,29 @@ ``` Note that the timestamp of logs and the date in the table id do not always match, because there is a time lag between collection and transmission of logs. +### Dynamic table creating + +When `auto_create_table` is set to `true`, try to create the table using BigQuery API when insertion failed with code=404 "Not Found: Table ...". +Next retry of insertion is expected to be success. + +NOTE: `auto_create_table` option cannot be used with `fetch_schema`. You should create the table on ahead to use `fetch_schema`. + +```apache +<match dummy> + type bigquery + + ... + + auto_create_table true + table accesslog_%Y_%m + + ... +</match> +``` + ### Table schema There are three methods to describe the schema of the target table. 1. List fields in fluent.conf