Skip to content

Dataflows Gen2

deploy_all_dataflows_gen2(workspace, path, start_path=None)

Deploy all dataflows_gen2 to workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
path str

The path to the dataflows_gen2.

required
start_path Optional[str]

The starting path for folder creation.

None
Source code in src/pyfabricops/helpers/dataflows_gen2.py
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
def deploy_all_dataflows_gen2(
    workspace: str,
    path: str,
    start_path: Optional[str] = None,
) -> None:
    """
    Deploy all dataflows_gen2 to workspace.

    Args:
        workspace (str): The name or ID of the workspace.
        path (str): The path to the dataflows_gen2.
        start_path (Optional[str]): The starting path for folder creation.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    dataflows_gen2_paths = list_paths_of_type(path, 'Dataflow')

    for path_ in dataflows_gen2_paths:

        display_name = extract_display_name_from_platform(path_)
        if display_name is None:
            return None

        item_id = resolve_dataflow_gen2(workspace_id, display_name)

        folder_path_string = extract_middle_path(path_, start_path=start_path)
        folder_id = create_folders_from_path_string(
            workspace_id, folder_path_string
        )

        item_definition = pack_item_definition(path_)

        if item_id is None:
            create_dataflow_gen2(
                workspace_id,
                display_name=display_name,
                item_definition=item_definition,
                folder=folder_id,
            )

        else:
            update_dataflow_gen2_definition(
                workspace_id,
                item_id,
                item_definition=item_definition,
            )

    logger.success(
        f'All dataflows_gen2 were deployed to workspace "{workspace}" successfully.'
    )
    return None

deploy_dataflow_gen2(workspace, path, start_path=None, description=None, df=True)

Deploy a dataflow_gen2 to workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
path str

The path to the dataflow_gen2.

required
start_path Optional[str]

The starting path for folder creation.

None
description Optional[str]

Description for the dataflow_gen2.

None
df Optional[bool]

If True, returns a DataFrame, otherwise returns a dictionary.

True

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The deployed dataflow_gen2 or None if deployment fails.

Source code in src/pyfabricops/helpers/dataflows_gen2.py
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
@df
def deploy_dataflow_gen2(
    workspace: str,
    path: str,
    start_path: Optional[str] = None,
    description: Optional[str] = None,
    df: Optional[bool] = True,
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Deploy a dataflow_gen2 to workspace.

    Args:
        workspace (str): The name or ID of the workspace.
        path (str): The path to the dataflow_gen2.
        start_path (Optional[str]): The starting path for folder creation.
        description (Optional[str]): Description for the dataflow_gen2.
        df (Optional[bool]): If True, returns a DataFrame, otherwise returns a dictionary.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The deployed dataflow_gen2 or None if deployment fails.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    display_name = extract_display_name_from_platform(path)
    if display_name is None:
        return None

    item_id = resolve_dataflow_gen2(workspace_id, display_name)

    folder_path_string = extract_middle_path(path, start_path=start_path)
    folder_id = create_folders_from_path_string(
        workspace_id, folder_path_string
    )

    item_definition = pack_item_definition(path)

    if item_id is None:
        return create_dataflow_gen2(
            workspace_id,
            display_name=display_name,
            item_definition=item_definition,
            description=description,
            folder=folder_id,
            df=False,
        )

    else:
        return update_dataflow_gen2_definition(
            workspace_id,
            item_id,
            item_definition=item_definition,
            df=False,
        )

export_all_dataflows_gen2(workspace, path)

Export a dataflow_gen2 to path.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
path Union[str, Path]

The path to export to.

required
Source code in src/pyfabricops/helpers/dataflows_gen2.py
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
def export_all_dataflows_gen2(
    workspace: str,
    path: Union[str, Path],
) -> None:
    """
    Export a dataflow_gen2 to path.

    Args:
        workspace (str): The name or ID of the workspace.
        path (Union[str, Path]): The path to export to.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    items = list_dataflows_gen2(workspace_id, df=False)
    if items is None:
        return None

    for item in items:
        try:
            folder_path = resolve_folder_from_id_to_path(
                workspace_id, item['folderId']
            )
        except:
            logger.info(
                f'{item["displayName"]}.Dataflow is not inside a folder.'
            )
            folder_path = None

        if folder_path is None:
            item_path = Path(path) / (item['displayName'] + '.Dataflow')
        else:
            item_path = (
                Path(path) / folder_path / (item['displayName'] + '.Dataflow')
            )
        os.makedirs(item_path, exist_ok=True)

        definition = get_dataflow_gen2_definition(workspace_id, item['id'])
        if definition is None:
            return None

        unpack_item_definition(definition, item_path)

    logger.success(f'All dataflows_gen2 were exported to {path} successfully.')
    return None

