Use WebService input as query parameter in reader module in Azure ML?

Is it possible to use the parameters included in the webservice (with the name "Query" in my case) in SQL in the reader module.

I think that this is possible, but I can not find anywhere, like a template for these properties in the SQL query, so that it becomes dynamic.

dynamic query

+4
source share
2 answers

Currently, you have to implement the logic to insert the request key into the client application that invokes the web service. Support for parameterized SQL queries in our backlog functions.

+2
source

Source: https://habr.com/ru/post/1608571/


All Articles