Reputation: 16
I am working on a time series analysis application using R programming and it is working fine on my local machine and now the problem started with the deployment procedure of R program code to azure cognitive services.
As per my research I found that under batch processing we can implement MSR server creation and I am unable to find the document which was created.
Error: Could not index document because some of the document's data was not valid
I was expecting to create MSRdeploy procedure and received this error.
Any error rectification mechanisms are helpful.
Upvotes: 0
Views: 64
Reputation: 1683
Error: Could not index document because some of the document's data was not valid
This could be the error occurred because of the data type of the fields extracted using the indexer is not compatible with the model. The indexer of the corresponding model and the target model might be different. There is also another chance there to get error while extracting the JSON entry with the string value.
As there is error in deployment, check with the flow of deployment using MSRdeploy.
Follow the below steps to perform the MSRdeploy.
alias rserver='/usr/local/bin/Revo64-9.0'
alias radmin='sudo /usr/local/bin/dotnet/usr/lib64/microsoft-deployr/9.0.1/Microsoft.DeployR.Utils.AdminUtil/Microsoft.DeployR.Utils.AdminUtil.dll'
Credit: Revolution Analytics
Upvotes: 0