I created an ASA module and deployed it through Set Modules
but on reported by device
column is assigned NO
.
What is the reason and meaning of this status after succesfull deployment and how can I fix it ?
and this is the Route
for the Stream Analytics module:
Update : Also this module has aditional input with absolute path reference data.
I tried to deploy another seperate ASA module using simple Job with input, output and it works. So the problem must be in reference data
path ?
I have another module which downloads a file in ./file.txt
. (This should be in /app/file.txt ?)
I want the ASA module to read already downloaded file as a local reference data. What reference data directory should I put in the job
. Now I'm trying with /app/file.txt
"no" in "Reported by device" means this module doesn't has any status to report, usually it indicates that the module isn't created successfully. In your case, there must be error when bind the path of reference data to container during container creation.
what is your host os and container os? If your host os matches container os, please use the absolute path instead of ./ If you are running a Linux container on windows host, please first create a volume, populate the reference data to the volume and provide the absolute path in volume eg. Vol1/file1.txt
Thanks!