Azure Data Factory Wrangling data flow - Unexpected Error when connecting datasource

Romain Pham 26 Reputation points
2020-12-21T06:44:33.31+00:00

Dear Tech Community,

I am trying to use Wrangling Data Flow to perform transformation on a csv file host in my azure blob storage.
However every time I add the source data set that target my csv file and hit ok I receive the following message when power query online is launch:

Please specify how to connect.

I then click on Configure Connection

I have then 3 choice for Connection Kind: Anonymous, Basic, Organizational Account

Anonymous and Organizational Account (when clicking Sign In) always give the same error:

We encountered an unexpected error.

section Section1;
shared ABC_Finance = let
AdfDoc = Web.Contents("https://********.blob.core.windows.net/data/ABC/ABC_Finance1.txt?sv=2018-03-28&sig=xlEVzRExQJ8hgVc%2B0ZOSpXJpV73bgrGqTJjGnnfYjkc%3D&spr=https&se=2020-12-22T06%3A20%3A52Z&srt=sco&ss=bf&sp=rwl"),
Csv = Csv.Document(AdfDoc, [Delimiter = ",", Encoding = TextEncoding.Utf8, QuoteStyle = QuoteStyle.Csv])
in
Csv;
shared UserQuery = let
Source = ABC_Finance
in
Source;

I don't know what am I doing wrong. All those data and transformation are happening in the same Storage Account.

if someone can help thanks.

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
11,623 questions
Community Center Not monitored
{count} votes

Accepted answer
  1. kekiran-MSFT 391 Reputation points Microsoft Employee Moderator
    2021-01-07T05:29:04.207+00:00

    Hi @Romain Pham ,

    Thank you for your continued patience while we were working on this issue.

    Your data factory is hosted in central France region and during the investigation process our product team identified that there was some issue with the underlying infra in the region due to which Wrangling data flow was not working as expected.

    Fix has been deployed for the same and we would like you to test and confirm.

    • Please accept an answer if correct. Original posters help the community find answers faster by identifying the correct answer. Here is how.
    • Want a reminder to come back and check responses? Here is how to subscribe to a notification.
    1 person found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. Romain Pham 26 Reputation points
    2020-12-23T03:06:50.88+00:00

    Dear @Anonymous ,

    Thanks for your feedback please find below screenshot of the different message I receive

    50529-configure-connection.png
    50626-configure-connection-2.png
    50569-unexpected-error-when-sign-in.png
    50614-unexepxted-error.png

    2) I haven't done any transformation yet below the sample query:
    let
    AdfDoc = Web.Contents("https://cndatafactorysa.blob.core.windows.net/tmrdata/test.txt?sv=2018-03-28&sig=%2Ft%2BGLsVfetK4eaaAgq%2FsZjRGEEuaUYij7LZolUKIkTA%3D&spr=https&se=2020-12-24T02%3A57%3A40Z&srt=sco&ss=bf&sp=rwl"),
    Csv = Csv.Document(AdfDoc, [Delimiter = ",", Encoding = TextEncoding.Utf8, QuoteStyle = QuoteStyle.Csv])
    in
    Csv

    3) Sample data

    50635-test.txt

    4)There is no pipeline failed i simply connot see the file in the power query hence cannot do any transformation

    5) I can copy the file without problem using copy activity i just have this issue when trying to use power query online


  2. Andrea Cuneo 6 Reputation points
    2021-04-21T10:18:45.877+00:00

    Having the same issue in West Europe.
    The other difference is that we're using ADLS Gen2 instead of BlobStorage. The Storage is linked with Service Principal Account.

    89876-image.png

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.