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
*`FlowResolver` is requested to [convertResolvedToTypedFlow](FlowResolver.md#convertResolvedToTypedFlow) (for [UnresolvedFlow](UnresolvedFlow.md)s with [once](UnresolvedFlow.md#once) enabled)
* <spanid="mustBeAppend"> `mustBeAppend` flag (default: `false`)
14
+
15
+
`CompleteFlow` is created when:
16
+
17
+
*`FlowResolver` is requested to [convertResolvedToTypedFlow](FlowResolver.md#convertResolvedToTypedFlow) (for [UnresolvedFlow](UnresolvedFlow.md)s that are neither [once](UnresolvedFlow.md#once) nor their results are streaming dataframes)
Copy file name to clipboardExpand all lines: docs/declarative-pipelines/StreamingFlow.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# StreamingFlow
2
2
3
-
`StreamingFlow` is a [ResolvedFlow](ResolvedFlow.md).
3
+
`StreamingFlow` is a [ResolvedFlow](ResolvedFlow.md) that may or may not be [append](#mustBeAppend).
4
4
5
-
`StreamingFlow` is [planned for execution](FlowPlanner.md#plan) as a [StreamingTableWrite](StreamingTableWrite.md).
5
+
`StreamingFlow` is planned for execution as [StreamingTableWrite](StreamingTableWrite.md) by [FlowPlanner](FlowPlanner.md#plan).
6
6
7
7
## Creating Instance
8
8
@@ -14,4 +14,4 @@
14
14
15
15
`StreamingFlow` is created when:
16
16
17
-
*`FlowResolver` is requested to [convertResolvedToTypedFlow](FlowResolver.md#convertResolvedToTypedFlow)
17
+
*`FlowResolver` is requested to [convertResolvedToTypedFlow](FlowResolver.md#convertResolvedToTypedFlow) (for [UnresolvedFlow](UnresolvedFlow.md)s with their results being streaming dataframes)
`UnresolvedFlow` is registered to a [GraphRegistrationContext](GraphRegistrationContext.md) with [registerFlow](GraphRegistrationContext.md#registerFlow).
6
+
7
+
`UnresolvedFlow` is analyzed and resolved to [ResolvedFlow](ResolvedFlow.md) (by [FlowResolver](FlowResolver.md#attemptResolveFlow) when [DataflowGraph](DataflowGraph.md) is requested to [resolve](DataflowGraph.md#resolve)).
8
+
9
+
`UnresolvedFlow`[must have unique identifiers](GraphRegistrationContext.md#assertFlowIdentifierIsUnique) (or an `AnalysisException` is reported).
10
+
11
+
## Creating Instance
12
+
13
+
`UnresolvedFlow` takes the following to be created:
0 commit comments