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
Copy file name to clipboardExpand all lines: docs/source/user_guide/apachespark/quickstart.rst
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ Quick Start
4
4
5
5
Data Flow is a hosted Apache Spark server. It is quick to start, and can scale to handle large datasets in parallel. ADS provides a convenient API for creating and maintaining workloads on Data Flow.
6
6
7
-
Submit a Dummy Python Script to DataFlow
8
-
========================================
7
+
Submit a Toy Python Script to DataFlow
8
+
======================================
9
9
10
10
From a Python Environment
11
11
-------------------------
12
12
13
13
Submit a python script to DataFlow entirely from your python environment.
14
-
The following snippet uses a dummy python script that prints "Hello World"
14
+
The following snippet uses a toy python script that prints "Hello World"
15
15
followed by the spark version, 3.2.1.
16
16
17
17
.. code-block:: python
@@ -33,8 +33,7 @@ followed by the spark version, 3.2.1.
33
33
34
34
if __name__ == "__main__":
35
35
main()
36
-
"""
37
-
)
36
+
38
37
name = f"dataflow-app-{str(uuid4())}"
39
38
dataflow_configs = (
40
39
DataFlow()
@@ -54,6 +53,8 @@ followed by the spark version, 3.2.1.
0 commit comments