Questions tagged [netflix-conductor]

An open source orchestration library for micro services orchestration in the cloud. Allows the creation and execution of scalable complex workflows with emphasis on Dev Ops management.

46 questions
9
votes
4 answers

How do I register a microservice (or its methods) to Task in Netflix Conductor?

I was looking for a more sophisticated workflow than Saga from AxonFramework -- which we are currently using -- and I found one in Netflix Conductor. Sadly, I have searched the Internet for a decent example but to no avail. My question is, in…
ben.jamin
  • 217
  • 1
  • 3
  • 6
5
votes
1 answer

Using Kafka with Netflix Conductor

I want to know if there is an easy way to connect Kafka and Netflix Conductor (instead of SQS)? At now, it seems to work only with Amazon SQS. Moreover, it seems that it is only possible to make one action by task. Is there a way to execute more…
nicoSalsa
  • 59
  • 1
  • 3
4
votes
1 answer

Netflix conductor server local docker container is unhealthy

I am following the steps here to install & run Netflix Conductor locally on my desktop. I am trying to use docker-compose to bring all the services up. After initial problems of incorrect docker version, docker compose version, docker compose build…
asr9
  • 2,440
  • 1
  • 21
  • 37
4
votes
1 answer

Netflix Conductor SQS

Has anyone successfully integrated Netflix Conductor with AWS SQS? I have tried below steps but the workflow is not triggered. Create SQS queue Added AWS creds to environment Registered tasks, workflows and the event listener below { "name":…
danca
  • 509
  • 4
  • 11
3
votes
1 answer

How to set retention time in Netflix Conductor?

We use MySQL as database for working with Netflix Conductor. Is it possible to set time to keep workflow execution history (in MySQL and in Elasticsearch)?
den123
  • 793
  • 1
  • 12
  • 27
3
votes
1 answer

Netflix/Conductor prints too many dynomite related logs

I'm using Netflix/Conductor with docker-compose. When I set the docker-compose.yml file up I see too many lines related to dynomite. I think it consumes a lot of memory and slows down my system. I have to mention that Conductor doesn't use the…
ksadjad
  • 593
  • 8
  • 20
3
votes
4 answers

Netflix Conductor as a workflow engine solution

Can someone share a tutorial on how to use Netflix Conductor? Is there like a code example on github or something? I've done a sample on Amazon SWF and understand how the whole thing works but need some pointers on getting started with Conductor.
speedygonzales
  • 169
  • 2
  • 7
2
votes
1 answer

Why netflix conductor does not provide a way to run tasks/subworkflows asynchronously?

Only several task can be run async: HTTP, EVENT, KAFKA. But why there is no a way to run SIMPLE tasks async. Especially would be very useful feature to run sub workflows async. The only workaround(and only for subworkflows) is to send event which…
nikolayandr
  • 171
  • 1
  • 1
  • 11
2
votes
0 answers

netflix conductor - http type task - should not start with workflow - to achieve retry

I have created a task with retry of 5 times.And created a workflow using the task of http type(my rest url api endpoint) for input parameters. But the moment I run the workflow - it is hitting the rest api. where actually I want to run the task by…
Manu
  • 1,243
  • 5
  • 17
  • 43
1
vote
1 answer

forked subworkflows all to run to completion but fail the parent workflow if one or more do fail

consider a case in netflix conductor (or orkes) where 2 subworkflows are forked in paralel. The default behaviour of FORK + SUB_WORKFLOW + JOIN tasks is that if the first subworkflow fails, the second one is aborted midway through execution and…
mkleint
  • 2,281
  • 1
  • 14
  • 17
1
vote
2 answers

Could Run netflix conductor with postgress -

I am trying to follow the simple tutorial of Netflix conductor but could not run the postgress or any other persistence option I have got APPLICATION FAILED TO START and can not use the persistence option conductor 3.9.10 using docker-compose os:…
1
vote
3 answers

Where should I store the JSON retrieved from a GET request so that I have access to it in a v-for directive?

I'm pretty new to using APIs, so please forgive me if this is really trivial. There are two GET requests I want to use: /workflow/search will allow me to get an entire list of workflows along with their data (i.e. the workflow…
aztheog
  • 43
  • 4
1
vote
0 answers

Apache Airflow, fetching and executing tasks

I have been using Netflix Conductor as workflow orchestration before and Apache Airflow is new to me. In Conductor, the execution of workflows works in these steps: Workflow starts via REST API call Each separate worker (service) polls its own…
Mr.D
  • 7,353
  • 13
  • 60
  • 119
1
vote
0 answers

Using Netflix Conductor Orchestration on AWS ECS

We are currently working on a approach which will work with collaboration of multiple microservices to provide us with solution. Dataflow example: These services will be deployed in ECS with ALB in front of it. I want to stitch together a workflow…
Saurabh Sharma
  • 325
  • 2
  • 4
  • 15
1
vote
0 answers

Netflix Conductor - java.exe error=206 The filename or extension is too long

In my windows 10 machine I am trying to run Netflix Conductor in memory server. and on this command gradle server getting this error. Caused by: java.io.IOException: Cannot run program "C:\Program Files\Java\jdk1.8.0_181\bin\java.exe" (in directory…
Manu
  • 1,243
  • 5
  • 17
  • 43
1
2 3 4