|
| 1 | +```mdx-code-block |
| 2 | +import Link from '@docusaurus/Link'; |
| 3 | +``` |
| 4 | + |
| 5 | +<tr> |
| 6 | + <td><code>batching.maxBytes</code></td> |
| 7 | + <td>Optional. Default value <code>16000000</code>. Events are emitted to BigQuery when the batch reaches this size in bytes</td> |
| 8 | +</tr> |
| 9 | +<tr> |
| 10 | + <td><code>batching.maxDelay</code></td> |
| 11 | + <td>Optional. Default value <code>1 second</code>. Events are emitted to BigQuery after a maximum of this duration, even if the <code>maxBytes</code> size has not been reached</td> |
| 12 | +</tr> |
| 13 | +<tr> |
| 14 | + <td><code>batching.uploadConcurrency</code></td> |
| 15 | + <td>Optional. Default value 3. How many batches can we send simultaneously over the network to BigQuery</td> |
| 16 | +</tr> |
| 17 | +<tr> |
| 18 | + <td><code>retries.setupErrors.delay</code></td> |
| 19 | + <td> |
| 20 | + Optional. Default value <code>30 seconds</code>. |
| 21 | + Configures exponential backoff on errors related to how BigQuery is set up for this loader. |
| 22 | + Examples include authentication errors and permissions errors. |
| 23 | + This class of errors are reported periodically to the monitoring webhook. |
| 24 | + </td> |
| 25 | +</tr> |
| 26 | +<tr> |
| 27 | + <td><code>retries.transientErrors.delay</code></td> |
| 28 | + <td> |
| 29 | + Optional. Default value <code>1 second</code>. |
| 30 | + Configures exponential backoff on errors that are likely to be transient. |
| 31 | + Examples include server errors and network errors. |
| 32 | + </td> |
| 33 | +</tr> |
| 34 | +<tr> |
| 35 | + <td><code>retries.transientErrors.attempts</code></td> |
| 36 | + <td>Optional. Default value 5. Maximum number of attempts to make before giving up on a transient error.</td> |
| 37 | +</tr> |
| 38 | +<tr> |
| 39 | + <td><code>skipSchemas</code></td> |
| 40 | + <td>Optional, e.g. <code>["iglu:com.example/skipped1/jsonschema/1-0-0"]</code> or with wildcards <code>["iglu:com.example/skipped2/jsonschema/1-*-*"]</code>. A list of schemas that won't be loaded to BigQuery. This feature could be helpful when recovering from edge-case schemas which for some reason cannot be loaded to the table.</td> |
| 41 | +</tr> |
| 42 | +<tr> |
| 43 | + <td><code>monitoring.metrics.statsd.hostname</code></td> |
| 44 | + <td>Optional. If set, the loader sends statsd metrics over UDP to a server on this host name.</td> |
| 45 | +</tr> |
| 46 | +<tr> |
| 47 | + <td><code>monitoring.metrics.statsd.port</code></td> |
| 48 | + <td>Optional. Default value 8125. If the statsd server is configured, this UDP port is used for sending metrics.</td> |
| 49 | +</tr> |
| 50 | +<tr> |
| 51 | + <td><code>monitoring.metrics.statsd.tags.*</code></td> |
| 52 | + <td>Optional. A map of key/value pairs to be sent along with the statsd metric.</td> |
| 53 | +</tr> |
| 54 | +<tr> |
| 55 | + <td><code>monitoring.metrics.statsd.period</code></td> |
| 56 | + <td>Optional. Default <code>1 minute</code>. How often to report metrics to statsd.</td> |
| 57 | +</tr> |
| 58 | +<tr> |
| 59 | + <td><code>monitoring.metrics.statsd.prefix</code></td> |
| 60 | + <td>Optional. Default <code>snowplow.bigquery-loader</code>. Prefix used for the metric name when sending to statsd.</td> |
| 61 | +</tr> |
| 62 | +<tr> |
| 63 | + <td><code>monitoring.webhook.endpoint</code></td> |
| 64 | + <td>Optional, e.g. <code>https://webhook.example.com</code>. The loader will send to the webhook a payload containing details of any error related to how BigQuery is set up for this loader.</td> |
| 65 | +</tr> |
| 66 | +<tr> |
| 67 | + <td><code>monitoring.webhook.tags.*</code></td> |
| 68 | + <td>Optional. A map of key/value strings to be included in the payload content sent to the webhook.</td> |
| 69 | +</tr> |
| 70 | +<tr> |
| 71 | + <td><code>monitoring.sentry.dsn</code></td> |
| 72 | + <td>Optional. Set to a Sentry URI to report unexpected runtime exceptions.</td> |
| 73 | +</tr> |
| 74 | +<tr> |
| 75 | + <td><code>monitoring.sentry.tags.*</code></td> |
| 76 | + <td>Optional. A map of key/value strings which are passed as tags when reporting exceptions to Sentry.</td> |
| 77 | +</tr> |
| 78 | +<tr> |
| 79 | + <td><code>telemetry.disable</code></td> |
| 80 | + <td>Optional. Set to <code>true</code> to disable <Link to="/docs/getting-started-on-community-edition/telemetry/">telemetry</Link>.</td> |
| 81 | +</tr> |
| 82 | +<tr> |
| 83 | + <td><code>telemetry.userProvidedId</code></td> |
| 84 | + <td>Optional. See <Link to="/docs/getting-started-on-community-edition/telemetry/#how-can-i-help">here</Link> for more information.</td> |
| 85 | +</tr> |
0 commit comments