hadoop - Streaming through .NET application in Azure -
I have a .NET executable through which I want to stream data to pig on my AZURE HDIC cluster. I've uploaded it to my container, but when I try to stream data through it, I get the following error:
I define and do my actions as follows:
I wasb: ///util/mystreamApp.exe and it was wasb Tried to fully qualify as: //myContainer@myAccount.blob.core.windows.net/util/mystreamApp.exe , but in every case, I get the message that my file exists is not.
Indicates that you use the wasb: ///example/data/davinci.txt to access the Azure Blob storage path in the HDICite /example/data/davinci.txt , which indicates that I know there should be no problem with the path.
This problem has been detected that I was not declaring a dependency on behalf of the caller. I've got a console app that creates a pig job:
var job = new PigJobCreateParameters () {query = myPigQuery, StatusFolder = myStatusFolder}; But I need to add to the job. Files Archive Dependency on My File:
job.Files.Add ("wasbs: //myContainer@myAccount.blob.core.windows.net/util/mystreamApp.exe" );
Comments
Post a Comment