You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`default` (String) The default value for the column
50
51
-`name` (String) The column name
52
+
-`primary_key` (Boolean) If set to `true`, this column will be used as the primary key, or part of the combined primary key if multiple columns are marked as primary keys.
51
53
-`type` (String) The type name of the column
54
+
-`use_as_event_time` (Boolean) If set to `true`, this column will be used as the event time column (by default ingest time will be used as event time). Only one column can be marked as the event time column in a stream.
Due to the framework limitation, it's impossible to define a block attribute as `required`. Thus we need to manually move it to this `Required` section.
96
-
-->
97
-
-`column` (Block List) Define the columns of the stream (see [below for nested schema](#nestedblock--column))
98
113
99
114
### Optional
100
115
116
+
-`column` (Block List) Define the columns of the stream (see [below for nested schema](#nestedblock--column))
101
117
-`description` (String) A detailed text describes the stream
102
118
-`history_ttl` (String) A SQL expression defines the maximum age of data that are persisted in the historical store
-`retention_bytes` (Number) The retention size threadhold in bytes indicates how many data could be kept in the streaming store
104
121
-`retention_ms` (Number) The retention period threadhold in millisecond indicates how long data could be kept in the streaming store
105
122
@@ -115,3 +132,5 @@ Optional:
115
132
116
133
-`codec` (String) The codec for value encoding
117
134
-`default` (String) The default value for the column
135
+
-`primary_key` (Boolean) If set to `true`, this column will be used as the primary key, or part of the combined primary key if multiple columns are marked as primary keys.
136
+
-`use_as_event_time` (Boolean) If set to `true`, this column will be used as the event time column (by default ingest time will be used as event time). Only one column can be marked as the event time column in a stream.
0 commit comments