Update table on Spring Batch Failure












0















I am using spring batch to update employee status based on input received from thirdparty API. Can anyone help me how can I update status of employee in EMPLOYEE table if step fails with some exception and overall job status to FAILED to my table instead of spring batch tables?










share|improve this question























  • what is the format of the input received from the 3rd party API? Does the API return one employee status per call or does it return a collection of employees statuses?

    – Mahmoud Ben Hassine
    Nov 16 '18 at 8:08











  • it returns collection of employees statuses per api call

    – Sandeep Thaker
    Nov 16 '18 at 9:18


















0















I am using spring batch to update employee status based on input received from thirdparty API. Can anyone help me how can I update status of employee in EMPLOYEE table if step fails with some exception and overall job status to FAILED to my table instead of spring batch tables?










share|improve this question























  • what is the format of the input received from the 3rd party API? Does the API return one employee status per call or does it return a collection of employees statuses?

    – Mahmoud Ben Hassine
    Nov 16 '18 at 8:08











  • it returns collection of employees statuses per api call

    – Sandeep Thaker
    Nov 16 '18 at 9:18
















0












0








0








I am using spring batch to update employee status based on input received from thirdparty API. Can anyone help me how can I update status of employee in EMPLOYEE table if step fails with some exception and overall job status to FAILED to my table instead of spring batch tables?










share|improve this question














I am using spring batch to update employee status based on input received from thirdparty API. Can anyone help me how can I update status of employee in EMPLOYEE table if step fails with some exception and overall job status to FAILED to my table instead of spring batch tables?







spring spring-batch






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 16 '18 at 7:33









Sandeep ThakerSandeep Thaker

187




187













  • what is the format of the input received from the 3rd party API? Does the API return one employee status per call or does it return a collection of employees statuses?

    – Mahmoud Ben Hassine
    Nov 16 '18 at 8:08











  • it returns collection of employees statuses per api call

    – Sandeep Thaker
    Nov 16 '18 at 9:18





















  • what is the format of the input received from the 3rd party API? Does the API return one employee status per call or does it return a collection of employees statuses?

    – Mahmoud Ben Hassine
    Nov 16 '18 at 8:08











  • it returns collection of employees statuses per api call

    – Sandeep Thaker
    Nov 16 '18 at 9:18



















what is the format of the input received from the 3rd party API? Does the API return one employee status per call or does it return a collection of employees statuses?

– Mahmoud Ben Hassine
Nov 16 '18 at 8:08





what is the format of the input received from the 3rd party API? Does the API return one employee status per call or does it return a collection of employees statuses?

– Mahmoud Ben Hassine
Nov 16 '18 at 8:08













it returns collection of employees statuses per api call

– Sandeep Thaker
Nov 16 '18 at 9:18







it returns collection of employees statuses per api call

– Sandeep Thaker
Nov 16 '18 at 9:18














1 Answer
1






active

oldest

votes


















1














You can proceed in two steps:




  • step1 (tasklet): make the rest call and save the result in a file (remove the file after the job if necessary)

  • step2 (chunk-oriented): read employee items and update their statuses in the database


For the writer, you can use a JdbcBatchItemWriter configured with a sql statement like: update table employee set status = ? where id = ?.



As per the step failure question, if any exception occurs during the processing of a chunk, the transaction will be rolled back and no updates will be committed to the database. More details about this in the reference documentation here.



Hope this helps.






share|improve this answer


























  • it helped thanks.

    – Sandeep Thaker
    Nov 16 '18 at 11:03











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53333316%2fupdate-table-on-spring-batch-failure%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You can proceed in two steps:




  • step1 (tasklet): make the rest call and save the result in a file (remove the file after the job if necessary)

  • step2 (chunk-oriented): read employee items and update their statuses in the database


For the writer, you can use a JdbcBatchItemWriter configured with a sql statement like: update table employee set status = ? where id = ?.



As per the step failure question, if any exception occurs during the processing of a chunk, the transaction will be rolled back and no updates will be committed to the database. More details about this in the reference documentation here.



Hope this helps.






share|improve this answer


























  • it helped thanks.

    – Sandeep Thaker
    Nov 16 '18 at 11:03
















1














You can proceed in two steps:




  • step1 (tasklet): make the rest call and save the result in a file (remove the file after the job if necessary)

  • step2 (chunk-oriented): read employee items and update their statuses in the database


For the writer, you can use a JdbcBatchItemWriter configured with a sql statement like: update table employee set status = ? where id = ?.



As per the step failure question, if any exception occurs during the processing of a chunk, the transaction will be rolled back and no updates will be committed to the database. More details about this in the reference documentation here.



Hope this helps.






share|improve this answer


























  • it helped thanks.

    – Sandeep Thaker
    Nov 16 '18 at 11:03














1












1








1







You can proceed in two steps:




  • step1 (tasklet): make the rest call and save the result in a file (remove the file after the job if necessary)

  • step2 (chunk-oriented): read employee items and update their statuses in the database


For the writer, you can use a JdbcBatchItemWriter configured with a sql statement like: update table employee set status = ? where id = ?.



As per the step failure question, if any exception occurs during the processing of a chunk, the transaction will be rolled back and no updates will be committed to the database. More details about this in the reference documentation here.



Hope this helps.






share|improve this answer















You can proceed in two steps:




  • step1 (tasklet): make the rest call and save the result in a file (remove the file after the job if necessary)

  • step2 (chunk-oriented): read employee items and update their statuses in the database


For the writer, you can use a JdbcBatchItemWriter configured with a sql statement like: update table employee set status = ? where id = ?.



As per the step failure question, if any exception occurs during the processing of a chunk, the transaction will be rolled back and no updates will be committed to the database. More details about this in the reference documentation here.



Hope this helps.







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 16 '18 at 10:03

























answered Nov 16 '18 at 9:33









Mahmoud Ben HassineMahmoud Ben Hassine

5,4051717




5,4051717













  • it helped thanks.

    – Sandeep Thaker
    Nov 16 '18 at 11:03



















  • it helped thanks.

    – Sandeep Thaker
    Nov 16 '18 at 11:03

















it helped thanks.

– Sandeep Thaker
Nov 16 '18 at 11:03





it helped thanks.

– Sandeep Thaker
Nov 16 '18 at 11:03




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53333316%2fupdate-table-on-spring-batch-failure%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

List item for chat from Array inside array React Native

Thiostrepton

Caerphilly