Forum Discussion

Kish1999's avatar
Kish1999
Icon for Helper II rankHelper II
2 years ago
Solved

Incremental refresh for Jira Data

Hello All,

We use connectors to bring in the data from Jira in Power BI using Odata. The issue with this is that we are not able to use incremental refresh in our dataset and so the refresh takes way longer that it should. Can someone help me configure the Incremental refresh for our scenario or other options like creating custome connectors and using Table.View to do it.

Below is what our query looks like:

 

let
Source = OData.Feed("Connector URL", null, [Implementation = "2.0"]),
#"Navigation 1" = Source{[Name = "Table Name", Signature = "table"]}[Data],
#"Remove columns" = Table.RemoveColumns(#"Navigation 1", Table.ColumnsOfType(#"Navigation 1", {type table, type record, type list, type nullable binary, type binary, type function})),
#"Changed column type" = Table.TransformColumnTypes(#"Remove columns", {{"ISSUE_UPDATED", type datetime}})
in
#"Changed column type"

 

Thank You!!

7 Replies