<?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: Extract more than 10k records from thttpsrequest  component in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292120#M65232</link>
    <description>&lt;P&gt;The code uses the number of iterations of the loop to calculate the record numbers....&lt;/P&gt;
&lt;PRE&gt;//Set the limit value
int limit = 1000;
//Set the skip value....(1000 x the current iteration of the loop) - 1000
int skip = (1000 * ((Integer)globalMap.get("tLoop_1_CURRENT_ITERATION")).intValue()) -1000;

//Set the query value
String query = "?query={}&amp;amp;limit=" +limit+"&amp;amp;skip="+skip;

//Assign the query value to the query globalMap variable
globalMap.put("query", query);&lt;/PRE&gt;
&lt;P&gt;If we assume that the first iteration is iteration 1, then the query string will be....&lt;/P&gt;
&lt;P&gt;"?query={}&amp;amp;limit=1000&amp;amp;skip=0"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The second iteration it will be....&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"?query={}&amp;amp;limit=1000&amp;amp;skip=1000"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The third iteration it will be....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"?query={}&amp;amp;limit=1000&amp;amp;skip=2000"&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jun 2017 17:04:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-06-23T17:04:29Z</dc:date>
    <item>
      <title>Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292107#M65219</link>
      <description>I am using Talend big data 6.4 and I have got a scenario which requires your guys expertise. 
&lt;BR /&gt;Here is the scenario: 
&lt;BR /&gt;I am using thhtprequest component (GET method) to extract the data which is hosted on kinvey server. Due to some restrictions at source; if any tables having more than 10k records, only first 10k records are extracted and the remaining records are discarded and not sent through that request. 
&lt;BR /&gt;Here, I require your expertise to help me to extract all records by some work around. 
&lt;BR /&gt; 
&lt;BR /&gt;While doing some investigation, I came to know a concept called pagination can be used to solve the problem. But I don't know how to configure this pagination in Talend or to use any other components for this purpose. 
&lt;BR /&gt; 
&lt;BR /&gt;It would be more beneficial if you can share some ideas on how to get this working and also show us the screenshot about list of components used for that job. 
&lt;BR /&gt; 
&lt;BR /&gt;Any other ways to accomplish this work around is also greatly welcome. (I heard another way is to use tloop component). kindly share the screenshot of the components used along with any java codes written for this purpose.</description>
      <pubDate>Sat, 16 Nov 2024 09:35:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292107#M65219</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T09:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292108#M65220</link>
      <description>&lt;P&gt;OK, this depends on how the pagination is enabled in your service, but I have written a tutorial for retrieving Spotify listening history that makes use of a type of this functionaliy. You may be able to extrapolate from this in order to solve your problem. The tutorial is here&amp;nbsp;&lt;A href="https://www.rilhia.com/tutorials/using-talend-get-your-spotify-listening-history-facebook" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.rilhia.com/tutorials/using-talend-get-your-spotify-listening-history-facebook&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You will need to search for the &lt;SPAN&gt;"The GetMySpotifyListeningHistory Job&lt;/SPAN&gt;" and look at steps 4,5,6,7 and 8. It's not the easiest of things to get conceptually, but hopefully you can extrapolate from that.&lt;BR /&gt;&lt;BR /&gt;Essentially the process is....&lt;BR /&gt;1) Connect your HttpRequest to a tLoop&lt;BR /&gt;2) Run your HttpRequest using a globalMap variable holding the URL.&lt;BR /&gt;3) Retrieve the data, process it (or store it) and retrieve the new URL (for the next batch of data). Store it in the globalMap&lt;/P&gt;
&lt;P&gt;4) Perform logic to enable the Loop to run again&lt;BR /&gt;&lt;BR /&gt;......and so on.&lt;BR /&gt;&lt;BR /&gt;Hope that helps &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2017 22:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292108#M65220</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-22T22:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292109#M65221</link>
      <description>&lt;P&gt;Yours is the one of the first place&amp;nbsp;I went and try to replicate from my side and tailored it for my needs&lt;/P&gt; 
