Write events to a Google Cloud bucket.
Field | Type | Required | Description |
---|
retry | Retry | | How to retry operation if it fails. |
batch | Batch | | How to collect input events into batches. |
input-field | event-field (string ) | | Use the specified field as the content for the file line. |
bucket-name | string | ✅ | Bucket Name. |
object-name | gcs_output:object-name | ✅ | Remote Object name, may include slashes. |
disable-object-name-guid | boolean (bool ) | | Disable the GUID prefix if you want object name to be treated literally (off for deletes). |
guid-prefix | string | | GUID Prefix, will be prepended to the GUID, the default value is ”/”. |
guid-suffix | string | | GUID Suffix, will be appended to the GUID if specified. |
credentials | gcs_output:credentials | ✅ | Credentials for GCP. |
mode | Mode | | Put or delete the object? Default is Put. |
preprocessors | Preprocessors | | Preprocessors (process data before making it available for upload) these processors will be run in the order they are specified. |
track-schema | boolean (bool ) | | Check the schema of the written data and update __SCHEMA_NUMBER (written data must be JSON). |
Field | Type | Required | Description |
---|
count | integer | | How to retry? Either forever or for a limited number of times. |
pause | string | | How long to pause before re-trying. |
Field | Type | Required | Description |
---|
fixed-size | integer | | maximum number of events in an output batch. |
mode | symbol | ✅ | If ‘document’ send on end of document generated by input. If ‘fixed’, use fixed_size . |
timeout | string | ✅ | interval after which the batch is sent, to keep throughput going (default 100ms). |
header | string | | put a header line before the batch. |
footer | string | | put a header line after the last line of the batch. |
use-document-marker | bool | | Enrich the job metadata with a document marker (for document handling in batch mode). |
wrap-as-json | bool | | Format the output batch as a JSON array. |
Value | Name | Description |
---|
put | put | Put Objects |
delete | delete | Delete Objects |
Value | Name | Description |
---|
gzip | gzip | Gzip the output data |
parquet | parquet | Extract the received data as JSON rows from a parquet file |
base64 | base64 | Decode base64 as binary |