所以我试图加载 csv 文件来推断自定义架构,但每次我最终都会出现以下错误:
Project_Bank.csv不是镶木地板文件。 尾部的预期幻数 [80, 65, 82, 49] 但找到 [110, 111, 13, 10]
这就是我的程序和我的csv文件条目的样子,
年龄;工作;婚姻;教育;违约;平衡;住房;贷款;联系;日;月;期间;运动;pdays;以前;结果;y 58;管理;已婚;第三的;编号:2143;是的;不;未知;5;五月;261;1;-1;0;未知;不 44;技术员;单;二 次;29号;是的;不;未知;5;五月;151;1;-1;0;未知;不 33;企业家;已婚;二 次;2号;是的;是的;未知;5;五月;76;1;-1;0;未知;不
我的代码 :
$spark-shell --packages com.databricks:spark-csv_2.10:1.5.0
val sqlContext = new org.apache.spark.sql.SQLContext(sc)
import org.apache.spark.sql.types._
import org.apache.spark.sql.SQLContext
import sqlContext.implicits._
import org.apache.spark.sql.types.{StructType, StructField, StringType, IntegerType}
val bankSchema = StructType(Array(
StructField("age", IntegerType, true),
StructField("job", StringType, true),
StructField("marital", StringType, true),
StructField("education", StringType, true),
StructField("default", StringType, true),
StructField("balance", IntegerType, true),
StructField("housing", StringType, true),
StructField("loan", StringType, true),
StructField("contact", StringType, true),
StructField("day", IntegerType, true),
StructField("month", StringType, true),
StructField("duration", IntegerType, true),
StructField("campaign", IntegerType, true),
StructField("pdays", IntegerType, true),
StructField("previous", IntegerType, true),
StructField("poutcome", StringType, true),
StructField("y", StringType, true)))
val df = sqlContext.
read.
schema(bankSchema).
option("header", "true").
option("delimiter", ";").
load("/user/amit.kudnaver_gmail/hadoop/project_bank/Project_Bank.csv").toDF()
df.registerTempTable("people")
df.printSchema()
val distinctage = sqlContext.sql("select distinct age from people")
任何建议,为什么在推送正确的架构后无法在此处使用csv文件。提前感谢您的建议。
谢谢 阿米特·
这里的问题是数据框在处理它时需要 Parquet 文件。为了处理CSV中的数据。在这里你可以做什么。
首先,从数据中删除标题行。
58;management;married;tertiary;no;2143;yes;no;unknown;5;may;261;1;-1;0;unknown;no
44;technician;single;secondary;no;29;yes;no;unknown;5;may;151;1;-1;0;unknown;no
33;entrepreneur;married;secondary;no;2;yes;yes;unknown;5;may;76;1;-1;0;unknown;no
接下来,我们编写以下代码来读取数据。
创建案例类
case class BankSchema(age: Int, job: String, marital:String, education:String, default:String, balance:Int, housing:String, loan:String, contact:String, day:Int, month:String, duration:Int, campaign:Int, pdays:Int, previous:Int, poutcome:String, y:String)
从 HDFS 读取数据并解析它
val bankData = sc.textFile("/user/myuser/Project_Bank.csv").map(_.split(";")).map(p => BankSchema(p(0).toInt, p(1), p(2),p(3),p(4), p(5).toInt, p(6), p(7), p(8), p(9).toInt, p(10), p(11).toInt, p(12).toInt, p(13).toInt, p(14).toInt, p(15), p(16))).toDF()
然后注册表并执行查询。
bankData.registerTempTable("bankData")
val distinctage = sqlContext.sql("select distinct age from bankData")
这是输出的样子
+---+
|age|
+---+
| 33|
| 44|
| 58|
+---+
这里的预期文件格式是csv
但根据错误,它正在寻找parquet
文件格式。
这可以通过明确提及文件格式来克服,如下所示(共享的问题中缺少),因为如果我们不指定文件格式,那么默认情况下它需要Parquet
格式。
根据 Java 代码版本(示例示例):
Dataset<Row> resultData = session.read().format("csv")
.option("sep", ",")
.option("header", true)
.option("mode", "DROPMALFORMED")
.schema(definedSchema)
.load(inputPath);
在这里,可以使用java class (ie. POJO class)
或使用StructType
来定义架构,如前所述。 而inputPath是输入csv
文件的路径。