Skip to content

Commit

Permalink
Add spark
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <[email protected]>
  • Loading branch information
pingsutw committed Nov 10, 2023
1 parent c7d3370 commit 745b10b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions examples/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
from basics.basics.shell_task import shell_task_wf
from basics.basics.task import slope
from basics.basics.workflow import simple_wf_with_partial
from flytekit import workflow
from k8s_spark_plugin.k8s_spark_plugin.dataframe_passing import spark_to_pandas_wf
from k8s_spark_plugin.k8s_spark_plugin.pyspark_pi import my_spark
from ray_plugin.ray_plugin.ray_example import ray_workflow
from flytekit import workflow, task


@workflow
Expand All @@ -29,9 +31,10 @@ def integration_test():

# Test Plugins
ray_workflow(n=5)
my_spark()
spark_to_pandas_wf()
# TODO: Add more plugins here, like tensorflow, torch, Dask.

# TODO: Add more plugins here, like spark, tensorflow, torch, Dask.


if __name__ == '__main__':
if __name__ == "__main__":
integration_test()

0 comments on commit 745b10b

Please sign in to comment.