Microsoft Fabric: ingest row
Этот контент еще не доступен на вашем языке.
The Microsoft Fabric: ingest row Point template streams one row into an Eventhouse (KQL) table through the Fabric ingest API.
Unlike the other Integrations points that take their own token, this one authenticates through an Entra ID application connected once for the whole account — there’s no token field on the point itself.
Before you start
Anchor link toConnect an Entra ID application under Settings > 3rd-party integrations > Microsoft Azure:
- Register an application in your Entra ID directory and create a client secret for it.
- In Directory (tenant) ID, enter your tenant, for example
contoso.onmicrosoft.com. - In Application (client) ID, enter the app registration’s client ID.
- In Client secret, paste the secret. It’s stored write-only: Pushwoosh never shows it again, so paste a new one to replace it.
- Click Connect Azure.
Without a connected application, the point can’t send its request.
Three things also need to be in place on the Eventhouse side, or the request fails:
- The target table needs a JSON ingestion mapping — streaming ingestion of JSON doesn’t work without one.
- The app registration needs the
ingestorrole on the Eventhouse. There’s no button for this in the Fabric UI — grant it by running this in the Eventhouse’s query window:.add database ['<database name>'] ingestors ('aadapp=<Application (client) ID>;<Directory (tenant) ID>') - The KQL database needs its streaming ingestion policy enabled. Run this in the same query window:
.alter database ['<database name>'] policy streamingingestion enable
Keep the ['...'] around the database name in these commands if it contains a hyphen — a bare hyphenated name fails to parse.
Configure the point
Anchor link to- Drag Microsoft Fabric: ingest row from the Integrations section of the left panel onto the canvas.
- Double-click the point and enter a Step Name.
- In Query URI host, enter your Eventhouse’s host from its Query URI, on the Eventhouse’s System overview page. Don’t include
https://, for exampletrd-abc123.z9.kusto.fabric.microsoft.com. - In KQL database, enter the target database’s name.
- In Table, enter the target table’s name.
- In Ingestion mapping, enter the name of the JSON mapping created on that table.
- In Columns, add the column name mapped to the value to write — see key/value fields.
- Click Save.
This point doesn’t map any response data back into the journey.
Reading a failed request
Anchor link toOpen Calls log in the point’s drawer and check the response:
- 401 or 403 — the connected Entra ID application’s credentials or its
ingestorrole are wrong or missing. - 520 with
StreamingIngestionException: Failed to initialize cursor tracker...— the KQL database’s streaming ingestion policy isn’t enabled. The error’s ownpermanent: falseflag reads as “retry later,” but retrying doesn’t fix this. Run.alter database ['<database name>'] policy streamingingestion enablein the Eventhouse’s query window (see Before you start).
A failed request drops the traveler from the journey — see Errors and failed requests.