-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for Snowflake Streaming
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
output: | ||
type: com.amadeus.dataio.pipes.snowflake.streaming.SnowflakeOutput | ||
fields: | ||
- name: Duration | ||
mandatory: "No" | ||
description: Sets the trigger for the stream query. Controls the trigger() Spark function. | ||
example: Duration = "60 seconds" | ||
- name: Timeout | ||
mandatory: "Yes" | ||
description: Controls the amount of time before returning from the streaming query, in hours. It can be a String or an Int. | ||
example: Timeout = 24 | ||
- name: Mode | ||
mandatory: "Yes" | ||
description: The Spark Structured Streaming output mode. | ||
example: Mode = "complete" | ||
default: append | ||
- name: AddTimestampOnInsert | ||
mandatory: "No" | ||
description: Add a column named "timestamp" containing the current timestamp at the start of query evaluation | ||
example: AddTimestampOnInsert = "true" | ||
default: false |