【发布时间】:2021-09-16 08:42:54
【问题描述】:
我正在尝试在通配符路径数据流表达式中找到与此等效的方法。我在我的数据工厂动态查询中使用它
@concat( pipeline().parameters.source,
'/dirName/year=',
formatDateTime(utcnow(), 'yyyy'),
'/month=',
formatDateTime(utcnow(), 'MM'),
'/day=',
formatDateTime(utcnow(), 'dd')
)
我以为会是这样的
concat( $source,'/dirName/year=',toTimestamp(currentUTC(), 'YYYY', UTC),
'/month=',
toTimestamp(currentUTC(), 'MM', UTC),
'/day=',
toTimestamp(currentUTC(), 'dd', UTC)
)
我正在尝试做的是来自使用 UTC 日期创建的 blob 路径 示例 废话/年=2021/月=07/日=05/.csv
【问题讨论】:
标签: azure-data-factory azure-data-factory-2 nsregularexpression azure-data-factory-pipeline