export_dataflow_gen2(workspace, dataflow_gen2, path)

Export a dataflow_gen2 to path.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
dataflow_gen2 str

The name or ID of the dataflow_gen2.

required
path Union[str, Path]

The path to export to.

required
Source code in src/pyfabricops/helpers/dataflows_gen2.py
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
def export_dataflow_gen2(
    workspace: str,
    dataflow_gen2: str,
    path: Union[str, Path],
) -> None:
    """
    Export a dataflow_gen2 to path.

    Args:
        workspace (str): The name or ID of the workspace.
        dataflow_gen2 (str): The name or ID of the dataflow_gen2.
        path (Union[str, Path]): The path to export to.
    """
    workspace_id = resolve_workspace(workspace)
    if workspace_id is None:
        return None

    item = get_dataflow_gen2(workspace_id, dataflow_gen2, df=False)
    try:
        folder_path = resolve_folder_from_id_to_path(
            workspace_id, item['folderId']
        )
    except:
        logger.info(f'{item["displayName"]}.Dataflow is not inside a folder.')
        folder_path = None

    if folder_path is None:
        item_path = Path(path) / (item['displayName'] + '.Dataflow')
    else:
        item_path = (
            Path(path) / folder_path / (item['displayName'] + '.Dataflow')
        )
    os.makedirs(item_path, exist_ok=True)

    definition = get_dataflow_gen2_definition(workspace_id, item['id'])
    if definition is None:
        return None

    unpack_item_definition(definition, item_path)

    logger.success(
        f'`{item["displayName"]}.Dataflow` was exported to {item_path} successfully.'
    )
    return None

extract_dataflow_gen2_variables(path)

Extract variables from a Dataflow Gen2 mashup.pq file, identifying each destination separately.

Parameters:

Name Type Description Default
path str

Path to the Dataflow gen2

required

Returns:

Type Description
List[Dict[str, Any]]

List of dictionaries containing the extracted variables for each destination

Source code in src/pyfabricops/helpers/dataflows_gen2.py
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
def extract_dataflow_gen2_variables(path: str) -> List[Dict[str, Any]]:
    """
    Extract variables from a Dataflow Gen2 mashup.pq file, identifying each destination separately.

    Args:
        path (str): Path to the Dataflow gen2

    Returns:
        (List[Dict[str, Any]]): List of dictionaries containing the extracted variables for each destination
    """
    path = Path(path) / 'mashup.pq'

    with open(path, 'r', encoding='utf-8') as f:
        content = f.read()

    variables = []

    # Pattern to find DataDestination sections
    # Look for shared QueryName_DataDestination = let
    destination_pattern = (
        r'shared\s+(\w+)_DataDestination\s*=\s*let(.*?)in\s*\w+;'
    )
    destination_matches = re.findall(destination_pattern, content, re.DOTALL)

    for query_name, destination_content in destination_matches:
        param_dict = {
            'destination_name': f'{query_name}_DataDestination',
            'query_name': query_name,
        }

        # Extract workspaceId
        workspace_pattern = r'workspaceId\s*=\s*"([a-f0-9-]+)"'
        workspace_match = re.search(workspace_pattern, destination_content)
        if workspace_match:
            param_dict['workspaceId'] = workspace_match.group(1)

        # Extract lakehouseId
        lakehouse_pattern = r'lakehouseId\s*=\s*"([a-f0-9-]+)"'
        lakehouse_match = re.search(lakehouse_pattern, destination_content)
        if lakehouse_match:
            param_dict['lakehouseId'] = lakehouse_match.group(1)
            param_dict['destination_type'] = 'Lakehouse'

        # Extract warehouseId
        warehouse_pattern = r'warehouseId\s*=\s*"([a-f0-9-]+)"'
        warehouse_match = re.search(warehouse_pattern, destination_content)
        if warehouse_match:
            param_dict['warehouseId'] = warehouse_match.group(1)
            param_dict['destination_type'] = 'Warehouse'

        # Extract semanticModelId (if present)
        semantic_pattern = r'semanticModelId\s*=\s*"([a-f0-9-]+)"'
        semantic_match = re.search(semantic_pattern, destination_content)
        if semantic_match:
            param_dict['semanticModelId'] = semantic_match.group(1)
            param_dict['destination_type'] = 'SemanticModel'

        # Only add if we found at least one ID parameter
        if any(key.endswith('Id') for key in param_dict.keys()):
            variables.append(param_dict)

    return variables

get_all_dataflows_gen2_config(workspace)

Get dataflows_gen2 config from a workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID from the workspace.

required

Returns:

Type Description
Union[Dict[str, Any], None]

The dict config of all dataflows_gen2 in the workspace

Source code in src/pyfabricops/helpers/dataflows_gen2.py
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
def get_all_dataflows_gen2_config(
    workspace: str,
) -> Union[Dict[str, Any], None]:
    """
    Get dataflows_gen2 config from a workspace.

    Args:
        workspace (str): The name or ID from the workspace.

    Returns:
        (Union[Dict[str, Any], None]): The dict config of all dataflows_gen2 in the workspace
    """
    items = list_dataflows_gen2(workspace, df=False)

    if items is None:
        return None

    config = {}

    for item in items:

        item_data = get_dataflow_gen2(workspace, item['id'], df=False)

        config[item['displayName']] = {
            'id': item['id'],
            'description': item.get('description', None),
            'folder_id': ''
            if item.get('folderId') is None or pd.isna(item.get('folderId'))
            else item['folderId'],
        }

    return config

get_dataflow_gen2_config(workspace, dataflow_gen2)

Get a specific dataflow_gen2 config from a workspace.

Parameters:

Name Type Description Default
workspace str

The name or ID of the workspace.

required
dataflow_gen2 str

The name or ID of the dataflow_gen2.

required

Returns:

Type Description
Union[Dict[str, Any], None]

The dict config from the dataflow_gen2.

Source code in src/pyfabricops/helpers/dataflows_gen2.py
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
def get_dataflow_gen2_config(
    workspace: str, dataflow_gen2: str
) -> Union[Dict[str, Any], None]:
    """
    Get a specific dataflow_gen2 config from a workspace.

    Args:
        workspace (str): The name or ID of the workspace.
        dataflow_gen2 (str): The name or ID of the dataflow_gen2.

    Returns:
        (Union[Dict[str, Any], None]): The dict config from the dataflow_gen2.
    """
    item = dataflow_gen2
    item_data = get_dataflow_gen2(workspace, item, df=False)

    if item_data is None:
        return None

    else:
        config = {}
        config = config[item_data.get('displayName')] = {}

        config = {
            'id': item_data['id'],
            'description': item_data.get('description', None),
            'folder_id': ''
            if item_data.get('folderId') is None
            or pd.isna(item_data.get('folderId'))
            else item_data['folderId'],
        }

        return config

replace_dataflow_gen2_placeholders_with_parameters(path, variables)

Replace placeholders with actual parameters in a Dataflow Gen2 mashup.pq file.

Parameters:

Name Type Description Default
path str

Path to the dataflow gen2

required
variables list

List of variable dictionaries with actual values

required

Returns:

Name Type Description
str None

Modified content with actual parameter values

