Kishore Banala

Results 28 comments of Kishore Banala

Hey @jackstenglein, that's awesome. You can start with a discussion in [Github issues](https://github.com/Netflix/conductor/issues) with a proposed solution(s). To get started with Conductor codebase, I'd recommend running in debug mode and...

@flavioschuindt So, the Http task moves directly to terminal state from SCHEDULED state, unless it is defined as asyncComplete, where it remains IN_PROGRESS waiting for a trigger from external service....

@flavioschuindt I don't see a reason why the task `concurrenceExecLimit ` is not respected for `redis-persistence` module. I'll try and debug with with module later. Also, are you testing this...

@jasondavindev Awesome, thanks for sharing. Do you mind putting this somewhere with instructions and sending us a PR linking to related section: https://github.com/Netflix/conductor/blob/main/RELATED.md. I believe this would help someone in...

@RaghavaGopaluni Thanks for reporting this. We'll have to run this workflow with a debugger to see why this is happening, and if there is any bug that could've caused it....

@roversnord While this is fairly simple to fix, we were thinking if this would break for some users, for eg., if they were using output data from the failed attempt(s)....

@andrea11 Apparently, the Semaphore implementation in LocalOnlyLock is not re-entrant, which explains the delays in obtaining the lock and thus evaluating the workflows. Replacing Semaphore with Java's `import java.util.concurrent.locks.ReentrantLock` might...

> However, with reentrantLock, you cannot release the lock from another Thread. @andrea11 Good point! > Maybe a solution could be to keep track of the latest Thread for each...

@jkaipa Interesting. If we're not wrong, we thought that you're looking at a debugging system with breakpoints. How about dry runs? We don't see the value breakpoints would provide in...

@Ismaley Is this something related to debug workflow implementation you mentioned about? If so, and if you think your implementation can be contributed to oss, do you mind adding the...