Associate-Developer-Apache-Spark 試験問題 6

クラスターマネージャーの特徴は次のうちどれですか?
  • Associate-Developer-Apache-Spark 試験問題 7

    次のコード ブロックのうち、スキーマ fileSchema を使用して、filePath の場所にある寄木細工のファイルを DataFrame に読み取るのはどれですか?
  • Associate-Developer-Apache-Spark 試験問題 8

    次のコード ブロックは、DataFrametransactionsDf のすべての列と、DataFrametransactionsDf の列 predError の 2 乗値である追加の列 predErrorSquared を含む DataFrame を返します。
  • Associate-Developer-Apache-Spark 試験問題 9

    アダプティブ クエリ実行の機能ではないものは次のうちどれですか?
  • Associate-Developer-Apache-Spark 試験問題 10

    ProductId 列と itemId 列の DataFrame のtransactionDf と itemsDf の内部結合の結果、DataFrame の列値が空ではないレコードの数を返すには、以下に示すコード ブロックをどの順序で実行する必要がありますか?
    1. .filter(~isnull(col('value')))
    2. .count()
    3.transactionsDf.join(itemsDf,col("transactionsDf.productId")==col("itemsDf.itemId"))
    4.transactionsDf.join(itemsDf,transactionsDf.productId==itemsDf.itemId,how='inner')
    5. .filter(col('value').isnotnull())
    6. .sum(col('value'))