你好,
我的新磚。我試圖從S3獲取數據。流媒體的視頻tutoirals平台訪問通過訪問ID訪問密鑰和秘密。Beplay体育安卓版本然而,磚扔一個不同的選擇。我不知道怎麼填。你能解釋或直接我正確的教程嗎
#文件位置和類型
file_location = " {{upload_location}} "
file_type = " {{file_type}} "
# CSV選項
infer_schema = " {{infer_schema}} "
first_row_is_header = " {{first_row_is_header}} "
分隔符= "{{分隔符}}"
# CSV文件的應用選項。對於其他類型的文件,這些將被忽略。
df = spark.read.format file_type \
.option (“inferSchema”, infer_schema) \
.option(“標題”,first_row_is_header) \
.option \(“9”,分隔符)
.load (file_location)
顯示器(df)