如何使用 Scala 将表更快地加载到 Spark 数据帧中?
我编写了一个代码,该代码应该使用 Spark 将许多表(通过 LTables
方法列出)加载到 Scala 中的不同数据帧中。 这是我的代码:
LTables.iterator.foreach{
Table=> TableProcessor.execute(sparkSession,filterTenant,Table)
if (Table.TableDf.count()>0) {
GenerateCsv.execute(sparkSession, Table.TableDf,Table.OutputFilename, filterTenant)
}
}
在 foreach 循环中,我处理 TableProcessor.execute
进行 SQL 查询并将结果放入数据帧中并处理过滤,然后 GenerateCsv
只是将过滤后的数据加载到 csv 中。
问题是,我有很多表需要处理大量数据,所以整个过程非常慢(我尝试使用 160 个表的列表) 我知道 Spark 非常适合处理大数据帧,但不太适合处理大量数据帧,但我必须使用 SQL 查询单独获取表。
如果您有解决方案或建议来帮助我使此代码运行得更快,那就太好了。
谢谢你的帮助
I made a code that is supposed to load many tables (listed through the method LTables
) into differents dataframes in Scala using Spark.
Here is my code:
LTables.iterator.foreach{
Table=> TableProcessor.execute(sparkSession,filterTenant,Table)
if (Table.TableDf.count()>0) {
GenerateCsv.execute(sparkSession, Table.TableDf,Table.OutputFilename, filterTenant)
}
}
In my foreach loop, I process TableProcessor.execute
that makes an SQL query and put the result into a dataframe and process a filtering, and then GenerateCsv
just load filtered data into a csv.
The thing is, I have a lot of tables with large amount of data to process, so the full process is very slow (I tryed with a list of 160 tables)
I know Spark is great to process a big dataframe and not that great to deal with a lot of dataframes, but I have to get tables separatly using SQL queries.
If you have solution or advice to help me make this code run faster, it would be great.
Thank's for helping
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论