1

Azure 数据工厂中的通用数据模型的内联数据集存在问题。简单地说,ADF 中的所有内容似乎都连接并从我的清单文件和实体定义中读取——但是当我单击“数据预览”按钮时,我总是得到“无输出数据”——我觉得这很奇怪,因为可以完美地读取数据使用 CDM 连接器连接 PowerBI 中的相同文件时。我在做什么错意味着数据没有读入数据预览和映射数据流中的后续转换?

我的清单文件如下所示(引用示例实体):

{
    "$schema": "CdmManifest.cdm.json",
    "jsonSchemaSemanticVersion": "1.0.0",
    "imports": [
        {
            "corpusPath": "cdm:/foundations.cdm.json"
        }
    ],
    "manifestName": "manifestExample",
    "explanation": "example",
    "entities": [
        {
            "type": "LocalEntity",
            "entityName": "Entityname",
            "entityPath": "folder/EntityName.cdm.json/Entityname",
            "dataPartitions": [
                {
                    "location": "folder/data/Entityname/Entityname.csv",
                    "exhibitsTraits": [
                        {
                            "traitReference": "is.partition.format.CSV",
                            "arguments": [
                                {
                                    "name": "columnHeaders",
                                    "value": "true"
                                },
                                {
                                    "name": "delimiter",
                                    "value": ","
                                }
                            ]
                        }
                    ]
                }
            ]
        },
...
4

1 回答 1

0

我有完全相同的输出消息“无输出数据”。我正在使用 json 而不是清单。如果我下沉源它不会移动数据但没有错误。我的 CDM 源自 PowerBI 数据流。PowerApps 工作正常,但历史记录和特权使其无用。

编辑:在微软关于预览功能的信息中,我们可以找到这个 屏幕。我会猜测 ADS 来源的 CDM 与源自 Power BI 的来源不同。

于 2020-09-03T08:49:42.523 回答