[apache spark] 아파치 스파크 Data Sharing between multiple Spark Jobs in Databricks

 

Data Sharing between multiple Spark Jobs in Databricks

Using Global temporary view

There are multiple use cases where you want to share the data across multiple Spark Jobs when the data is not too huge. Using createOrReplaceGlobalTempView, the data can be shared between spark jobs instead of storing intermediate data persistently in disk and later cleaning those intermediate data.

createOrReplaceTempView or createOrReplaceGlobalTempView creates a lazily evaluated “view” from the dataframe that you can then use like a hive table in Spark SQL. But, it does  persist into memory unless you cache the data set.

The temp view created by these both methods will create memory reference to the dataframe in use. It will create a temporary view of the table in memory, it is not persistent at this moment but you can run SQL query on top of that.

The lifetime of temp view created by createOrReplaceTempView() is tied to Spark Session in which the dataframe has been created.

The lifetime of global temp view created by createGlobalTempView() is tied to Spark Application. So, this memory reference can be used across Spark Sessions. it will be automatically dropped when the application terminates. It’s tied to a system preserved database global_temp(configurable via SparkConf), and we must use the qualified name to refer a global temp view, e.g. SELECT * FROM global_temp.my_view

In Databricks, you can share the data using this global temp view between different notebook when each notebook have its own Spark Session. If each notebook shares the same spark session, then using normal temp view also you can share the data across notebooks, but due to some security reasons, this option is set to false by default. But you can turn it on, based on your requirements.

Databricks command to view the configuration value

Spark Session Isolation is enabled by default. With Spark Session Isolation, different notebooks attached to a cluster are in different sessions with isolated runtime configurations and current database setting. In order to share temporary views across notebooks when session isolation is enabled, users can use global temporary views. Users can still disable session isolation by setting spark.databricks.session.share to true. If you enable this option, createOrReplaceTempView itself shares the data between different spark sessions(different notebooks). From Spark 2.0.2-db1 and above versions due to some security reasons and for user stability, session isolation is  by default. You can enable Spark session isolation so that every notebook uses its own SparkSession

To disable session isolation, declare it on cluster level and then restart the cluster. But, as a good practice session isolation shouldn’t be disabled.

Disable Spark Session Isolation

Without Databricks Cluster

If you are not using Databricks Cluster, Spark Application can be considered as a single batch job, it can contain more than one Spark Session. Global temporary views will be used to share data between multiple spark session.

Spark session is a unified entry point of a spark application from Spark 2.0. It provides a way to interact with various spark’s functionality with a lesser number of constructs.

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

Why we need multiple Spark Session in a same Spark Job?

One of the scenario is, when two different configuration needs to be used to create a different Spark Session, for example 2 different Hive metastores. You have requirement to combine the data coming from two different Hive metastores, then you need two different Spark Session with different configuration:

val spark = SparkSession
        .builder()
        .appName("sparkHive1")
        .master("yarn")
        .config("hive.metastore.uris","thrift://hiveserver1:9083") 
        .enableHiveSupport()
        .getOrCreate()

val newSpark = SparkSession
        .builder()
        .appName("sparkHive2")
        .master("yarn")
        .config("hive.metastore.uris","thrift://hiveserver2:9084") 
        .enableHiveSupport()
        .getOrCreate()

val spark_df = spark.sql("select * from session_1_table")

spark_df.createGlobalTempView("spark_tbl_1")

/**
newSpark_tbl_2 is from 2nd hive metastore and spark_tbl_1 is from 1st hive metastore.
**/

display(newSpark.sql("""select * from newSpark_tbl_2 t2 
              join 
              spark_tbl_1 t1 
              on 
              t1.id = t2.id"""))

spark.stop()

// once spark session 1 is stopped, the data will related 1st hive metastore will be lost. But newSpark session can process its own data, but it can't access metastore-1.

Here, the usage is mostly within Spark Jobs. But in Databricks, you can share these same between different Spark Jobs.

Using Databricks Cluster

In Databricks as they share the same cluster, we can share the data between different Spark Applications using Notebook Workflows in Databricks.

Notebook workflows in databricks allows you to easily build complex workflows and pipelines with dependencies and conditional routing based on previous Job status(success/failure).

 

// Returning data through temporary tables.
// You can only return one string using dbutils.notebook.exit(), but since called notebooks reside in the same JVM, you can
// return a name referencing data stored in a temporary table.

/** In callee notebook  NOTEBOOK - 1 */
sc.parallelize(1 to 5).toDF().createOrReplaceGlobalTempView("my_data")

