-
Notifications
You must be signed in to change notification settings - Fork 215
/
pruebaPySpark.py
38 lines (28 loc) · 1.39 KB
/
pruebaPySpark.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from pyspark.sql.types import *
from pyspark.sql.functions import *
import time
startTimeQuery = time.clock()
from pyspark.sql import SparkSession
spark = SparkSession.\
builder.\
appName("prueba-pyspark").\
master("spark://spark-master:7077").\
config("spark.executor.memory", "512m").\
getOrCreate()
flightSchema = StructType([
StructField("DayofMonth", IntegerType(), False),
StructField("DayOfWeek", IntegerType(), False),
StructField("Carrier", StringType(), False),
StructField("OriginAirportID", IntegerType(), False),
StructField("DestAirportID", IntegerType(), False),
StructField("DepDelay", IntegerType(), False),
StructField("ArrDelay", IntegerType(), False),
]);
flights = spark.read.csv('hdfs://namenode:9000/data/flights/raw-flight-data.csv', schema=flightSchema, header=True)
flights = flights.dropDuplicates().fillna(value=0, subset=["ArrDelay", "DepDelay"])
airports = spark.read.csv('hdfs://namenode:9000/data/flights/airports.csv', header=True, inferSchema=True)
flightsByOrigin = flights.join(airports, flights.OriginAirportID == airports.airport_id).groupBy("city").count()
flightsByOrigin.repartition(1).write.csv(path="hdfs://namenode:9000/data/flightsByOrigin-procesado-spark", sep=",", header=True, mode="overwrite")
endTimeQuery = time.clock()
runTimeQuery = endTimeQuery - startTimeQuery
print("Tiempo de Ejecucion: %d", runTimeQuery)