我試圖從運行PowerShell中以下sqoop工作,但我結束了一個錯誤,說--schema是無法識別的參數:無法識別--schema參數sqoop工作
$sqoopDef = New-AzureRmHDInsightSqoopJobDefinition -Command "import --connect $connectionString --target-dir $targetDir --fields-terminated-by \t --lines-terminated-by \n -m $numMappers --table $tableName-- --schema $schema"
如果我嘗試從它運行的命令行運行相同的工作,沒有任何錯誤。 --schema參數是不是從powershell中支持的?
注意:我在Azure HdInsight上使用Spark 1.6.1 Linux羣集。 Sqoop版本是:1.4.6.2.4.2.0-258
謝謝!
我也懷疑這個命令被傳遞給了集羣,因此,它應該與它被稱爲(cmd或powershell)的地方沒有任何區別。無論如何,我已經嘗試了幾種不同的解決方案,包括刪除您提到的「 - 」,但它不起作用。 –