dbutils.notebook.exit("my_data")

/** In caller notebook  NOTEBOOK - 2 */

val returned_table = dbutils.notebook.run("LOCATION_OF_CALLEE_NOTEBOOK", 60)
val global_temp_db = spark.conf.get("spark.sql.globalTempDatabase")

table(global_temp_db + "." + returned_table).show()
// Output of data that got created in different notebook get accessed in another notebook:+-----+
|value|
+-----+
|    1|
|    2|
|    3|
|    4|
|    5|
+-----+

Wrapping up

In a nutshell, TEMPORARY skips persisting the view definition in the underlying metastore, if any. If GLOBAL is specified, the view can be accessed by different sessions and kept alive until your application ends; otherwise, the temporary views are session-scoped and will be automatically dropped if the session terminates. All the global temporary views are tied to a system preserved temporary database global_temp. The database name is preserved, and thus, users are not allowed to create/use/drop this database(global_temp db). You must use the qualified name to access the global temporary view.

Happy Learning !!

[출처] https://medium.com/@kar9475/data-sharing-between-multiple-spark-jobs-in-databricks-308687c99897

 

 

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
공지 오라클 기본 샘플 데이터베이스 졸리운_곰 2014.01.02 86108
공지 [SQL컨셉] 서적 "SQL컨셉"의 샘플 데이타 베이스 SAMPLE DATABASE of ORACLE 가을의 곰을... 2013.02.10 78621
공지 [G_SQL] Sample Database 가을의 곰을... 2012.05.20 95336
33 [spark][sparksql][odbc][jdbc] JDBC and ODBC drivers and configuration parameters file 졸리운_곰 2021.04.14 4127
32 [spark][pyspark][php] Natively Connect to Spark Data in PHP 졸리운_곰 2021.04.14 1702
31 [SPARK][Python][pySpark][아콘 소프트][나무기술] Real-world Python workloads on Spark: Standalone clusters : 스파크 예제 논란, driver-host 불필요 file 졸리운_곰 2021.04.03 1691
30 [Spark] Apache Spark Cluster(Standalone) 스파크 클러스터 스텐드 얼론 구축 졸리운_곰 2021.03.28 1523
29 [Spark][머신러닝] Apache Spark-Python vs Scala 성능 비교 file 졸리운_곰 2021.03.21 1152
28 [Spark][MSA] Apache Spark - Key/Value Paris (Pair RDD) 졸리운_곰 2021.03.21 1583
27 [Spark][머신러닝] Apache Spark - RDD (Resilient Distributed DataSet) Persistence file 졸리운_곰 2021.03.21 1312
26 [Spark][머신러닝] Apache Spark - RDD (Resilient Distributed DataSet) 이해하기 - #2 file 졸리운_곰 2021.03.21 1085
25 [Spark][머신러닝] Apache Spark - RDD (Resilient Distributed DataSet) 이해하기 - #1 file 졸리운_곰 2021.03.21 1678
24 [Spark][머신러닝] Apache Spark 소개 - 스파크 스택 구조 file 졸리운_곰 2021.03.21 1318
23 [Spark] cache()와 persist()의 차이 file 졸리운_곰 2021.03.16 1550
22 [Spark] Spark - RDD vs Dataframes vs Datasets 우리는 언제, 왜 RDD, Dataframes, Datasets를 사용해야 할까? file 졸리운_곰 2021.03.15 1317
21 [Spark & Oracle] Reading Data From Oracle Database With Apache Spark file 졸리운_곰 2021.03.15 1148
20 [spark][pySpark] 스파크 튜토리얼 - 스파크 SQL file 졸리운_곰 2021.03.15 1856
19 [spark][flask][python] Machine learning at Scale using Pyspark & deployment using AzureML/Flask file 졸리운_곰 2021.03.14 2034
18 [pySpark, 파이썬 spark] Best Practices Writing Production-Grade PySpark Jobs file 졸리운_곰 2021.03.14 1691
» [apache spark] 아파치 스파크 Data Sharing between multiple Spark Jobs in Databricks file 졸리운_곰 2021.03.13 1792
16 [Apache Spark] Spark SQL 아파치 스파크 SQL 개요 졸리운_곰 2021.03.13 1282
15 [spark] Apache Livy: A REST Interface for Apache Spark file 졸리운_곰 2021.03.12 1354
14 [spark] Spark 및 Oracle 데이터베이스 file 졸리운_곰 2021.03.06 1410
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED