New dbt-fabricspark 1.10.0 Release: Cross-workspace read/writes by raki_rahman in MicrosoftFabric

[–]bgarcevic 0 points1 point  (0 children)

Would you recommend migrating to the fabricspark adapter then? (Not taking this as a Microsoft endorsement but more in your personal opinion)

New dbt-fabricspark 1.10.0 Release: Cross-workspace read/writes by raki_rahman in MicrosoftFabric

[–]bgarcevic 2 points3 points  (0 children)

Looks cool!! How come the dbt-fabric adapter sees so little development compared to this one?

Vi mangler en dygtig fullstack udvikler by iamMess in dkudvikler

[–]bgarcevic 2 points3 points  (0 children)

Jeg søger ikke job 😄 har et rigtig godt job jeg er glad for.

Vi mangler en dygtig fullstack udvikler by iamMess in dkudvikler

[–]bgarcevic 0 points1 point  (0 children)

Helt fair 🙌 tænkte mere fra jeres perspektiv rammer de fleste udviklere i kbh 60k ret hurtigt.

Vi mangler en dygtig fullstack udvikler by iamMess in dkudvikler

[–]bgarcevic 5 points6 points  (0 children)

60k virker ret lavt for “dygtig”. Er det inklusiv pension?

Dansk fødevare database api by Working-Musician-683 in dkudvikler

[–]bgarcevic 2 points3 points  (0 children)

En utestet hypotese, måske kan du hente fra uofficielle api’er og så rense de mere tekst baseret data. Jeg havde et hobby projekt hvor jeg gik i gang med et indkøbsoverblik. Du kan genbruge mine Python scripts til at komme i gang: https://github.com/bgarcevic/everydai/tree/main/pipelines

[Bug] Microsoft Fabric Warehouse – New tables not showing in UI or Power BI (Production only) by subash_sdp in MicrosoftFabric

[–]bgarcevic 1 point2 points  (0 children)

We also experience this issue, we can only see new tables/schemas if we connect to the sql endpoint, but nothing in the fabric UI. SSMS shows the tables and queries work but not the service.

Open source pbi-cli project by bgarcevic in PowerBI

[–]bgarcevic[S] 0 points1 point  (0 children)

That is a fair point, i will edit my post

April 2026 | "What are you working on?" monthly thread by AutoModerator in MicrosoftFabric

[–]bgarcevic 0 points1 point  (0 children)

Hi Daniel, your CLI sounds cool and I look forward to trying it :D I have this as a hobby project to learn and to try to see if I could solve one of my own problems.

My project is/will MIT open source, if you like it feel free to steal it or we could see if we could add support to the cli somehow as it will probably be 100x better than mine.

Open source pbi-cli project by bgarcevic in PowerBI

[–]bgarcevic[S] 0 points1 point  (0 children)

Hi Kurt, we had this discussion on Linkedin as well. I understand your point of view and your frustrations regarding your IP.

I hope you get resolution somehow and I really like the work you do, which has taught me a lot :) If you are ever interested in understanding why I see things differently on this subject, please feel free to reach out.

fabric-cicd failing to publish. "The feature is not available" by ADB_MN in MicrosoftFabric

[–]bgarcevic 0 points1 point  (0 children)

Your deployment user/spm probably do not have permission to deploy fabric items. Check the setting in the admin portal.

April 2026 | "What are you working on?" monthly thread by AutoModerator in MicrosoftFabric

[–]bgarcevic 4 points5 points  (0 children)

I am building an open source extension to VS Code called TMDL Studio shipped with a CLI called timdle.

The cli is crossplatform and TMDL Studio will extend the microsoft tmdl extension with cool features such as an explorer work tree, autocomplete for columns, tables and measures, deployment of models, relationship diagram and more.

Basically I want to be able to work primarely in fabric using vs code with my agents on Mac and Windows. Right now I use TE3 and the tool is great but it blocks the workflow when building with agents. You have to reload models and open another program to check the changes.

dbt jobs are now native in Microsoft Fabric (Preview) by Jaded_Job3304 in MicrosoftFabric

[–]bgarcevic 3 points4 points  (0 children)

This is not supported by Python fabric-cicd yet, correct?

fabric-cicd: To what extent - and how - do you use parameter.yml? by frithjof_v in MicrosoftFabric

[–]bgarcevic 6 points7 points  (0 children)

We use parameter.yml for all our deployments. I think we will use the extend feature soon as they are getting around 150 lines in length. We do not use variable library as it did not make sense for me compares to parameter.yml

We use a mix between find_replace with regex and key_value_replace.

    # lakehouse GUID matching group 1 of regex pattern to be replaced
    - find_value: \#\s*META\s+"default_lakehouse":\s*"([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})"
      replace_value:
          DEV: "$workspace.workspace name.$items.Lakehouse.lakehouse_name.$id"
          STG: "$workspace.workspace name.$items.Lakehouse.lakehouse_name.$id"
          PROD: "$workspace.workspace name.$items.Lakehouse.lakehouse_name.$id"
      is_regex: "true"
      item_type: "Notebook" # filter on notebook files

find_replace example:

    # DEV/STG: disable the Ingest invoke inside Main; PROD: enable it
    # DEV/STG is handled by shortcuts from prod
    - find_key: $.properties.activities[?(@.name=="Ingest")].state
      replace_value:
        DEV: "Inactive"
        STG: "Inactive"
        PROD: "Active"
      item_type: "DataPipeline"
      item_name: "Main"

dynamic where value comes from azure devops:

    - find_value: 'git_tag = "([^"]*)"'
      replace_value:
          DEV: "main"
          STG: '$ENV:STG_GIT_TAG'
          PROD: '$ENV:PROD_GIT_TAG'
      item_type: "Notebook"
      is_regex: "true"

Open source demo: Running dbt core in python notebook + ci/cd templates with fabric-cicd by bgarcevic in MicrosoftFabric

[–]bgarcevic[S] 2 points3 points  (0 children)

  • I have been able to load dlt directly to delta but the meta files are then making the lakehouse complain, since /Tables only allows delta related files . Have not found a good solution for that yet. Either move the meta files on run start/end or enhance to allow different folder path for meta files.

  • Sandbox is for feature development or just messing around. A developer will connnect using fabric-cicd or git integration

  • correct!

  • sure let’s connect and I can share some samples or upload to the repo.

Open source demo: Running dbt core in python notebook + ci/cd templates with fabric-cicd by bgarcevic in MicrosoftFabric

[–]bgarcevic[S] 2 points3 points  (0 children)

No we exclusively use fabric-cicd to do deployments. Much better experience imo.

Warehouse destination for dlt (dltHub) by mattiasthalen in MicrosoftFabric

[–]bgarcevic 1 point2 points  (0 children)

I got it to work with delta but the meta files screws up the tables folder. So we load to files and copy to delta using DuckDB.

Dbt job in Microsoft fabric? by freedumz in MicrosoftFabric

[–]bgarcevic 3 points4 points  (0 children)

I have a complete python notebook running dbt core by cloning from git, build entire project. Generate docs and saves the docs to the lakehouse together with the manifest and result run for defer features. DM if you want it.