我正在使用spark 2.2.0和pyspark2。
我创建了一个DataFrame df
,现在尝试添加一个新列"rowhash"
,它是DataFrame中特定列的sha2哈希。
例如,假设df
具有以下列:(column1, column2, ..., column10)
我在新列sha2((column2||column3||column4||...... column8), 256)
中需要"rowhash"
。
目前,我尝试使用以下方法:
1)使用了hash()
函数,但由于它提供了整数输出,因此没有太大用处
2)使用sha2()
函数进行了尝试,但失败了。
说columnarray
有我需要的列数组。
def concat(columnarray):
concat_str = ''
for val in columnarray:
concat_str = concat_str + '||' + str(val)
concat_str = concat_str[2:]
return concat_str
然后
df1 = df1.withColumn("row_sha2", sha2(concat(columnarray),256))
这失败,并显示“无法解决”错误。
感谢您的回答。由于我只需要哈希特定的列,因此我创建了这些列名称的列表(在hash_col中),并将您的函数更改为:
def sha_concat(row, columnarray):
row_dict = row.asDict() #transform row to a dict
concat_str = ''
for v in columnarray:
concat_str = concat_str + '||' + str(row_dict.get(v))
concat_str = concat_str[2:]
#preserve concatenated value for testing (this can be removed later)
row_dict["sha_values"] = concat_str
row_dict["sha_hash"] = hashlib.sha256(concat_str).hexdigest()
return Row(**row_dict)
然后通过:
df1.rdd.map(lambda row: sha_concat(row,hash_col)).toDF().show(truncate=False)
但是现在失败并显示错误:
UnicodeEncodeError: 'ascii' codec can't encode character u'\ufffd' in position 8: ordinal not in range(128)
我可以在其中一列中看到\ ufffd的值,所以我不确定是否有办法解决这个问题?
答案 0 :(得分:4)
您可以使用pyspark.sql.functions.concat_ws()
连接您的列,并使用pyspark.sql.functions.sha2()
获取SHA256哈希。
使用@gaw中的数据:
from pyspark.sql.functions import sha2, concat_ws
df = spark.createDataFrame(
[(1,"2",5,1),(3,"4",7,8)],
("col1","col2","col3","col4")
)
df.withColumn("row_sha2", sha2(concat_ws("||", *df.columns), 256)).show(truncate=False)
#+----+----+----+----+----------------------------------------------------------------+
#|col1|col2|col3|col4|row_sha2 |
#+----+----+----+----+----------------------------------------------------------------+
#|1 |2 |5 |1 |1b0ae4beb8ce031cf585e9bb79df7d32c3b93c8c73c27d8f2c2ddc2de9c8edcd|
#|3 |4 |7 |8 |57f057bdc4178b69b1b6ab9d78eabee47133790cba8cf503ac1658fa7a496db1|
#+----+----+----+----+----------------------------------------------------------------+
根据文档,您可以将0
或256
传递为sha2()
的第二个参数:
返回SHA-2系列哈希函数(SHA-224,SHA-256,SHA-384和SHA-512)的十六进制字符串结果。 numBits表示结果的所需位长,该位的值必须为224、256、384、512或0(等于256)。
函数concat_ws
带有分隔符和要连接的列的列表。我以||
作为分隔符,以df.columns
作为列列表。
我在这里使用所有列,但是您可以指定想要的列子集-在您的情况下为columnarray
。 (您需要使用*
打开列表的包装。)
答案 1 :(得分:0)
如果要在数据集的不同列中包含每个值的哈希,则可以通过map
将自行设计的函数应用于数据框的rdd。
import hashlib
test_df = spark.createDataFrame([
(1,"2",5,1),(3,"4",7,8),
], ("col1","col2","col3","col4"))
def sha_concat(row):
row_dict = row.asDict() #transform row to a dict
columnarray = row_dict.keys() #get the column names
concat_str = ''
for v in row_dict.values():
concat_str = concat_str + '||' + str(v) #concatenate values
concat_str = concat_str[2:]
row_dict["sha_values"] = concat_str #preserve concatenated value for testing (this can be removed later)
row_dict["sha_hash"] = hashlib.sha256(concat_str).hexdigest() #calculate sha256
return Row(**row_dict)
test_df.rdd.map(sha_concat).toDF().show(truncate=False)
结果如下:
+----+----+----+----+----------------------------------------------------------------+----------+
|col1|col2|col3|col4|sha_hash |sha_values|
+----+----+----+----+----------------------------------------------------------------+----------+
|1 |2 |5 |1 |1b0ae4beb8ce031cf585e9bb79df7d32c3b93c8c73c27d8f2c2ddc2de9c8edcd|1||2||5||1|
|3 |4 |7 |8 |cb8f8c5d9fd7165cf3c0f019e0fb10fa0e8f147960c715b7f6a60e149d3923a5|8||4||7||3|
+----+----+----+----+----------------------------------------------------------------+----------+