Source code in src/pyfabricops/helpers/dataflows_gen2.py
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
def replace_dataflow_gen2_placeholders_with_parameters(
    path: str, variables: List[Dict[str, Any]]
) -> None:
    """
    Replace placeholders with actual parameters in a Dataflow Gen2 mashup.pq file.

    Args:
        path (str): Path to the dataflow gen2
        variables (list): List of variable dictionaries with actual values

    Returns:
        str: Modified content with actual parameter values
    """
    dataflow_name = path.split('/')[-1].split('.Dataflow')[0]

    path = Path(path) / 'mashup.pq'

    with open(path, 'r', encoding='utf-8') as f:
        content = f.read()

    # Replace placeholders with actual values for each destination
    for var_dict in variables:
        query_name = var_dict['query_name']

        # Replace workspaceId placeholder
        if 'workspaceId' in var_dict:
            workspace_id = var_dict['workspaceId']
            placeholder = f'#{{{dataflow_name}_{query_name}_workspaceId}}#'
            content = content.replace(
                f'workspaceId = "{placeholder}"',
                f'workspaceId = "{workspace_id}"',
            )

        # Replace lakehouseId placeholder
        if 'lakehouseId' in var_dict:
            lakehouse_id = var_dict['lakehouseId']
            placeholder = f'#{{{dataflow_name}_{query_name}_lakehouseId}}#'
            content = content.replace(
                f'lakehouseId = "{placeholder}"',
                f'lakehouseId = "{lakehouse_id}"',
            )

        # Replace warehouseId placeholder
        if 'warehouseId' in var_dict:
            warehouse_id = var_dict['warehouseId']
            placeholder = f'#{{{dataflow_name}_{query_name}_warehouseId}}#'
            content = content.replace(
                f'warehouseId = "{placeholder}"',
                f'warehouseId = "{warehouse_id}"',
            )

        # Replace semanticModelId placeholder
        if 'semanticModelId' in var_dict:
            semantic_id = var_dict['semanticModelId']
            placeholder = f'#{{{dataflow_name}_{query_name}_semanticModelId}}#'
            content = content.replace(
                f'semanticModelId = "{placeholder}"',
                f'semanticModelId = "{semantic_id}"',
            )

    with open(path, 'w', encoding='utf-8') as f:
        f.write(content)

replace_dataflow_gen2_variables_with_placeholders(path, variables)

Replace variables with placeholders in a Dataflow Gen2 mashup.pq file. Each destination gets unique placeholders based on its query name.

Parameters:

Name Type Description Default
path str

Path to the Dataflow gen2

required
variables list

List of variable dictionaries to replace

required

Returns:

Name Type Description
str None

Modified content with placeholders

Source code in src/pyfabricops/helpers/dataflows_gen2.py
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
def replace_dataflow_gen2_variables_with_placeholders(
    path: str, variables: List[Dict[str, Any]]
) -> None:
    """
    Replace variables with placeholders in a Dataflow Gen2 mashup.pq file.
    Each destination gets unique placeholders based on its query name.

    Args:
        path (str): Path to the Dataflow gen2
        variables (list): List of variable dictionaries to replace

    Returns:
        str: Modified content with placeholders
    """
    dataflow_name = path.split('/')[-1].split('.Dataflow')[0]

    path = Path(path) / 'mashup.pq'

    with open(path, 'r', encoding='utf-8') as f:
        content = f.read()
    # Replace each destination's variables with unique placeholders
    for var_dict in variables:
        query_name = var_dict['query_name']

        # Replace workspaceId
        if 'workspaceId' in var_dict:
            workspace_id = var_dict['workspaceId']
            placeholder = f'#{{{dataflow_name}_{query_name}_workspaceId}}#'
            content = content.replace(
                f'workspaceId = "{workspace_id}"',
                f'workspaceId = "{placeholder}"',
            )

        # Replace lakehouseId
        if 'lakehouseId' in var_dict:
            lakehouse_id = var_dict['lakehouseId']
            placeholder = f'#{{{dataflow_name}_{query_name}_lakehouseId}}#'
            content = content.replace(
                f'lakehouseId = "{lakehouse_id}"',
                f'lakehouseId = "{placeholder}"',
            )

        # Replace warehouseId
        if 'warehouseId' in var_dict:
            warehouse_id = var_dict['warehouseId']
            placeholder = f'#{{{dataflow_name}_{query_name}_warehouseId}}#'
            content = content.replace(
                f'warehouseId = "{warehouse_id}"',
                f'warehouseId = "{placeholder}"',
            )

        # Replace semanticModelId
        if 'semanticModelId' in var_dict:
            semantic_id = var_dict['semanticModelId']
            placeholder = f'#{{{dataflow_name}_{query_name}_semanticModelId}}#'
            content = content.replace(
                f'semanticModelId = "{semantic_id}"',
                f'semanticModelId = "{placeholder}"',
            )

    # Save the modified content back to the file
    with open(path, 'w', encoding='utf-8') as file:
        file.write(content)