You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm running a Springboot (2.5.9) service that creates poolable StateMachine 3.2.0 instances. Java SDK version is 11.0.17
I'm noticing a weird behavior when the service runs within OpenShift 4' Pod; All created statemachine instances run the same parallel thread whereas behavior is normal on my laptop running Windows OS. This is a major issue as designed concurrent logics run the same thread leading to inconsistent state.
Thanks a lot for any hint!
Pod's running OS
$ uname -a
Linux gin-backend-numerisation-dev-5897964856-vplzb 4.18.0-305.57.1.el8_4.x86_64 #1 SMP Tue Jul 5 17:55:55 EDT 2022 x86_64 x86_64 x86_64 GNU/Linux
2023-04-12 08:37:48.128 [GIN] [main] INFO c.q.h.g.SpringBootApplication - Started SpringBootApplication in 70.821 seconds (JVM running for 74.85)
2023-04-12 08:37:48.212 [GIN] [main] INFO c.q.h.g.SpringBootApplication - Starting State Machine [Instance_1]...
2023-04-12 08:37:48.693 [GIN] [main] INFO c.q.h.g.s.StateMachineEventListener - ----- State entered [INITIAL]
2023-04-12 08:37:48.702 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State exited [INITIAL]
2023-04-12 08:37:48.705 [GIN] [main] INFO c.q.h.g.s.StateMachineEventListener - ----- State changed from [null] to [INITIAL]
2023-04-12 08:37:48.707 [GIN] [main] INFO c.q.h.g.s.StateMachineEventListener - ----- state machine started: [Instance_1]
2023-04-12 08:37:48.707 [GIN] [main] INFO c.q.h.g.SpringBootApplication - Started [Instance_1]...
2023-04-12 08:37:48.708 [GIN] [main] INFO c.q.h.g.SpringBootApplication - Starting State Machine [Instance_2]...
2023-04-12 08:37:48.709 [GIN] [main] INFO c.q.h.g.s.StateMachineEventListener - ----- State entered [INITIAL]
2023-04-12 08:37:48.798 [GIN] [main] INFO c.q.h.g.s.StateMachineEventListener - ----- State changed from [null] to [INITIAL]
2023-04-12 08:37:48.798 [GIN] [main] INFO c.q.h.g.s.StateMachineEventListener - ----- state machine started: [Instance_2]
2023-04-12 08:37:48.799 [GIN] [main] INFO c.q.h.g.SpringBootApplication - Started [Instance_2]...
2023-04-12 08:37:48.802 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State entered [STARTED]
2023-04-12 08:37:48.813 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State changed from [INITIAL] to [STARTED]
2023-04-12 08:37:48.815 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State exited [INITIAL]
2023-04-12 08:37:48.816 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State entered [STARTED]
2023-04-12 08:37:48.817 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State changed from [INITIAL] to [STARTED]
2023-04-12 08:37:48.821 [GIN] [parallel-1] INFO c.q.h.g.s.a.StateMachineAction -
State Machine: [Instance_1]
Received message: [null]
From: [INITIAL]
To: [STARTED]
Running action: [StartAction]
2023-04-12 08:37:48.900 [GIN] [parallel-1] INFO c.q.h.g.s.a.StateMachineAction - --------------------- Waiting for future state event...
2023-04-12 08:37:53.699 [GIN] [GIN-Async1] INFO c.q.h.g.s.BlobStorageService - Container [aqdepot] list [LZ-202202349-203262368-D.tif]
2023-04-12 08:37:53.699 [GIN] [GIN-Async1] INFO c.q.h.g.s.a.StateMachineAction - ----------------------- Completing future state event [REJECT_DOCUMENT_EVENT]
2023-04-12 08:37:53.699 [GIN] [parallel-1] INFO c.q.h.g.s.a.StateMachineAction - ------------------- Consumed completed future state event [REJECT_DOCUMENT_EVENT]
2023-04-12 08:37:53.704 [GIN] [parallel-1] INFO c.q.h.g.s.a.StateMachineAction - -------------------- sending event [REJECT_DOCUMENT_EVENT]
2023-04-12 08:37:53.797 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State exited [STARTED]
2023-04-12 08:37:53.807 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State entered [REJECT_DOCUMENT]
2023-04-12 08:37:53.808 [GIN] [parallel-1] INFO c.q.h.g.s.StateMachineEventListener - ----- State changed from [STARTED] to [REJECT_DOCUMENT]
2023-04-12 08:37:53.813 [GIN] [parallel-1] INFO c.q.h.g.s.a.StateMachineAction - ----- consuming state event [REJECT_DOCUMENT_EVENT]
2023-04-12 08:37:53.813 [GIN] [parallel-1] INFO c.q.h.g.s.a.StateMachineAction -
State Machine: [Instance_2]
Received message: [null]
From: [INITIAL]
To: [STARTED]
Running action: [StartAction]
2023-04-12 08:37:53.828 [GIN] [parallel-1] INFO c.q.h.g.s.a.StateMachineAction - --------------------- Waiting for future state event...
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I'm running a Springboot (2.5.9) service that creates poolable StateMachine 3.2.0 instances. Java SDK version is 11.0.17
I'm noticing a weird behavior when the service runs within OpenShift 4' Pod; All created statemachine instances run the same parallel thread whereas behavior is normal on my laptop running Windows OS. This is a major issue as designed concurrent logics run the same thread leading to inconsistent state.
Thanks a lot for any hint!
Beta Was this translation helpful? Give feedback.
All reactions