&lt;P&gt;I did exactly what you mentioned, but unfortunately nothing happens. Can you check why it is not working?&amp;nbsp;Please note the endpoint value i gave is dummy, but the actual one i give is correct and it is working independently while using through thttprequest component.&amp;nbsp;Below is the screenshot of the same.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="endpoint has a valid value, used here is dummy" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lvq9.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155461iD74E295ACFF1A6B6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lvq9.jpg" alt="0683p000009Lvq9.jpg" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;endpoint has a valid value, used here is dummy&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tBigqueryoutput have all valid values and can connect to BigQuery with no problem" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lvb2.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139777iA6AA5620812428EA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lvb2.jpg" alt="0683p000009Lvb2.jpg" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;tBigqueryoutput have all valid values and can connect to BigQuery with no problem&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 02:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292109#M65221</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T02:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292110#M65222</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am working a task that has the similar problem, the rest API only returns limited number of records each time, however, &amp;nbsp;the API provides external parameters limit N offset N to read all records by calling the API multiple times. I am using a tLoop to do a loop in the job. see&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The URL looks like:&lt;/P&gt; 
&lt;P&gt;"https://......?q=SELECT * from messages limit 1000 offset "+((Integer)globalMap.get("tLoop_1_CURRENT_VALUE"))"&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 905px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LvqE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153649iF3951DC3F23E9639/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LvqE.png" alt="0683p000009LvqE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LvVb.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135168i08D75557B99703C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LvVb.png" alt="0683p000009LvVb.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Hope it helps you.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Regards&lt;/P&gt; 
&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 02:45:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292110#M65222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T02:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292111#M65223</link>
      <description>Great shong.
&lt;BR /&gt;You are the man. Can you send me that job; so that I can tailor that job to
&lt;BR /&gt;my needs. Kindly share.</description>
      <pubDate>Fri, 23 Jun 2017 02:54:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292111#M65223</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T02:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292112#M65224</link>
      <description>&lt;P&gt;I export the job items from v6.4.0, you should use the same version or higher version to import the job to your studio.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LrZs"&gt;RestAPIwithLimitedRecords.zip&lt;/A&gt;</description>
      <pubDate>Fri, 23 Jun 2017 03:06:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292112#M65224</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T03:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292113#M65225</link>
      <description>Hi Shong,
&lt;BR /&gt;Thankyou very much for the help.
&lt;BR /&gt;However, I see you are getting the count using a query in URI, but in my
&lt;BR /&gt;case there is a column in my JSON file as count containing the total no.of
&lt;BR /&gt;records for that load and all rows will have same value for that particular
&lt;BR /&gt;JSON load.
&lt;BR /&gt;So if you run my job then the count variable is set to 20000 (say you have
&lt;BR /&gt;20k records at input) for 20000 times. So will it be a problem if such
&lt;BR /&gt;assignment is happening 20k times? Can it be changed to load this variable
&lt;BR /&gt;only once instead? Because I am getting 20000 times that the count value is
&lt;BR /&gt;set to 20000 while running.
&lt;BR /&gt;Also I see the iteration is set to 3. Does this mean that this block will
&lt;BR /&gt;run only 3 times Max? If so will it load only 3000 records Max for your
&lt;BR /&gt;requirement as you set the limit to 1000.
&lt;BR /&gt;Please clarify and give advice on the above queries I have.
&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Jun 2017 05:46:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292113#M65225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T05:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292114#M65226</link>
      <description>&lt;P&gt;Can you show us the JSON response you get. My way will only work if the JSON returns a new URL for the next set of records (which is implemented in the Facebook/Spotify domain),&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000004XsnJAAS"&gt;@shong&lt;/A&gt;'s solution will only work if you are asked to set a numeric parameter at the end of the URL.&lt;BR /&gt;&lt;BR /&gt;In order to help you we will need to see what we are working with &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 09:48:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292114#M65226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T09:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292115#M65227</link>
      <description>&lt;P&gt;Hi Rhall_2_0,&lt;/P&gt; 
