有没有办法配置web平台安装程序的解压缩行为? 我正在关注此example:
但是总是会尝试覆盖现有文件,但我想跳过提取而不提示文件是否已存在。
我无法在webpi schema中找到有关unzip.exe
标记的任何文档,我正在考虑的替代方法就是调用<cmdline>
(或第三方压缩工具)而不覆盖@udf
def get_distance(x, y):
dfDistPerc = hiveContext.sql("select column3 as column3, \
from tab \
where column1 = '" + x + "' \
and column2 = " + y + " \
limit 1")
result = dfDistPerc.select("column3").take(1)
return result
df = df.withColumn(
"distance",
lit(get_distance(df["column1"], df["column2"]))
)
标记下的标记,但如果有更简单的解决方案,我更喜欢