当前位置:网站首页>spark调优(三):持久化减少二次查询
spark调优(三):持久化减少二次查询
2022-07-07 14:13:00 【InfoQ】
1. 起因
2. 优化开始
df = sc.sql(sql)
df1 = df.persist()
df1.createOrReplaceTempView(temp_table_name)
subdf = sc.sql(select * from temp_table_name)
- 默认情况下,性能最高的当然是MEMORY_ONLY,但前提是你的内存必须足够足够大,可以绰绰有余地存放下整个RDD的所有数据。因为不进行序列化与反序列化操作,就避免了这部分的性能开销;对这个RDD的后续算子操作,都是基于纯内存中的数据的操作,不需要从磁盘文件中读取数据,性能也很高;而且不需要复制一份数据副本,并远程传送到其他节点上。但是这里必须要注意的是,在实际的生产环境中,恐怕能够直接用这种策略的场景还是有限的,如果RDD中数据比较多时(比如几十亿),直接用这种持久化级别,会导致JVM的OOM内存溢出异常。
- 如果使用MEMORY_ONLY级别时发生了内存溢出,那么建议尝试使用MEMORY_ONLY_SER级别。该级别会将RDD数据序列化后再保存在内存中,此时每个partition仅仅是一个字节数组而已,大大减少了对象数量,并降低了内存占用。这种级别比MEMORY_ONLY多出来的性能开销,主要就是序列化与反序列化的开销。但是后续算子可以基于纯内存进行操作,因此性能总体还是比较高的。此外,可能发生的问题同上,如果RDD中的数据量过多的话,还是可能会导致OOM内存溢出的异常。
- 如果纯内存的级别都无法使用,那么建议使用MEMORY_AND_DISK_SER策略,而不是MEMORY_AND_DISK策略。因为既然到了这一步,就说明RDD的数据量很大,内存无法完全放下。序列化后的数据比较少,可以节省内存和磁盘的空间开销。同时该策略会优先尽量尝试将数据缓存在内存中,内存缓存不下才会写入磁盘。
- 通常不建议使用DISK_ONLY和后缀为_2的级别:因为完全基于磁盘文件进行数据的读写,会导致性能急剧降低,有时还不如重新计算一次所有RDD。后缀为_2的级别,必须将所有数据都复制一份副本,并发送到其他节点上,数据复制以及网络传输会导致较大的性能开销,除非是要求作业的高可用性,否则不建议使用。
结束语
边栏推荐
- Aerospace Hongtu information won the bid for the database system research and development project of a unit in Urumqi
- AE learning 02: timeline
- Shader_ Animation sequence frame
- 统计学习方法——感知机
- 如何在shell中实现 backspace
- Plate - forme de surveillance par étapes zabbix
- Numpy --- basic learning notes
- Xingruige database was shortlisted as the "typical solution for information technology application and innovation in Fujian Province in 2021"
- hellogolang
- Logback日志框架第三方jar包 免费获取
猜你喜欢
平衡二叉树(AVL)
Rongyun won the 2022 China Xinchuang digital office portal excellence product award!
C4D learning notes 2- animation - timeline and time function
Apache Doris刚“毕业”:为什么应关注这种SQL数据仓库?
记一次项目的迁移过程
Three. JS introductory learning notes 15: threejs frame animation module
Shipping companies' AI products are mature, standardized and applied on a large scale. CIMC, the global leader in port and shipping AI / container AI, has built a benchmark for international shipping
通知Notification使用全解析
深度之眼(七)——矩阵的初等变换(附:数模一些模型的解释)
山东老博会,2022中国智慧养老展会,智能化养老、适老科技展
随机推荐
分步式監控平臺zabbix
laravel中将session由文件保存改为数据库保存
laravel 是怎么做到运行 composer dump-autoload 不清空 classmap 映射关系的呢?
A link opens the applet code. After compilation, it is easy to understand
AE learning 02: timeline
Markdown formula editing tutorial
hellogolang
How can laravel get the public path
平衡二叉树(AVL)
应用程序和matlab的通信方式
Performance comparison of tidb for PostgreSQL and yugabytedb on sysbench
2022 the 4th China (Jinan) International Smart elderly care industry exhibition, Shandong old age Expo
2022第四届中国(济南)国际智慧养老产业展览会,山东老博会
Eye of depth (VII) -- Elementary Transformation of matrix (attachment: explanation of some mathematical models)
C4D learning notes 3- animation - animation rendering process case
用手机在通达信上开户靠谱吗?这样炒股有没有什么安全隐患
SPI master RX time out interrupt
Apache Doris just "graduated": why should we pay attention to this kind of SQL data warehouse?
What are compiled languages and interpreted languages?
Laravel constructor and middleware execution order