Skip to content

Commit 8cb9846

Browse files
authored
Merge pull request #27 from Adez017/copilot/fix-vercel-build-errors
Fix Vercel build failures in ETL blog image resolution
2 parents 9afe66c + ff25932 commit 8cb9846

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

blog/ETL-pipeline-tutorial/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ meta:
2222
- property: "og:url"
2323
content: "https://www.recodehive.com/blog/azure-data-factory-build-first-etl"
2424
- property: "og:image"
25-
content: "./img/adf-cover_image.png"
25+
content: "/img/blogs/adf-cover_image.png"
2626
- name: "twitter:card"
2727
content: "summary_large_image"
2828
- name: "twitter:title"
2929
content: "Azure Data Factory Pipeline: Build Your First ETL in 10 Minutes"
3030
- name: "twitter:description"
3131
content: "Azure Data Factory is Microsoft's cloud-native ETL service. Here's how to build your first real pipeline in under 10 minutes."
3232
- name: "twitter:image"
33-
content: "./img/adf-cover_image.png"
33+
content: "/img/blogs/adf-cover_image.png"
3434

3535
---
3636

@@ -66,7 +66,7 @@ Under the hood, it handles:
6666

6767
Think of it as the **orchestration layer** of your Azure data stack, the thing that decides what data moves where, when, and how.
6868

69-
![Azure Data Factory pipeline canvas showing a Copy Activity connected from Blob Storage source to ADLS Gen2 sink, with linked services and datasets illustrated](./img/adf-pipeline-overview.png)
69+
![Azure Data Factory pipeline canvas showing a Copy Activity connected from Blob Storage source to ADLS Gen2 sink, with linked services and datasets illustrated](./Img/adf-pipeline-overview.png)
7070

7171

7272
## The 4 Concepts You Need to Know First
@@ -127,7 +127,7 @@ Your pipeline might have three activities: a Copy Activity to land raw data, a D
127127

128128
Here's how all four concepts connect in a real pipeline:
129129

130-
![End-to-end ADF ETL flow showing: REST API source → Linked Service → Dataset → Copy Activity → Dataset → Linked Service → ADLS Gen2 sink. Below the flow: Trigger icon labeled "Scheduled: daily 2am". All inside a Pipeline box.](./img/adf-elt-flow.png)
130+
![End-to-end ADF ETL flow showing: REST API source → Linked Service → Dataset → Copy Activity → Dataset → Linked Service → ADLS Gen2 sink. Below the flow: Trigger icon labeled "Scheduled: daily 2am". All inside a Pipeline box.](./Img/adf-elt-flow.png)
131131

132132

133133
<img src={require('./Img/pipeline.png').default} width="500" height="50" />
@@ -173,7 +173,7 @@ You're now in **ADF Studio**, the visual authoring environment.
173173
5. Click **Test Connection** — you should see ✅ Connection successful
174174
6. Click **Create**!
175175

176-
![ADF Studio Linked Service creation screen showing ADLS Gen2 selected with connection test successful](./img/adf-linked-service.png)
176+
![ADF Studio Linked Service creation screen showing ADLS Gen2 selected with connection test successful](./Img/adf-linked-service.png)
177177

178178

179179

@@ -231,7 +231,7 @@ This dataset points to where the file should land, your `bronze/` folder.
231231
5. Click **Validate** (toolbar) - you should see no errors
232232
6. Click **Debug** - this runs the pipeline immediately without publishing
233233

234-
![ADF pipeline canvas showing Copy Activity with Source and Sink configured, Debug button highlighted in toolbar](./img/adf-pipeline-debug.png)
234+
![ADF pipeline canvas showing Copy Activity with Source and Sink configured, Debug button highlighted in toolbar](./Img/adf-pipeline-debug.png)
235235

236236

237237
### Step 6: Publish and Add a Trigger
@@ -258,7 +258,7 @@ Your pipeline now runs automatically every night at 2am, copying new sales data
258258
3. Click any run to see activity-level details
259259
4. If something fails, click the error icon to see exactly which activity failed and why
260260

261-
![ADF Monitor tab showing pipeline run history with status, duration, and rows copied columns](./img/adf-monitor.png)
261+
![ADF Monitor tab showing pipeline run history with status, duration, and rows copied columns](./Img/adf-monitor.png)
262262

263263

264264

0 commit comments

Comments
 (0)