Uwaga
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
This article demonstrates how to develop Apache Spark applications on Azure HDInsight using the Azure Toolkit plug-in for the IntelliJ IDE. Azure HDInsight is a managed, open-source analytics service in the cloud. The service allows you to use open-source frameworks like Hadoop, Apache Spark, Apache Hive, and Apache Kafka.
You can use the Azure Toolkit plug-in in a few ways:
- Develop and submit a Scala Spark application to an HDInsight Spark cluster.
- Access your Azure HDInsight Spark cluster resources.
- Lokalnie twórz i uruchamiaj aplikację Platformy Spark w języku Scala.
Z tego artykułu dowiesz się, jak wykonywać następujące działania:
- Use the Azure Toolkit for IntelliJ plug-in
- Develop Apache Spark applications
- Submit an application to Azure HDInsight cluster
Wymagania wstępne
Klaster Apache Spark w usłudze HDInsight. Aby uzyskać instrukcje, zobacz Tworzenie klastra platformy Apache Spark w usłudze Azure HDInsight. Only HDInsight clusters in public cloud are supported while other secure cloud types (e.g. government clouds) are not.
Oracle Java Development kit. This article uses Java version 8.0.202.
IntelliJ IDEA. This article uses IntelliJ IDEA Community 2018.3.4.
Azure Toolkit for IntelliJ. Zobacz Installing the Azure Toolkit for IntelliJ (Instalowanie zestawu Azure Toolkit for IntelliJ).
Install Scala plugin for IntelliJ IDEA
Steps to install the Scala plugin:
Otwórz środowisko IntelliJ IDEA.
On the welcome screen, navigate to Configure>Plugins to open the Plugins window.
Select Install for the Scala plugin that is featured in the new window.
After the plugin installs successfully, you must restart the IDE.
Create a Spark Scala application for an HDInsight Spark cluster
Uruchom środowisko IntelliJ IDEA i wybierz pozycję Create New Project (Utwórz nowy projekt), aby otworzyć okno New Project (Nowy projekt).
Wybierz pozycję Azure Spark/HDInsight w okienku po lewej stronie.
Select Spark Project (Scala) from the main window.
From the Build tool drop-down list, select one of the following options:
Maven for Scala project-creation wizard support.
SBT — na potrzeby zarządzania zależnościami i kompilacji projektu Scala.
Wybierz Dalej.
In the New Project window, provide the following information:
Majątek Opis Nazwa projektu Wprowadź nazwę. Ten artykuł używa myApp
.Lokalizacja projektu Enter the location to save your project. Zestaw SDK projektu This field might be blank on your first use of IDEA. Select New... and navigate to your JDK. Spark Version The creation wizard integrates the proper version for Spark SDK and Scala SDK. Jeśli wersja klastra Spark jest starsza niż 2.0, wybierz wartość Spark 1.x. W przeciwnym razie wybierz pozycję Spark2.x. W tym przykładzie używana jest wersja Spark 2.3.0 (Scala 2.11.8). Wybierz Zakończ Udostępnienie projektu może potrwać kilka minut.
Projekt Spark automatycznie tworzy dla Ciebie artefakt. To view the artifact, do the following steps:
a. From the menu bar, navigate to File>Project Structure....
b. From the Project Structure window, select Artifacts.
c. Select Cancel after viewing the artifact.
Add your application source code by doing the following steps:
a. From Project, navigate to myApp>src>main>scala.
b. Right-click scala, and then navigate to New>Scala Class.
c. In the Create New Scala Class dialog box, provide a name, select Object in the Kind drop-down list, and then select OK.
d. The myApp.scala file then opens in the main view. Replace the default code with the code found below:
import org.apache.spark.SparkConf import org.apache.spark.SparkContext object myApp{ def main (arg: Array[String]): Unit = { val conf = new SparkConf().setAppName("myApp") val sc = new SparkContext(conf) val rdd = sc.textFile("wasbs:///HdiSamples/HdiSamples/SensorSampleData/hvac/HVAC.csv") //find the rows that have only one digit in the seventh column in the CSV file val rdd1 = rdd.filter(s => s.split(",")(6).length() == 1) rdd1.saveAsTextFile("wasbs:///HVACOut") } }
The code reads the data from HVAC.csv (available on all HDInsight Spark clusters), retrieves the rows that have only one digit in the seventh column in the CSV file, and writes the output to
/HVACOut
under the default storage container for the cluster.
Connect to your HDInsight cluster
User can either sign in to your Azure subscription, or link a HDInsight cluster. Use the Ambari username/password or domain joined credential to connect to your HDInsight cluster.
Zaloguj się do subskrypcji platformy Azure
From the menu bar, navigate to View>Tool Windows>Azure Explorer.
From Azure Explorer, right-click the Azure node, and then select Sign In.
In the Azure Sign In dialog box, choose Device Login, and then select Sign in.
In the Azure Device Login dialog box, click Copy&Open.
In the browser interface, paste the code, and then click Next.
Enter your Azure credentials, and then close the browser.
After you're signed in, the Select Subscriptions dialog box lists all the Azure subscriptions that are associated with the credentials. Select your subscription and then select the Select button.
From Azure Explorer, expand HDInsight to view the HDInsight Spark clusters that are in your subscriptions.
To view the resources (for example, storage accounts) that are associated with the cluster, you can further expand a cluster-name node.
Łączenie klastra
You can link an HDInsight cluster by using the Apache Ambari managed username. Podobnie, w przypadku klastra usługi HDInsight przyłączonego do domeny, można połączyć się, używając domeny i nazwy użytkownika, takiej jak user1@contoso.com
. Also you can link Livy Service cluster.
From the menu bar, navigate to View>Tool Windows>Azure Explorer.
From Azure Explorer, right-click the HDInsight node, and then select Link A Cluster.
The available options in the Link A Cluster window will vary depending on which value you select from the Link Resource Type drop-down list. Enter your values and then select OK.
HDInsight Cluster
Majątek Wartość Link Resource Type Select HDInsight Cluster from the drop-down list. Cluster Name/URL Enter cluster name. Typ uwierzytelniania Leave as Basic Authentication Nazwa użytkownika Enter cluster user name, default is admin. Hasło Enter password for user name. Livy Service
Majątek Wartość Link Resource Type Select Livy Service from the drop-down list. Livy Endpoint Enter Livy Endpoint Nazwa klastra Enter cluster name. Yarn Endpoint Opcjonalny. Typ uwierzytelniania Leave as Basic Authentication Nazwa użytkownika Enter cluster user name, default is admin. Hasło Enter password for user name.
You can see your linked cluster from the HDInsight node.
You also can unlink a cluster from Azure Explorer.
Run a Spark Scala application on an HDInsight Spark cluster
After creating a Scala application, you can submit it to the cluster.
From Project, navigate to myApp>src>main>scala>myApp. Right-click myApp, and select Submit Spark Application (It will likely be located at the bottom of the list).
In the Submit Spark Application dialog window, select 1. Spark on HDInsight.
In the Edit configuration window, provide the following values and then select OK:
Majątek Wartość Spark clusters (Linux only) Select the HDInsight Spark cluster on which you want to run your application. Select an Artifact to submit Leave default setting. Main class name The default value is the main class from the selected file. You can change the class by selecting the ellipsis(...) and choosing another class. Konfiguracje zadań You can change the default keys and, or values. For more information, see Apache Livy REST API. Command-line arguments You can enter arguments separated by space for the main class if needed. Referenced Jars and Referenced Files You can enter the paths for the referenced Jars and files if any. You can also browse files in the Azure virtual file system, which currently only supports ADLS Gen 2 cluster. For more information: Apache Spark Configuration. See also, How to upload resources to cluster. Job Upload Storage Expand to reveal additional options. Typ magazynu Select Use Azure Blob to upload from the drop-down list. Konto magazynu Enter your storage account. Storage Key Enter your storage key. Storage Container Select your storage container from the drop-down list once Storage Account and Storage Key has been entered. Select SparkJobRun to submit your project to the selected cluster. The Remote Spark Job in Cluster tab displays the job execution progress at the bottom. You can stop the application by clicking the red button.
Debug Apache Spark applications locally or remotely on an HDInsight cluster
We also recommend another way of submitting the Spark application to the cluster. You can do so by setting the parameters in the Run/Debug configurations IDE. See Debug Apache Spark applications locally or remotely on an HDInsight cluster with Azure Toolkit for IntelliJ through SSH.
Access and manage HDInsight Spark clusters by using Azure Toolkit for IntelliJ
You can do various operations by using Azure Toolkit for IntelliJ. Most of the operations are started from Azure Explorer. From the menu bar, navigate to View>Tool Windows>Azure Explorer.
Uzyskiwanie dostępu do widoku zadania
From Azure Explorer, navigate to HDInsight><Your Cluster>>Jobs.
In the right pane, the Spark Job View tab displays all the applications that were run on the cluster. Wybierz nazwę aplikacji, dla której chcesz wyświetlić więcej szczegółów.
To display basic running job information, hover over the job graph. To view the stages graph and information that every job generates, select a node on the job graph.
To view frequently used logs, such as Driver Stderr, Driver Stdout, and Directory Info, select the Log tab.
You can view the Spark history UI and the YARN UI (at the application level). Select a link at the top of the window.
Uzyskiwanie dostępu do serwera historii platformy Spark
From Azure Explorer, expand HDInsight, right-click your Spark cluster name, and then select Open Spark History UI.
When you're prompted, enter the cluster's admin credentials, which you specified when you set up the cluster.
On the Spark history server dashboard, you can use the application name to look for the application that you just finished running. W poprzednim kodzie należy ustawić nazwę aplikacji przy użyciu polecenia
val conf = new SparkConf().setAppName("myApp")
. Your Spark application name is myApp.
Start the Ambari portal
From Azure Explorer, expand HDInsight, right-click your Spark cluster name, and then select Open Cluster Management Portal(Ambari).
Po wyświetleniu monitu wprowadź poświadczenia administratora dla klastra. You specified these credentials during the cluster setup process.
Zarządzanie subskrypcjami platformy Azure
By default, Azure Toolkit for IntelliJ lists the Spark clusters from all your Azure subscriptions. If necessary, you can specify the subscriptions that you want to access.
From Azure Explorer, right-click the Azure root node, and then select Select Subscriptions.
From the Select Subscriptions window, clear the check boxes next to the subscriptions that you don't want to access, and then select Close.
Spark Console
You can run Spark Local Console(Scala) or run Spark Livy Interactive Session Console(Scala).
Spark Local Console(Scala)
Ensure you've satisfied the WINUTILS.EXE prerequisite.
From the menu bar, navigate to Run>Edit Configurations....
From the Run/Debug Configurations window, in the left pane, navigate to Apache Spark on HDInsight>[Spark on HDInsight] myApp.
From the main window, select the
Locally Run
tab.Provide the following values, and then select OK:
Majątek Wartość Job main class The default value is the main class from the selected file. You can change the class by selecting the ellipsis(...) and choosing another class. Zmienne środowiskowe Ensure the value for HADOOP_HOME is correct. WINUTILS.exe location Ensure the path is correct. From Project, navigate to myApp>src>main>scala>myApp.
From the menu bar, navigate to Tools>Spark Console>Run Spark Local Console(Scala).
Then two dialogs may be displayed to ask you if you want to auto fix dependencies. If so, select Auto Fix.
The console should look similar to the picture below. In the console window type
sc.appName
, and then press ctrl+Enter. The result will be shown. You can end the local console by clicking red button.
Spark Livy Interactive Session Console(Scala)
From the menu bar, navigate to Run>Edit Configurations....
From the Run/Debug Configurations window, in the left pane, navigate to Apache Spark on HDInsight>[Spark on HDInsight] myApp.
From the main window, select the
Remotely Run in Cluster
tab.Provide the following values, and then select OK:
Majątek Wartość Spark clusters (Linux only) Select the HDInsight Spark cluster on which you want to run your application. Main class name The default value is the main class from the selected file. You can change the class by selecting the ellipsis(...) and choosing another class. From Project, navigate to myApp>src>main>scala>myApp.
From the menu bar, navigate to Tools>Spark Console>Run Spark Livy Interactive Session Console(Scala).
The console should look similar to the picture below. In the console window type
sc.appName
, and then press ctrl+Enter. The result will be shown. You can end the local console by clicking red button.
Send Selection to Spark Console
It's convenient for you to foresee the script result by sending some code to the local console or Livy Interactive Session Console(Scala). You can highlight some code in the Scala file, then right-click Send Selection To Spark Console. The selected code will be sent to the console. The result will be displayed after the code in the console. The console will check the errors if existing.
Integrate with HDInsight Identity Broker (HIB)
Connect to your HDInsight ESP cluster with ID Broker (HIB)
You can follow the normal steps to sign in to Azure subscription to connect to your HDInsight ESP cluster with ID Broker (HIB). After sign-in, you'll see the cluster list in Azure Explorer. For more instructions, see Connect to your HDInsight cluster.
Run a Spark Scala application on an HDInsight ESP cluster with ID Broker (HIB)
You can follow the normal steps to submit job to HDInsight ESP cluster with ID Broker (HIB). Refer to Run a Spark Scala application on an HDInsight Spark cluster for more instructions.
We upload the necessary files to a folder named with your sign-in account, and you can see the upload path in the configuration file.
Spark console on an HDInsight ESP cluster with ID Broker (HIB)
You can run Spark Local Console(Scala) or run Spark Livy Interactive Session Console(Scala) on an HDInsight ESP cluster with ID Broker (HIB). Refer to Spark Console for more instructions.
Uwaga
For the HDInsight ESP cluster with Id Broker (HIB), link a cluster and debug Apache Spark applications remotely is not supported currently.
Rola tylko dla czytelnika
Gdy użytkownicy przesyłają zadanie do klastra z uprawnieniami tylko do odczytu, wymagane są poświadczenia systemu Ambari.
Połącz klaster z menu kontekstowego
Sign in with reader-only role account.
Z poziomu programu Azure Explorer rozwiń sekcję HDInsight, aby wyświetlić klastry HDInsight, które znajdują się w twojej subskrypcji. Klastry oznaczone jako "Role:Reader" mają uprawnienia wyłącznie do roli czytelnika.
Right-click the cluster with reader-only role permission. Wybierz pozycję Połącz ten klaster z menu kontekstowego, aby połączyć klaster. Enter the Ambari username and Password.
Jeśli klaster zostanie pomyślnie połączony, usługa HDInsight zostanie odświeżona. The stage of the cluster will become linked.
Link cluster by expanding Jobs node
Kliknij węzeł Zadania , zostanie wyświetlone okno Odmowa dostępu do zadań klastra .
Kliknij pozycję Połącz ten klaster , aby połączyć klaster.
Link cluster from Run/Debug Configurations window
Create an HDInsight Configuration. Then select Remotely Run in Cluster.
Select a cluster, which has reader-only role permission for Spark clusters(Linux only). Warning message shows out. You can Click Link this cluster to link cluster.
Pokaż konta przechowywania
W przypadku klastrów z uprawnieniami tylko do odczytu kliknij węzeł Konta magazynu , zostanie wyświetlone okno Odmowa dostępu do magazynu . You can click Open Azure Storage Explorer to open Storage Explorer.
W przypadku połączonych klastrów kliknij węzeł Konta magazynu , zostanie wyświetlone okno Odmowa dostępu do magazynu . You can click Open Azure Storage to open Storage Explorer.
Convert existing IntelliJ IDEA applications to use Azure Toolkit for IntelliJ
You can convert the existing Spark Scala applications that you created in IntelliJ IDEA to be compatible with Azure Toolkit for IntelliJ. You can then use the plug-in to submit the applications to an HDInsight Spark cluster.
For an existing Spark Scala application that was created through IntelliJ IDEA, open the associated
.iml
file.At the root level, is a module element like the following text:
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
Edit the element to add
UniqueKey="HDInsightTool"
so that the module element looks like the following text:<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4" UniqueKey="HDInsightTool">
Zapisz zmiany. Your application should now be compatible with Azure Toolkit for IntelliJ. You can test it by right-clicking the project name in Project. The pop-up menu now has the option Submit Spark Application to HDInsight.
Czyszczenie zasobów
Jeśli nie zamierzasz nadal korzystać z tej aplikacji, usuń utworzony klaster, wykonując następujące czynności:
Zaloguj się do witryny Azure Portal.
W polu Wyszukaj w górnej części wpisz HDInsight.
Wybierz Klastry HDInsight pod Usługi.
In the list of HDInsight clusters that appears, select the ... next to the cluster that you created for this article.
Wybierz Usuń. Wybierz opcję Tak.
Errors and solution
Unmark the src folder as Sources if you get build failed errors as below:
Unmark the src folder as Sources to solution this issue:
Navigate to File and select the Project Structure.
Select the Modules under the Project Settings.
Select the src file and unmark as Sources.
Click on Apply button and then click on OK button to close the dialog.
Następne kroki
In this article, you learned how to use the Azure Toolkit for IntelliJ plug-in to develop Apache Spark applications written in Scala. Then submitted them to an HDInsight Spark cluster directly from the IntelliJ integrated development environment (IDE). Przejdź do następnego artykułu, aby dowiedzieć się, w jaki sposób można ściągnąć dane zarejestrowane na platformie Apache Spark do narzędzia analizy biznesowej, takiego jak usługa Power BI.