<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Table Rows Limit in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/283040#M8416</link>
    <description>&lt;P&gt;capabilities.json is located in the root folder of your project.&amp;nbsp; Did you look?&lt;/P&gt;</description>
    <pubDate>Thu, 19 Oct 2017 18:45:39 GMT</pubDate>
    <dc:creator>RichardL</dc:creator>
    <dc:date>2017-10-19T18:45:39Z</dc:date>
    <item>
      <title>Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/80147#M2827</link>
      <description>&lt;P&gt;Hello, I'm creating a custom visual that reads data in from a table (csv file). &amp;nbsp;My table has three columns, and each column has 59,000 rows. &amp;nbsp;I am reading the rows in via TypeScript, but the latest version of Power BI desktop says "Too many values. Not showing all data. Click to see details". &amp;nbsp;Publishing the report to a webpage shows that only 1,000 rows were read in because my console debug output says rows.length = 1000. &amp;nbsp;I thought the rows limit was 30,000? &amp;nbsp;Any thoughts on this? &amp;nbsp;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2016 00:32:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/80147#M2827</guid>
      <dc:creator>RichardL</dc:creator>
      <dc:date>2016-10-20T00:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/80157#M2828</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/14918"&gt;@RichardL﻿&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In terms of row limits for a CSV, Power BI Desktop is only limited by the amount of memory that your machine has.&lt;/P&gt;&lt;P&gt;We currently load millions of rows of data into Power BI on a weekly basis without any issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you actually reading a physical CSV file , or is Power BI trying to read a file in TypeScript ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2016 01:04:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/80157#M2828</guid>
      <dc:creator>djnww</dc:creator>
      <dc:date>2016-10-20T01:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/80581#M2848</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1575"&gt;@djnww﻿&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My 64-bit machine has 32 GB of memory and only uses around 8 GB when I'm running Power BI Desktop. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm reading a physical CSV file from disk in TypeScript. &amp;nbsp;In my update(options: VisualUpdateOptions) method, I have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp;var dataView = options.dataViews[0];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp;var rows: DataViewTableRow =&amp;nbsp;dataView.table.rows;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp;console.log('rows length: ', rows.length); &amp;nbsp; &amp;nbsp; // This would print out 1000&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;dataViewMapppings is defined as followed in capabilities.json:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp;"dataRoles": [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "displayName": "Values",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "name": "values",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "kind": 2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp;],&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp;"dataViewMappings": [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"table": {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "rows": {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"for": {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "in": "values"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp;],&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you see anything out of the ordinary here? &amp;nbsp;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2016 17:13:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/80581#M2848</guid>
      <dc:creator>RichardL</dc:creator>
      <dc:date>2016-10-20T17:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81178#M2867</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/14918"&gt;@RichardL﻿&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand you're using TypeScript, but how is Power BI consuming it ?&amp;nbsp;Via 'web' http ? In other words, what do you do when you select 'Get Data' ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have encoded data in JSON using python then into Power BI&amp;nbsp;successfully Yes, we have had issues with maximum rows, but that has also been a server side limitation rather than Power BI. However, I have not see your error message before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;</description>
      <pubDate>Sat, 22 Oct 2016 04:31:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81178#M2867</guid>
      <dc:creator>djnww</dc:creator>
      <dc:date>2016-10-22T04:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81206#M2870</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1575"&gt;@djnww﻿&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm consumimg the data via 'web' http. &amp;nbsp;The same row limit exists on both the web and in Power BI desktop. &amp;nbsp;I see the limit of 1000 rows when I press F12 in Chrome or Edge to view console output.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Oct 2016 17:29:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81206#M2870</guid>
      <dc:creator>RichardL</dc:creator>
      <dc:date>2016-10-22T17:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81412#M2879</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/14918"&gt;@RichardL﻿&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my research, you need to specify dataReductionAlgorithm in capabilities.json. It describes how to reduce the amount of data exposed to the visual.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Microsoft/PowerBI-visuals/issues/44" target="_blank"&gt;https://github.com/Microsoft/PowerBI-visuals/issues/44&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2016 07:53:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81412#M2879</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2016-10-24T07:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81763#M2899</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/11389"&gt;@v-chuncz-msft﻿&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifying&amp;nbsp;&lt;SPAN&gt;dataReductionAlgorithm in capabilities.json did the trick. &amp;nbsp;Thanks a bunch. &amp;nbsp;I can now read in 30K rows. &amp;nbsp;My dataViewMappings now looks like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier" size="2"&gt;"dataViewMappings": [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp;{&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "table": {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"rows": {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "select": [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{ "for": { "in": "values" } }&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ],&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "dataReductionAlgorithm": { "sample": { "count": 64000 } }&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;},&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"rowCount": { "preferred": { "min": 2, "max": 100000 }, "supported": { "min": 1, "max": 100000 } }&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is good progress. &amp;nbsp;However, almost half of my table still gets truncated. &amp;nbsp;Didn't the Power BI team say they were raising the 30K rows limit?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2016 21:54:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/81763#M2899</guid>
      <dc:creator>RichardL</dc:creator>
      <dc:date>2016-10-24T21:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/282662#M8410</link>
      <description>&lt;P&gt;For a newbie.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How/where do you edit capabilities.json? where is&amp;nbsp;capabilities located?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2017 11:28:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/282662#M8410</guid>
      <dc:creator>ragnargylfa</dc:creator>
      <dc:date>2017-10-19T11:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/283040#M8416</link>
      <description>&lt;P&gt;capabilities.json is located in the root folder of your project.&amp;nbsp; Did you look?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2017 18:45:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/283040#M8416</guid>
      <dc:creator>RichardL</dc:creator>
      <dc:date>2017-10-19T18:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table Rows Limit</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/287824#M8452</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did look.&amp;nbsp;Im not sure where the root folder of the project is located or where is should look for that.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is not in the folder where the power bi project file is stored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I maybe misunderstanding something.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am just importing data into Power BI using query ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;Source = Json.Document(Web.Contents("&lt;A href="https://issues.companyname.com/rest/api/2/search?jql=project=PR&amp;amp;maxResults=3000" target="_blank"&gt;https://issues.companyname.com/rest/api/2/search?jql=project=PR&amp;amp;maxResults=3000&lt;/A&gt;")),&lt;BR /&gt;issues = Source[issues],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So perhaps this is not a project.. Like I said in the previous message I am a newbie &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to include more search results for a just a query?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 13:47:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Table-Rows-Limit/m-p/287824#M8452</guid>
      <dc:creator>ragnargylfa</dc:creator>
      <dc:date>2017-10-23T13:47:13Z</dc:date>
    </item>
  </channel>
</rss>

