Orchestrator 없이 Queue 사용하는 방법

오케스트레이터를 사용하지 않고 큐를 쓸 수 있는 방법이 있을까요?
엑셀을 이용한다든지, 그게 안 되면 DB 를 이용하는 식으로요.

@swseo

You have to write all the data in Excel first and put status as New initially. Then take one by one row from Excel file and process it. If it success then change status from New to Success else failed.

1 Like

안녕하세요
Orchestrator 없이는 Queue를 사용할수는 없습니다.
다만 Excel 및 DB를 큐처럼 사용하실수는 있을것 같은데요, 그렇게 하기 위해서는 Excel 및 DB에 맞게 Activity를 새로 만드셔서 사용하셔야 합니다.
Queue 사용으로 만들어진 Activity를 그대로 사용하실 수 는 없습니다.

2 Likes

In Excel case, can I read a row at the same time of appending rows? (Kind of Dispatcher and Performer)