Update table on Spring Batch Failure
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
add a comment |
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
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
add a comment |
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
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
spring spring-batch
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
it helped thanks.
– Sandeep Thaker
Nov 16 '18 at 11:03
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
it helped thanks.
– Sandeep Thaker
Nov 16 '18 at 11:03
add a comment |
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.
it helped thanks.
– Sandeep Thaker
Nov 16 '18 at 11:03
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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