&lt;P&gt;What you say is the case, if i want to extract 1st 10k records i should append this code "?query={}&amp;amp;limit=10000&amp;amp;skip=0" to existing URI to get 1st 10k records and to extract 2nd 10k records, the uri should have to be changed to URI + "?query={}&amp;amp;limit=10000&amp;amp;skip=10000" and so on. May I know how exactly do we work to get all the records by using a loop with this varying URI?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 14:05:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292115#M65227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T14:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292116#M65228</link>
      <description>&lt;P&gt;OK, you can keep most of your job structure (I would used&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000004XsnJAAS"&gt;@shong&lt;/A&gt;'s example for this). What you have to remember is that the last part of your URL will adjust with every call. The code you will need to change is below.....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;//Set the limit value
int limit = 1000;
//Set the skip value....(1000 x the current iteration of the loop) - 1000
int skip = (1000 * ((Integer)globalMap.get("tLoop_1_CURRENT_ITERATION")).intValue()) -1000;

//Set the query value
String query = "?query={}&amp;amp;limit=" +limit+"&amp;amp;skip="+skip;

//Assign the query value to the query globalMap variable
globalMap.put("query", query);&lt;/PRE&gt; 
&lt;P&gt;You will then need to append ((String)globalMap.get("query")) to your URL.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 14:50:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292116#M65228</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T14:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292117#M65229</link>
      <description>&lt;P&gt;I am not sure on which component you want to make this change. Do you want to create a tjava component? If possible can you send me the modified job . (Shong's job is available with this thread) as I am not an expertise in java and sending the job like how you did on your previous post, it will be more understandable and can help to extend this feature by me and anybody who is having such a similar issue in future.&lt;/P&gt; 
&lt;P&gt;Kindly assist.&lt;/P&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;HR /&gt; 
 &lt;A href="https://community.qlik.com/s/profile/005390000069RuGAAU"&gt;@rhall&lt;/A&gt; wrote: 
 &lt;BR /&gt; 
 &lt;P&gt;OK, you can keep most of your job structure (I would used&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000004XsnJAAS"&gt;@shong&lt;/A&gt;'s example for this). What you have to remember is that the last part of your URL will adjust with every call. The code you will need to change is below.....&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;PRE&gt;//Set the limit value
int limit = 1000;
//Set the skip value....(1000 x the current iteration of the loop) - 1000
int skip = (1000 * ((Integer)globalMap.get("tLoop_1_CURRENT_ITERATION")).intValue()) -1000;

//Set the query value
String query = "?query={}&amp;amp;limit=" +limit+"&amp;amp;skip="+skip;

//Assign the query value to the query globalMap variable
globalMap.put("query", query);&lt;/PRE&gt; 
 &lt;P&gt;You will then need to append ((String)globalMap.get("query")) to your URL.&lt;/P&gt; 
 &lt;HR /&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 15:44:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292117#M65229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T15:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292118#M65230</link>
      <description>&lt;P&gt;I'm afraid I cannot do this for you since I do not have the time to reconfigure my system to do this. However, I have given you the bulk of the code you will need for this. You are right that this will need to be done in a tJava component.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The best way for you to get better at this is to struggle through this. You have all of the information you need, you just now need to work out how to implement it. Most of the work is done, you just need to think about variable names, etc&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 15:51:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292118#M65230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T15:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292119#M65231</link>
      <description>&lt;P&gt;Does this code of yours require finding the count of the records before getting into the loop (for iteration)&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 16:20:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292119#M65231</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T16:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292120#M65232</link>
      <description>&lt;P&gt;The code uses the number of iterations of the loop to calculate the record numbers....&lt;/P&gt;
&lt;PRE&gt;//Set the limit value
int limit = 1000;
//Set the skip value....(1000 x the current iteration of the loop) - 1000
int skip = (1000 * ((Integer)globalMap.get("tLoop_1_CURRENT_ITERATION")).intValue()) -1000;

//Set the query value
String query = "?query={}&amp;amp;limit=" +limit+"&amp;amp;skip="+skip;

//Assign the query value to the query globalMap variable
globalMap.put("query", query);&lt;/PRE&gt;
&lt;P&gt;If we assume that the first iteration is iteration 1, then the query string will be....&lt;/P&gt;
&lt;P&gt;"?query={}&amp;amp;limit=1000&amp;amp;skip=0"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The second iteration it will be....&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"?query={}&amp;amp;limit=1000&amp;amp;skip=1000"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The third iteration it will be....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"?query={}&amp;amp;limit=1000&amp;amp;skip=2000"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 17:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292120#M65232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T17:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292121#M65233</link>
      <description>&lt;P&gt;Hi rhall_2_0,&lt;/P&gt; 
&lt;P&gt;I am attaching you the screenshot of the job which i have build, but I could not able to join a tloop with tjavarow directly also i am not sure what should be the schema to be on the tjava as the http component can only have responsecode as an output. shall i have the schema as query and the input in thttpresponse component as query and the output to be responsecode?&lt;/P&gt; 
&lt;P&gt;Can you see if I made all the parts correctly and also how shall i connect the tloop component with tjavarow component.&lt;/P&gt; 
&lt;P&gt;Let me know if i missed anything out. Kindly assist&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="count_job_details.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lv0a.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153323i3857DFEFA2F5680D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lv0a.jpg" alt="0683p000009Lv0a.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="main_loop_job.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lv96.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154275iDB7ADE6B341F3F4A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lv96.jpg" alt="0683p000009Lv96.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 19:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292121#M65233</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T19:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292122#M65234</link>
      <description>&lt;P&gt;Use a tJava component instead of a tJavaRow. tJavaRow components cannot be connected using "iterate" links,&amp;nbsp;they&amp;nbsp;need "Main" rows. Since the tLoop only provides an "Iterate" link, this needs to be considered. Link the tJava to the tHttpRequest using an "Iterate" link.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It should look something like this.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tLoop --iterate--&amp;gt; tJava ---iterate--&amp;gt; tHttpRequest&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 21:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292122#M65234</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-23T21:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292123#M65235</link>
      <description>Thanks for the hint.&lt;BR /&gt;But this takes only records between 10k to 20k and loads (source have 20k&lt;BR /&gt;records) them into the target but neglects loading the first set of 10k&lt;BR /&gt;records.&lt;BR /&gt;May I know where did I do wrong?&lt;BR /&gt;</description>
      <pubDate>Sat, 24 Jun 2017 03:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292123#M65235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-24T03:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292124#M65236</link>
      <description>&lt;P&gt;Problem fixed. Some problem with my settings. Kindly ignore my previous posts.&lt;/P&gt; 
&lt;P&gt;Huge thanks to rhall_2_0 and shong for helping me out and making me to learn more about Talend and its capabilities.&lt;/P&gt; 
&lt;P&gt;Please continue your service to the community.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Jun 2017 03:20:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292124#M65236</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-24T03:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292125#M65237</link>
      <description>&lt;P&gt;Glad you got it sorted!&lt;/P&gt;
&lt;P&gt;I felt a little bad about appearing to try to make you struggle, but I was a little busy and do think struggling a little massively increases the amount you learn &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jun 2017 17:01:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292125#M65237</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-25T17:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Extract more than 10k records from thttpsrequest  component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292126#M65238</link>
      <description>&lt;P&gt;Hi rhall_2_0,&lt;/P&gt; 
&lt;P&gt;Never feel bad. Given the timeline for me, I thought it cannot be done on time, but with your help, I can able to finish it in time.Thanks anyways and perhaps it did made me to learn more about the implementation.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am also getting a WARNING message right now, though it does not affect the outcome of the job, I am little interested to know how can this be fixed. Let me know if you have any reasons in mind due to which this WARNING pops up while executing every time. Below is the URL of the topic which I posted,&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCoSMCA0#M6199" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/Unable-to-find-mime-types-file-in-classpath-warning-while/m-p/29150#M6199&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jun 2017 19:21:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-more-than-10k-records-from-thttpsrequest-component/m-p/2292126#M65238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-25T19:21:19Z</dc:date>
    </item>
  </channel>
</rss>

