当前位置:网站首页>Spark SQL learning bullet 2
Spark SQL learning bullet 2
2022-07-05 02:26:00 【Several storehouses of cabbage white】
I'm busy every day, but I don't know what I've done
Small talk
I'm a little weak recently , Study without energy , Driving test appointment has been hanging on me . Cry and chirp
On the subject
Last time Data Frame yes Spark SQL At the heart of , This article introduces two ways to Spark SQL operation
Use Spark SQL Data analysis , There are two options , The first one is DSL Language , The second one is SQL Language . Of course , You can also use Hive SQL.
Use DSL To operate
First create Spark Session object
val sparkConf = new SparkConf().setMaster("local[*]").setAppName("Spark_Sql")
val sparkSession = SparkSession.builder().config(sparkConf).getOrCreate()
import sparkSession.implicits._
Use Data Frame Of API Analyze
// Read Json file , Return to one Data Frame object
val frame = sparkSession.read.json("date/people.json")
// View in the form of a table people Information
frame.show()
Take a look at the style of the table
By reading the json File creation Data Frame object ,Data Frame Provides flexibility , And powerful with optimization API, for example select,where,order by,group by ,limit,union Such operators operate ,Data Frame take SQL select Each component of the statement is encapsulated into the same name API, We can SQL Boy Get familiar more quickly Spark SQL. There is no need for RDD Can also perform data analysis .
Here are some examples to use Data Frame Of Api
- Output in tree format Data Frame Object structure information
frame.printSchema()
You can see ,root After the root node , The following fields are json The fields inside , These fields are also output in table structure . At the same time, the type of each field is also marked .
2. stay SQL Inside , The most frequently written sentence is Select, Most of them are queries , It can be said that almost all of them are queries . stay DSL There are also select, It said that ,Data Frame Of Api There is also a corresponding SQL keyword . Pass below select show
stay SQL It uses query statements
select name from surface
DSL It's like this in English
frame.select("name").show()
Why show,show The data will be displayed in table structure , If not show Method , What will it look like
println(frame.select("name"))
The type of this field displayed , At the beginning printSchema Method
What's shown above Select Method is just one of them , For the author , I don't think this way is good , I prefer the following way
frame.select($"name")
Take a look at the results
2. Use combination DSL Analyze
Look for ages greater than 25 And the next year's age and gender, in ascending order of age
frame.select($"name",$"age" +1,$"gender") .where($"age" > 25)
.orderBy(frame("age").asc) .show()
Take a look at the results
Of course! , You can also group and aggregate . stay SQL Inside is group by + sum, stay DSL in , It needs to be done first groupby Then use it directly when counting count
val frame = sparkSession.read.json("date/people.json")
// Group aggregation
frame.groupBy($"age" ).count().show()
The above example can be flexibly used Data Frame Provided Api Realized SQL Same operation , But if you put it in RDD Programming , For the operation of grouping aggregation , It needs to be done first groupbykey And then again map transformation .
Not to mention RDD Read Json Will be converted into a RDD[String], And then convert to other RDD Type of .
Spark SQL It can be parsed directly Json And infer the structural information (Schema)
If you don't want to learn DSL, It doesn't matter. , Here's how to use it SQL The query
perform SQL Inquire about
SparkSession Provides direct reading SQL Methods ,SQL Statements can be passed directly as strings to sql Method inside , And the object returned is Data Frame object . But I want to implement it like this , You need to Data Frame Object is registered as a temporary table , Then you can operate
val sparkConf = new SparkConf().setMaster("local[*]").setAppName("Spark_Sql")
val sparkSession = SparkSession.builder().config(sparkConf).getOrCreate()
import sparkSession.implicits._
// Read json file
val frame = sparkSession.read.json("date/people.json")
// Register as a temporary form
frame.createOrReplaceTempView("people")
// call Spark Session Of SQL Interface , The temporary table is SQL Inquire about
sparkSession.sql("select age,count(*) from people group by age").show()
Take a look at the results
You need to register as a temporary table , Only then can we carry on SQL Inquire about . But there is a problem with the temporary table , This Spark Session At the end , This watch won't work , Therefore, there is a comprehensive temporary table
Comprehensive temporary table
The scope of the comprehensive temporary table is a Spark All sessions within the application , Will persist , Share... In all sessions . Let's demonstrate
val sparkConf = new SparkConf().setMaster("local[*]").setAppName("Spark_Sql")
val sparkSession = SparkSession.builder().config(sparkConf).getOrCreate()
import sparkSession.implicits._
// Read json file
val frame = sparkSession.read.json("date/people.json")
// Register as a global table
frame.createOrReplaceGlobalTempView("people")
// The query
sparkSession.sql("select name,age from people").show()
// Create a new session
sparkSession.newSession().sql("select name,age from people").show()
Be careful , Wrong.
Look at the error message
Can't find people This global table . We have set up , Why is there no such table ?
Referencing a global table requires global_temp Are identified . This global_temp It is equivalent to the database of the system , The global table is in this database .
Now that you know the reason for the mistake , Let's take a look at the correct code and results
val sparkConf = new SparkConf().setMaster("local[*]").setAppName("Spark_Sql")
val sparkSession = SparkSession.builder().config(sparkConf).getOrCreate()
import sparkSession.implicits._
// Read json file
val frame = sparkSession.read.json("date/people.json")
// Register as a global table
frame.createOrReplaceGlobalTempView("people")
// The query
sparkSession.sql("select name,age from global_temp.people").show()
// New conversation
sparkSession.newSession().sql("select name,age from global_temp.people").show()
No report error , And there are results
summary
What will be updated tomorrow is RDDS and Data Frame and Data Set The relationship and transformation between .
I didn't write much today , Also quite few , Tomorrow I will spend an afternoon writing a long article
Today's subject 4 is still being accepted
Today is also a day to miss her
边栏推荐
- Open source SPL optimized report application coping endlessly
- . Net starts again happy 20th birthday
- Summary of regularization methods
- 【LeetCode】501. Mode in binary search tree (2 wrong questions)
- runc hang 导致 Kubernetes 节点 NotReady
- 【LeetCode】111. Minimum depth of binary tree (2 brushes of wrong questions)
- Serious bugs with lifted/nullable conversions from int, allowing conversion from decimal
- openresty ngx_lua执行阶段
- Video display and hiding of imitation tudou.com
- 179. Maximum number - sort
猜你喜欢
CAM Pytorch
Missile interception -- UPC winter vacation training match
"C zero foundation introduction hundred knowledge and hundred cases" (72) multi wave entrustment -- Mom shouted for dinner
如何做一个炫酷的墨水屏电子钟?
The most powerful new household god card of Bank of communications. Apply to earn 2100 yuan. Hurry up if you haven't applied!
Yuan universe also "real estate"? Multiple second-hand trading websites block metauniverse keywords
Application and Optimization Practice of redis in vivo push platform
The application and Optimization Practice of redis in vivo push platform is transferred to the end of metadata by
Naacl 2021 | contrastive learning sweeping text clustering task
Stored procedure and stored function in Oracle
随机推荐
Hmi-30- [motion mode] the module on the right side of the instrument starts to write
Video display and hiding of imitation tudou.com
丸子百度小程序详细配置教程,审核通过。
Variables in postman
【LeetCode】106. Construct binary tree from middle order and post order traversal sequence (wrong question 2)
Serious bugs with lifted/nullable conversions from int, allowing conversion from decimal
Redis distributed lock, lock code logic
A tab Sina navigation bar
Restful fast request 2022.2.1 release, support curl import
JVM's responsibility - load and run bytecode
Binary tree traversal - middle order traversal (golang)
[机缘参悟-38]:鬼谷子-第五飞箝篇 - 警示之一:有一种杀称为“捧杀”
Prometheus monitors the correct posture of redis cluster
Yuan universe also "real estate"? Multiple second-hand trading websites block metauniverse keywords
【LeetCode】110. Balanced binary tree (2 brushes of wrong questions)
Can you really learn 3DMAX modeling by self-study?
d3js小记
Stored procedure and stored function in Oracle
Practice of tdengine in TCL air conditioning energy management platform
When the low alcohol race track enters the reshuffle period, how can the new brand break the three major problems?