本文簡要介紹
pyspark.sql.functions.spark_partition_id
的用法。用法:
pyspark.sql.functions.spark_partition_id()
分區 ID 列。
版本 1.6.0 中的新函數。
注意:
這是不確定的,因為它取決於數據分區和任務調度。
例子:
>>> df.repartition(1).select(spark_partition_id().alias("pid")).collect() [Row(pid=0), Row(pid=0)]
相關用法
- Python pyspark split用法及代碼示例
- Python pyspark session_window用法及代碼示例
- Python pyspark second用法及代碼示例
- Python pyspark slice用法及代碼示例
- Python pyspark size用法及代碼示例
- Python pyspark struct用法及代碼示例
- Python pyspark shiftleft用法及代碼示例
- Python pyspark schema_of_csv用法及代碼示例
- Python pyspark sequence用法及代碼示例
- Python pyspark sort_array用法及代碼示例
- Python pyspark sha1用法及代碼示例
- Python pyspark substring用法及代碼示例
- Python pyspark shiftright用法及代碼示例
- Python pyspark shiftrightunsigned用法及代碼示例
- Python pyspark sql用法及代碼示例
- Python pyspark sha2用法及代碼示例
- Python pyspark substring_index用法及代碼示例
- Python pyspark schema_of_json用法及代碼示例
- Python pyspark sentences用法及代碼示例
- Python pyspark soundex用法及代碼示例
- Python pyspark shuffle用法及代碼示例
- Python pyspark create_map用法及代碼示例
- Python pyspark date_add用法及代碼示例
- Python pyspark DataFrame.to_latex用法及代碼示例
- Python pyspark DataStreamReader.schema用法及代碼示例
注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.sql.functions.spark_partition_id。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。