Microsoft Azure 記事の 「HDInsight での Hadoop ジョブの送信」の項目13がうまくいかない
Microsoft の公式リファレンスを参考に作成したプログラムが正常に動作しません。
基本的には、 Microsoft Azure ドキュメントの 「HDInsight での Hadoop ジョブの送信」を参考にして作成しました。
毎回以下の JobCreationResults jobResults = jobClient.CreateHiveJob(hiveJobDefinition);
で終了してしまいうまくいきません。
Main()
関数の最後に次のコードをコピーして、ジョブを実行し、ジョブの完了を待ちます。// Submit the Hive job var jobClient = JobSubmissionClientFactory.Connect(creds); JobCreationResults jobResults = jobClient.CreateHiveJob(hiveJobDefinition); // Wait for the job to complete WaitForJobCompletion(jobResults, jobClient);
ご教示お願いいたします。