azure - 如何更改Azure数据工厂中的WindowStart WindowEnd?

标签 azure azure-data-factory

我的 Azure 数据工厂管道时区有问题。我想按计划创建一个定期复制作业,Datan 将每 15 分钟从 SQL Server 传输到 Azure 数据仓库。

整个复制过程正在运行,但 WindowStart 出现问题。时间表(管道)使用 UTC 时间,但我们在德国(UTC+1),因此 WindowStart 总是比我们本地时间晚 1 小时。

例如,我们本地时间是 16:00,我需要将数据从 15:45 更新到 16:00。但时间表将设置 windowstart=14:45windowend=15:00

有人知道吗?

enter image description here

enter image description here

最佳答案

有两个属性允许更改计划(请参阅 Dataset Availability ):

anchorDateTime: Defines the absolute position in time used by the scheduler to compute dataset slice boundaries.

offset: Timespan by which the start and end of all dataset slices are shifted.

你可以尝试一下这两个。我认为它们在 dataset/properties/availability 和 pipeline/properties/activities/scheduler 配置部分都受支持。

看起来线负偏移是支持的,所以你可以试试这个:

"availability": {
    "frequency": "Minute",
    "interval": 15,
    "offset": "-01:00:00"
}

关于azure - 如何更改Azure数据工厂中的WindowStart WindowEnd?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47163627/

相关文章:

azure - Rowkey.ToLower() 在 Azure 表上查询时抛出异常

azure - ADF 对行进行分组并将每个组存储在单独的文件中

azure - 从哪里开始使用 Azure 数据工厂

azure - 更改 Azure 数据工厂 v2 中的连接字符串链接服务

azure - 在 Azure 中迁移集成运行时

azure - ADF 翻转窗口触发器更新 startTime 属性行为

azure - 更改密码后无法使用 Visual Studio 2013 登录 Windows Azure 帐户

azure - 在 Azure 中将域名映射从 A 记录更改为 CNAME,无需停机

azure - 使用点到站点和 Azure AD 用户帐户,如何访问已加入 AzureAD 的 Azure VM?

.NET STANDARD 4.7.2 Azure 不记名 token 授权