sande
sande

Reputation: 664

How to run jar file in Azure Data Factory (ADF)

I Have a Jar file. that takes arguments and perform certain actions.

EX:

java -jar MyJavaEx.jar dev

this jar file will execute some logic inside it and then prints some log.

I want run this job daily using ADF trigger. how to do this?

if this is not possible what's the best alternative approach.

Upvotes: 1

Views: 1226

Answers (1)

paulsm4
paulsm4

Reputation: 121799

If you're looking for a lightweight, serverless way to run your Java app, I'd consider Azure Functions.

You might find this document helpful:

Azure Functions Java developer guide

Upvotes: 2

Related Questions