Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

fabric-onelake-2025面料 Onelake 2025

Agent Skill

fabric-onelake-2025 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,049

周安装

88

GitHub Stars

33

下载量

718
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fabric-onelake-2025(面料 Onelake 2025)
来源仓库:https://github.com/josiahsiegel/claude-plugin-marketplace
仓库路径:skills/fabric-onelake-2025
安装命令:
npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill fabric-onelake-2025
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill fabric-onelake-2025

简介

fabric-onelake-2025 解析 Fabric Lakehouse 与 Azure Data Factory 在 2025 年的集成能力。

  • 涵盖 Lakehouse 连接器的读写活动、Lookup 及分页查询等核心功能说明。
  • 适用于构建跨 ADF 与 Fabric 的数据管道,需提前规划连接器授权与网络策略。
  • 部署前应验证目标表结构兼容性,避免因 schema 不匹配引发写入失败。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Microsoft Fabric Integration with Azure Data Factory (2025)

Overview

Microsoft Fabric is a unified SaaS analytics platform combining Power BI, Azure Synapse Analytics, and Azure Data Factory capabilities. ADF provides native connectors for Fabric Lakehouse and Fabric Warehouse, enabling seamless data movement between ADF and Fabric workspaces.

Microsoft Fabric Lakehouse Connector

The Fabric Lakehouse connector enables read and write operations to Microsoft Fabric Lakehouse for tables and files.

Supported Activities

ActivitySupported
Copy Activity (source and sink)Yes
Lookup ActivityYes
Get Metadata ActivityYes
Delete ActivityYes

Quick Reference

  • Linked service type: Lakehouse
  • Authentication: Managed Identity (preferred) or Service Principal
  • Required IDs: workspaceId and artifactId
  • Sink types: LakehouseTableSink (tables), LakehouseFileSink (files)
  • Source type: LakehouseTableSource
  • Table action options: append or overwrite

Finding Workspace and Artifact IDs:

  1. Navigate to Fabric workspace in browser
  2. Copy workspace ID from URL: https://app.powerbi.com/groups/<workspaceId>/...
  3. Open Lakehouse settings to find artifact ID
  4. Or use Fabric REST API to enumerate workspace items

For complete linked service, dataset, and copy activity JSON examples, see references/lakehouse-examples.md.

Microsoft Fabric Warehouse Connector

The Fabric Warehouse connector provides T-SQL based data warehousing capabilities within the Fabric ecosystem.

Supported Activities

ActivitySupported
Copy Activity (source and sink)Yes
Lookup ActivityYes
Get Metadata ActivityYes
Script ActivityYes
Stored Procedure ActivityYes

Quick Reference

  • Linked service type: Warehouse
  • Authentication: System-Assigned Managed Identity (recommended), User-Assigned MI, or Service Principal
  • Required properties: endpoint, warehouse
  • Sink type: WarehouseSink
  • Write behaviors: insert or upsert
  • Table option: autoCreate (creates table if missing)

For complete linked service, copy activity, stored procedure, and script activity JSON examples, see references/warehouse-examples.md.

OneLake Integration Patterns

ADF supports three integration patterns with OneLake:

PatternDescriptionKey Benefit
ADLS Gen2 ShortcutsReference ADLS data via OneLake shortcuts (zero-copy)No data duplication
Incremental LoadWatermark-based incremental copy to LakehouseEfficient updates
Cross-Platform InvokeUse InvokePipeline activity to call Fabric pipelinesHybrid orchestration

OneLake Shortcuts are the preferred approach when data already exists in ADLS Gen2 -- they provide instant zero-copy access without data movement. Use ADF Copy Activity only when data transformation or format conversion is needed.

For complete pipeline JSON examples for all three patterns, see references/onelake-patterns.md.

Permission Configuration

Azure Data Factory Managed Identity Permissions in Fabric

For Fabric Lakehouse:

  1. Open Fabric workspace
  2. Go to Workspace settings -> Manage access
  3. Add ADF managed identity with Contributor role
  4. Or assign Workspace Admin for full access

For Fabric Warehouse:

  1. Navigate to Warehouse SQL endpoint
  2. Execute SQL to create user:
CREATE USER [your-adf-name] FROM EXTERNAL PROVIDER;
ALTER ROLE db_datareader ADD MEMBER [your-adf-name];
ALTER ROLE db_datawriter ADD MEMBER [your-adf-name];

Service Principal Permissions

App Registration Setup:

  1. Register app in Microsoft Entra ID
  2. Create client secret (store in Key Vault)
  3. Add app to Fabric workspace with Contributor role
  4. For Warehouse, create SQL user as shown above

Best Practices (2025)

  1. Use Managed Identity -- System-assigned for single ADF, user-assigned for multiple. Avoid service principal keys when possible. Store any secrets in Key Vault.
  2. Enable Staging for Large Loads -- Use staging with compression for data volumes > 1 GB, complex transformations, or Fabric Warehouse loads.
  3. Leverage OneLake Shortcuts -- Use ADLS Gen2 -> OneLake Shortcut -> Direct Access instead of ADLS Gen2 -> Copy Activity -> Lakehouse. No data movement, instant availability, reduced costs.
  4. Monitor Fabric Capacity Units (CU) -- Track CU consumption per pipeline run, peak usage, and throttling. Optimize with incremental loads, off-peak scheduling, and right-sized parallelism.
  5. Use Table Option AutoCreate -- Set tableOption: "autoCreate" on WarehouseSink for automatic schema management and faster development.
  6. Implement Error Handling -- Configure retry policies on Copy activities and add WebActivity-based failure logging with dependencyConditions: ["Failed"].

Common Issues and Solutions

IssueError MessageSolution
Permission Denied"User does not have permission to access Fabric workspace"Add ADF managed identity as Contributor; for Warehouse, create SQL user; allow 5 min propagation
Endpoint Not Found"Unable to connect to endpoint"Verify workspaceId/artifactId; check workspace URL; ensure Lakehouse/Warehouse is not paused
Schema Mismatch"Column types do not match"Use tableOption: "autoCreate" or explicit column mappings in translator
Performance DegradationSlow copy performanceEnable staging, increase parallelCopies (4-8), increase DIUs (8-32), check CU throttling

Resources

Progressive Disclosure References

  • Lakehouse Examples: references/lakehouse-examples.md - Complete linked service, dataset, copy activity, and lookup JSON examples
  • Warehouse Examples: references/warehouse-examples.md - Complete linked service, copy activity, stored procedure, and script activity JSON examples
  • OneLake Patterns: references/onelake-patterns.md - Pipeline patterns for shortcuts, incremental loads, and cross-platform Invoke Pipeline

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.03%
按下载量换算194

OpenCode

22.91%
按下载量换算164

Antigravity

17.99%
按下载量换算129

Gemini CLI

12.72%
按下载量换算91

Codex

7.68%
按下载量换算55

windsurf

3.52%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills