当前位置:网站首页>Basic configuration and use of spark
Basic configuration and use of spark
2022-07-06 17:39:00 【Bald Second Senior brother】
Catalog
Content :
spark Configuration of the three modes and spark The basic use method
Spark Three models of
Local Pattern ( Local mode )
local Set up Master Methods :local( Default to a thread ),local[k]( Specified number of threads ),local[*]( Most used cpu Set thread ); The thread executing is Worker
To configure :
local There is no need to modify the configuration file ,Spark After installation, you can use it directly local Model to calculate and analyze data
Standalone Pattern
Operation mode and hadoop Of resourcemanage Very similar .
The configuration file
Modify this file , If you don't change the name of his reference document
Modify the content :
Add the name of the host , Follow hadoop The same is for group and cluster services
This file also needs to be modified , If nothing, change the reference file
Configure the content
This is designated to run on that machine master, And specify the port number
The next step is to send the configuration file to slaves Each host in
This file modification specifies java The running address of
History server
To add a historical server, you need to modify this configuration file and add the following contents
Be careful : Take out the notes
As above, the configuration file needs to be modified
stay hdps Created in directory file , And start up hdfs
HA
Modify the configuration file
Add content
Appoint zookeeper Location of , And hdfs At the same time, comment out
To avoid conflict
Then distribute the configuration file
Yarn Pattern
effect : You don't need to build Spark Cluster of
The configuration file :
1.
modify hadoop in yarn Configuration file for
Modify the content :
The function of this configuration is to turn off operations with excessive memory , Otherwise, when the computing memory exceeds a certain limit spark It will turn off automatically
2. modify
Modify the content :
Be careful
Before using different modes, you should comment or delete the contents of other modes in the configuration file .
Use of official cases
Pay attention to each different mode ,master The content of is different , There will be some differences in other places
api Use
object WordCount { def main(args: Array[String]): Unit = { //WordCount Development //local Pattern // establish sparkConf object // Set up spark Deployment environment for val config = new SparkConf().setMaster("local[*]").setAppName("WordCount") // establish spark Context object val sc=new SparkContext(config) // Read the file , Read line by line ( Local search file:///xxxxx) val lines = sc.textFile("file:///opt/module/ha/spark/in") // Decompose the data into words one by one val words = lines.flatMap(_.split(" ")) // Transformation structure val wordToOne = words.map((_, 1)) // Group aggregation val wordToSum = wordToOne.reduceByKey(_ + _) // Printout println(wordToSum.collect()) } }
summary :
Today I learned how to spark At the same time, the official use of spark Three modes of and their configuration files ,spark The configuration file of is relatively simple, but it is inconvenient that it cannot coexist , At the same time, the use method of his official operation is too complex to be easy to remember , It is estimated that you still need to check the document for later use . Next is in java It is also cumbersome when used on , But it is much simpler than the command line
边栏推荐
- Error: Publish of Process project to Orchestrator failed. The operation has timed out.
- C# WinForm系列-Button简单使用
- Essai de pénétration du Code à distance - essai du module b
- Program counter of JVM runtime data area
- Xin'an Second Edition: Chapter 26 big data security demand analysis and security protection engineering learning notes
- JVM garbage collector part 1
- Case: check the empty field [annotation + reflection + custom exception]
- C WinForm series button easy to use
- [reverse primary] Unique
- Kali2021 installation and basic configuration
猜你喜欢
基于LNMP部署flask项目
02个人研发的产品及推广-短信平台
信息与网络安全期末复习(完整版)
JVM garbage collector part 1
C WinForm series button easy to use
C # nanoframework lighting and key esp32
Automatic operation and maintenance sharp weapon ansible Foundation
Chrome prompts the solution of "your company management" (the startup page is bound to the company's official website and cannot be modified)
自动答题 之 Selenium测试直接运行在浏览器中,就像真正的用户在操作一样。
【MySQL入门】第三话 · MySQL中常见的数据类型
随机推荐
CTF reverse entry question - dice
1. Introduction to JVM
沉淀下来的数据库操作类-C#版(SQL Server)
CentOS7上Redis安装
Application service configurator (regular, database backup, file backup, remote backup)
自动化运维利器ansible基础
基于Infragistics.Document.Excel导出表格的类
【MySQL入门】第三话 · MySQL中常见的数据类型
Start job: operation returned an invalid status code 'badrequst' or 'forbidden‘
Distributed (consistency protocol) leader election (dotnext.net.cluster implements raft election)
Solr appears write Lock, solrexception: could not get leader props in the log
Huawei certified cloud computing hica
[elastic] elastic lacks xpack and cannot create template unknown setting index lifecycle. name index. lifecycle. rollover_ alias
Wordcloud colormap color set and custom colors
[reverse primary] Unique
全网最全tcpdump和Wireshark抓包实践
List集合数据移除(List.subList.clear)
Detailed explanation of data types of MySQL columns
微信防撤回是怎么实现的?
MySQL error reporting solution