Is it a bad practice to switch threads within a transaction?
I wonder if switching threads within a transaction is simply asking for troubles?
Since following code is blocking one thread and doing things in other threads, it seems a waste, there must be better way than this, any advice or idea are welcome. Thanks in advance.
I am trying to load Something from database and save it after made some changes:
public Mono<SomeThing> updateSomething(int i) {
TransactionStatus tx = openTx();
return Mono.just(i)
.publishOn(workerThread)
.flatMap(this::loadSomethingFromDbById)
.map(Something::doSomeChange)
.flatMap(this::saveSomethingToDb)
.publishOn(Schedulers.immediate())
.doFinally(s -> closeTx(s));
}
public void blockingUpdateSomething() {
updateSomething(1).block();
}
- openTx/closeTx() are simple wrappers of PlatformTransactionManager, and .block() is used to keep this thread from other Transactions, can they work correctly?
- Mono<> is used to switch threads, which limits concurrent calls to the spring-data's JpaRepository, any better ways doing the limit?
Update:
Although the code could be more conventional if run in one thread synchronously, there might be a problem when there are lots of such threads.
Let's say 1000 threads do all jobs in their own thread, they might cause high cpu contentions.
Instead, if we offload jobs to limited threads, leaving those 1000 threads waiting for some result, the cpu contention should be less.
So, I might prefer the original thread dancing code, if transaction works well in that.
java spring-transactions project-reactor
add a comment |
I wonder if switching threads within a transaction is simply asking for troubles?
Since following code is blocking one thread and doing things in other threads, it seems a waste, there must be better way than this, any advice or idea are welcome. Thanks in advance.
I am trying to load Something from database and save it after made some changes:
public Mono<SomeThing> updateSomething(int i) {
TransactionStatus tx = openTx();
return Mono.just(i)
.publishOn(workerThread)
.flatMap(this::loadSomethingFromDbById)
.map(Something::doSomeChange)
.flatMap(this::saveSomethingToDb)
.publishOn(Schedulers.immediate())
.doFinally(s -> closeTx(s));
}
public void blockingUpdateSomething() {
updateSomething(1).block();
}
- openTx/closeTx() are simple wrappers of PlatformTransactionManager, and .block() is used to keep this thread from other Transactions, can they work correctly?
- Mono<> is used to switch threads, which limits concurrent calls to the spring-data's JpaRepository, any better ways doing the limit?
Update:
Although the code could be more conventional if run in one thread synchronously, there might be a problem when there are lots of such threads.
Let's say 1000 threads do all jobs in their own thread, they might cause high cpu contentions.
Instead, if we offload jobs to limited threads, leaving those 1000 threads waiting for some result, the cpu contention should be less.
So, I might prefer the original thread dancing code, if transaction works well in that.
java spring-transactions project-reactor
Feels like a very, very bad idea. I'd wonder why you're even asking.
– duffymo
Nov 16 '18 at 1:48
So, I guess I should never switch thread within transactions then? I'm asking because I wonder how to do transaction right, sorry if my code is too far away from that.
– Slacker
Nov 16 '18 at 2:19
Do it right? Don't switch threads.
– duffymo
Nov 16 '18 at 10:26
add a comment |
I wonder if switching threads within a transaction is simply asking for troubles?
Since following code is blocking one thread and doing things in other threads, it seems a waste, there must be better way than this, any advice or idea are welcome. Thanks in advance.
I am trying to load Something from database and save it after made some changes:
public Mono<SomeThing> updateSomething(int i) {
TransactionStatus tx = openTx();
return Mono.just(i)
.publishOn(workerThread)
.flatMap(this::loadSomethingFromDbById)
.map(Something::doSomeChange)
.flatMap(this::saveSomethingToDb)
.publishOn(Schedulers.immediate())
.doFinally(s -> closeTx(s));
}
public void blockingUpdateSomething() {
updateSomething(1).block();
}
- openTx/closeTx() are simple wrappers of PlatformTransactionManager, and .block() is used to keep this thread from other Transactions, can they work correctly?
- Mono<> is used to switch threads, which limits concurrent calls to the spring-data's JpaRepository, any better ways doing the limit?
Update:
Although the code could be more conventional if run in one thread synchronously, there might be a problem when there are lots of such threads.
Let's say 1000 threads do all jobs in their own thread, they might cause high cpu contentions.
Instead, if we offload jobs to limited threads, leaving those 1000 threads waiting for some result, the cpu contention should be less.
So, I might prefer the original thread dancing code, if transaction works well in that.
java spring-transactions project-reactor
I wonder if switching threads within a transaction is simply asking for troubles?
Since following code is blocking one thread and doing things in other threads, it seems a waste, there must be better way than this, any advice or idea are welcome. Thanks in advance.
I am trying to load Something from database and save it after made some changes:
public Mono<SomeThing> updateSomething(int i) {
TransactionStatus tx = openTx();
return Mono.just(i)
.publishOn(workerThread)
.flatMap(this::loadSomethingFromDbById)
.map(Something::doSomeChange)
.flatMap(this::saveSomethingToDb)
.publishOn(Schedulers.immediate())
.doFinally(s -> closeTx(s));
}
public void blockingUpdateSomething() {
updateSomething(1).block();
}
- openTx/closeTx() are simple wrappers of PlatformTransactionManager, and .block() is used to keep this thread from other Transactions, can they work correctly?
- Mono<> is used to switch threads, which limits concurrent calls to the spring-data's JpaRepository, any better ways doing the limit?
Update:
Although the code could be more conventional if run in one thread synchronously, there might be a problem when there are lots of such threads.
Let's say 1000 threads do all jobs in their own thread, they might cause high cpu contentions.
Instead, if we offload jobs to limited threads, leaving those 1000 threads waiting for some result, the cpu contention should be less.
So, I might prefer the original thread dancing code, if transaction works well in that.
java spring-transactions project-reactor
java spring-transactions project-reactor
edited Nov 16 '18 at 7:31
Slacker
asked Nov 16 '18 at 1:20
SlackerSlacker
558
558
Feels like a very, very bad idea. I'd wonder why you're even asking.
– duffymo
Nov 16 '18 at 1:48
So, I guess I should never switch thread within transactions then? I'm asking because I wonder how to do transaction right, sorry if my code is too far away from that.
– Slacker
Nov 16 '18 at 2:19
Do it right? Don't switch threads.
– duffymo
Nov 16 '18 at 10:26
add a comment |
Feels like a very, very bad idea. I'd wonder why you're even asking.
– duffymo
Nov 16 '18 at 1:48
So, I guess I should never switch thread within transactions then? I'm asking because I wonder how to do transaction right, sorry if my code is too far away from that.
– Slacker
Nov 16 '18 at 2:19
Do it right? Don't switch threads.
– duffymo
Nov 16 '18 at 10:26
Feels like a very, very bad idea. I'd wonder why you're even asking.
– duffymo
Nov 16 '18 at 1:48
Feels like a very, very bad idea. I'd wonder why you're even asking.
– duffymo
Nov 16 '18 at 1:48
So, I guess I should never switch thread within transactions then? I'm asking because I wonder how to do transaction right, sorry if my code is too far away from that.
– Slacker
Nov 16 '18 at 2:19
So, I guess I should never switch thread within transactions then? I'm asking because I wonder how to do transaction right, sorry if my code is too far away from that.
– Slacker
Nov 16 '18 at 2:19
Do it right? Don't switch threads.
– duffymo
Nov 16 '18 at 10:26
Do it right? Don't switch threads.
– duffymo
Nov 16 '18 at 10:26
add a comment |
1 Answer
1
active
oldest
votes
Answering your question, yes it is a bad practice to switch threads within a transaction. However your code doesn't seem to be doing that, it's just using a non-conventional way to lock a shared resource.
I think if I recode it like: @Transactional public SomeThing updateSomething(int i) { Something st = loadSomethingFromDbById(i); st.doSomeChange(); return saveSomethingToDb(st); } It's more conventional, but could not do things parallel, e.g. make two http request same time. Is that correct? Sorry for the formatting, can't get it right.
– Slacker
Nov 16 '18 at 6:24
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%2f53330136%2fis-it-a-bad-practice-to-switch-threads-within-a-transaction%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
Answering your question, yes it is a bad practice to switch threads within a transaction. However your code doesn't seem to be doing that, it's just using a non-conventional way to lock a shared resource.
I think if I recode it like: @Transactional public SomeThing updateSomething(int i) { Something st = loadSomethingFromDbById(i); st.doSomeChange(); return saveSomethingToDb(st); } It's more conventional, but could not do things parallel, e.g. make two http request same time. Is that correct? Sorry for the formatting, can't get it right.
– Slacker
Nov 16 '18 at 6:24
add a comment |
Answering your question, yes it is a bad practice to switch threads within a transaction. However your code doesn't seem to be doing that, it's just using a non-conventional way to lock a shared resource.
I think if I recode it like: @Transactional public SomeThing updateSomething(int i) { Something st = loadSomethingFromDbById(i); st.doSomeChange(); return saveSomethingToDb(st); } It's more conventional, but could not do things parallel, e.g. make two http request same time. Is that correct? Sorry for the formatting, can't get it right.
– Slacker
Nov 16 '18 at 6:24
add a comment |
Answering your question, yes it is a bad practice to switch threads within a transaction. However your code doesn't seem to be doing that, it's just using a non-conventional way to lock a shared resource.
Answering your question, yes it is a bad practice to switch threads within a transaction. However your code doesn't seem to be doing that, it's just using a non-conventional way to lock a shared resource.
answered Nov 16 '18 at 2:53
Perdi EstaquelPerdi Estaquel
6691520
6691520
I think if I recode it like: @Transactional public SomeThing updateSomething(int i) { Something st = loadSomethingFromDbById(i); st.doSomeChange(); return saveSomethingToDb(st); } It's more conventional, but could not do things parallel, e.g. make two http request same time. Is that correct? Sorry for the formatting, can't get it right.
– Slacker
Nov 16 '18 at 6:24
add a comment |
I think if I recode it like: @Transactional public SomeThing updateSomething(int i) { Something st = loadSomethingFromDbById(i); st.doSomeChange(); return saveSomethingToDb(st); } It's more conventional, but could not do things parallel, e.g. make two http request same time. Is that correct? Sorry for the formatting, can't get it right.
– Slacker
Nov 16 '18 at 6:24
I think if I recode it like: @Transactional public SomeThing updateSomething(int i) { Something st = loadSomethingFromDbById(i); st.doSomeChange(); return saveSomethingToDb(st); } It's more conventional, but could not do things parallel, e.g. make two http request same time. Is that correct? Sorry for the formatting, can't get it right.
– Slacker
Nov 16 '18 at 6:24
I think if I recode it like: @Transactional public SomeThing updateSomething(int i) { Something st = loadSomethingFromDbById(i); st.doSomeChange(); return saveSomethingToDb(st); } It's more conventional, but could not do things parallel, e.g. make two http request same time. Is that correct? Sorry for the formatting, can't get it right.
– Slacker
Nov 16 '18 at 6:24
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%2f53330136%2fis-it-a-bad-practice-to-switch-threads-within-a-transaction%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
Feels like a very, very bad idea. I'd wonder why you're even asking.
– duffymo
Nov 16 '18 at 1:48
So, I guess I should never switch thread within transactions then? I'm asking because I wonder how to do transaction right, sorry if my code is too far away from that.
– Slacker
Nov 16 '18 at 2:19
Do it right? Don't switch threads.
– duffymo
Nov 16 '18 at 10:26