Tengo una duda, creo que me perdi algo en el paso a paso del UiDemo.
Hice todos los pasos y me fije en el orquestrador y esta la cola con los datos. Y al correr todo el proceso desde el main lo hace bien se logea y comienza a ingresar datos hasta que para inesperadamente, pero creo que esto ultimo es porque el Orquestador esta con dramas.
Mi consulta va a que entiendo que debo tener 2 workflows, dispatcher y performer. pero ahi en el performer me perdi, me pregunto si el performer sera lo mismo del workflow que llaman process?
In performer, use a get transaction item activity which will get the queue item from orchestrator, and then perform your required steps, again loop back to get transaction to get the next queue item.
Spanish:
Hola,
En intérprete, use una actividad para obtener el elemento de transacción que obtendrá el elemento de la cola del orquestador y luego realice los pasos necesarios, una vez más retroceda para obtener la transacción y obtener el siguiente elemento de la cola
(Please if there is any mistake in language means please contact google translator.)
Hi,
If you are getting the data from queue, then there might be some issue with passing to the required workflow
Please attach your performer screenshot. So, we can check what might be missing in the flow
the thing is that I got lost with the performer I don’t get it why it is necessary the performer or I should I get the data from the performer ? and that case … where I should create that performer? and where I should invoke it?
Probably I am missing some step … let’s see … first I am logging ok in UiDemo, then I have a workflow who read a excel and the data is stored in a queue in Orchestrator. Then for each item in the queue I got the information and that information is entered into UiDemo. All that without using the performer.
Creo que no me he explicado bien: tengo un workflow que se llama Dispatcher – UploadQueue que corresponde al Dispatcher. Y el workflow que obtiene los queue items es el GetTransactionData segun lo que puedo ver al seguir el flujo. Leo el paso a paso y no me aparece explicitamente donde ni como crearlo.
Solo sale esto …
All right! The Dispatcher process has been built. Now let’s move on to the Performer!
• The input for the Performer is an Orchestrator queue, which means there are very small
changes we need to make in the Framework. We start with the Config file and match the
QueueName to the one we used earlier. We need one more setting – a credential name …
So now I will try to explain in english … I follow the step by step and I dont get it how and where I should create the performer … The Dispatcher is clear I think because the workflow name is similar …at least start as dispatcher …but the other one not.
But I assume that the workflow Dispatcher is the same that then we named Dispatcher – UploadQueue right?
So … What About the Performer ? I understand the idea …just that I followed step by step and the reviewing again to understand … I am doing the match of information and is not clear …
Hi,
The dispatcher is to load the items to queue of orchestrator.
The performer is a separate workflow that will fetch each queue item loaded by dispatcher at once, to perform the next steps as per the documents for each of the queue item.
Hi,
Yes it is up to you if you want it has dispatcher and performer separate you can do, Or if you want both in a single workflow you can do that as well.
Using dispatcher and performer will help us understand more clearly is what I feel.