Need guidance on Converting an Custom Trigger from In-Process to Isolated Mode #2734
ssinaikhandeparker
started this conversation in
Feedback
Replies: 1 comment 1 reply
-
@ssinaikhandeparker maybe that will help. You'll find there a repo that contains the code of an ActiveMQ custom trigger (in-process/isolated) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are currently working on migrating our function apps to Isolated Mode from the in-process mode. As of now we have successfully done the migration for function apps that use standard function triggers like timer trigger, servicebus trigger etc.
However we are facing issues migrating functions that use a custom triggers. We have a few functions which are subscribing to an external source for polling and fetching messages messages. To handle this behavior we wrote a custom trigger using in-process mode. But now since we are migrating to isolated mode we would like to convert this custom trigger to the isolated mode.
The Custom Trigger I am referring above is named as "UMTrigger". It is used to subscribe to an external source. This UMTrigger was built for the in-process mode using the Microsoft.Azure.WebJobs library. Now to convert it to work in isolated mode we are trying to replace relevant Microsoft.Azure.WebJobs to Microsoft.Azure.Functions.Worker.
We seek some assistance on this topic which would suggest the relevant Worker Process libraries that we need replace or some guidance material on how to build a custom trigger in isolated mode. We have tried to look for any documentation which can guide us. But there is not enough material on this subject.
Beta Was this translation helpful? Give feedback.
All reactions