File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ Using Pandas DataFrames as Input / Output
55*******************************************
66
77
8- Working wth pandas DataFrames in Feldera is fairly straight forward.
98You can use :meth: `.SQLContext.input_pandas ` to connect a
109DataFrame to a feldera table as the data source.
1110
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Key Concepts
6565 - The second parameter here is :class: `.FelderaClient ` that we created above.
6666
6767* :meth: `.SQLContext.wait_for_completion `
68- - Blocks this Feldera pipeline until completion. Normally this means until the EoF
68+ - Blocks this Feldera pipeline until completion. Normally this means until the end-of-file (EOF)
6969 has been reached for this input source.
7070
7171 - Takes a parameter ``shutdown ``, when set shuts the pipeline down after completion.
Original file line number Diff line number Diff line change @@ -7,16 +7,24 @@ class CompilationProfile(Enum):
77 """
88
99 SERVER_DEFAULT = None
10- "The compiler server default compilation profile."
10+ """
11+ The compiler server default compilation profile.
12+ """
1113
1214 DEV = "dev"
13- "The development compilation profile."
15+ """
16+ The development compilation profile.
17+ """
1418
1519 UNOPTIMIZED = "unoptimized"
16- "The unoptimized compilation profile."
20+ """
21+ The unoptimized compilation profile.
22+ """
1723
1824 OPTIMIZED = "optimized"
19- "The optimized compilation profile, the default for this API."
25+ """
26+ The optimized compilation profile, the default for this API.
27+ """
2028
2129
2230class BuildMode (Enum ):
You can’t perform that action at this time.
0 commit comments