大数据开发目录

spark:

1.分布式计算

2.Spark组件简介

3.RDD(一)

4.RDD(二)

5.spark-submit

6.Schedulers

7.Spark SQL初识

8.spark sql

9.Spark Streaming集成

scala:

1.集合

 2.基础

 

https://note.youdao.com/ynoteshare1/index.html?id=4ff4ca6732c11c948aaab2cbd31f4c9f&type=note

https://note.youdao.com/ynoteshare1/index.html?id=d7f3bc3da4b312cfce5f87d9e6c05f58&type=note

https://note.youdao.com/ynoteshare1/index.html?id=cf2b0c01d6a73c9ab0b2d0e1bf1b7688&type=note

https://www.cnblogs.com/xinsiwei18/articles/14289967.html

总结

<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.11.8</version>
</dependency>
</dependencies>


<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> <testExcludes> <testExclude>/src/test/**</testExclude> </testExcludes> <encoding>utf-8</encoding> </configuration> </plugin> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>3.1.6</version> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.avro</groupId> <artifactId>avro-maven-plugin</artifactId> <version>1.7.7</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>schema</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/main/avro</sourceDirectory> <outputDirectory>${project.basedir}/src/main/java</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build>
原文地址:https://www.cnblogs.com/xinsiwei18/p/12984154.html