Updated on 2024-07-04 GMT+08:00

Java Example Code

Prerequisites

A datasource connection has been created on the DLI management console. For details, see Enhanced Datasource Connections.

CSS Non-Security Cluster

  • Development description
    • Code implementation
      • Constructing dependency information and creating a Spark session
        1. Import dependencies.

          Maven dependency

          <dependency>
                      <groupId>org.apache.spark</groupId>
                      <artifactId>spark-sql_2.11</artifactId>
                      <version>2.3.2</version>
          </dependency>
          Import dependency packages.
          1
          import org.apache.spark.sql.SparkSession;
          
        2. Create a session.
          1
          SparkSession sparkSession = SparkSession.builder().appName("datasource-css").getOrCreate();
          
    • Connecting to data sources through SQL APIs
      1. Create a table to connect to a CSS data source.
        sparkSession.sql("create table css_table(id long, name string) using css options( 'es.nodes' = '192.168.9.213:9200', 'es.nodes.wan.only' = 'true','resource' ='/mytest')");
      2. Insert data.
        sparkSession.sql("insert into css_table values(18, 'John'),(28, 'Bob')");
      3. Query data.
        sparkSession.sql("select * from css_table").show();
      4. Delete the datasource connection table.
        sparkSession.sql("drop table css_table");
    • Submitting a Spark job
      1. Generate a JAR package based on the code file and upload the package to DLI.

        For details about console operations, see Creating a Package. For details about API operations, see Uploading a Package Group.

      2. In the Spark job editor, select the corresponding dependency module and execute the Spark job.

        For details about console operations, see Creating a Spark Job. For details about API operations, see Creating a Batch Processing Job.
        • If the Spark version is 2.3.2 (will be offline soon) or 2.4.5, specify the Module to sys.datasource.css when you submit a job.
        • If the Spark version is 3.1.1, you do not need to select a module. Configure Spark parameters (--conf).

          spark.driver.extraClassPath=/usr/share/extension/dli/spark-jar/datasource/css/*

          spark.executor.extraClassPath=/usr/share/extension/dli/spark-jar/datasource/css/*

        • For details about how to submit a job on the console, see the description of the table "Parameters for selecting dependency resources" in Creating a Spark Job.
        • For details about how to submit a job through an API, see the description of the modules parameter in Table 2 "Request parameters" in Creating a Batch Processing Job.
  • Complete example code
    • Maven dependency
      <dependency>
                  <groupId>org.apache.spark</groupId>
                  <artifactId>spark-sql_2.11</artifactId>
                  <version>2.3.2</version>
      </dependency>
    • Connecting to data sources through SQL APIs
       1
       2
       3
       4
       5
       6
       7
       8
       9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      23
      import org.apache.spark.sql.*;
       
      public class java_css_unsecurity {
       
          public static void main(String[] args) {
              SparkSession sparkSession = SparkSession.builder().appName("datasource-css-unsecurity").getOrCreate();
       
              // Create a DLI data table for DLI-associated CSS
              sparkSession.sql("create table css_table(id long, name string) using css options( 'es.nodes' = '192.168.15.34:9200', 'es.nodes.wan.only' = 'true', 'resource' = '/mytest')");
       
              //*****************************SQL model***********************************
              // Insert data into the DLI data table
              sparkSession.sql("insert into css_table values(18, 'John'),(28, 'Bob')");
       
              // Read data from DLI data table
              sparkSession.sql("select * from css_table").show();
       
              // drop table
              sparkSession.sql("drop table css_table");
       
              sparkSession.close();
          }
      }
      

CSS Security Cluster

  • Preparations

    Generate the keystore.jks and truststore.jks files and upload them to the OBS bucket. For details, see CSS Security Cluster Configuration.

  • Description of the development with HTTPS disabled
    If HTTPS is disabled, keystore.jks and truststore.jks files are not required. You only need to set SSL access parameters and credentials.
    • Constructing dependency information and creating a Spark session
      1. Import dependencies.

        Maven dependency

        <dependency>
                    <groupId>org.apache.spark</groupId>
                    <artifactId>spark-sql_2.11</artifactId>
                    <version>2.3.2</version>
        </dependency>
        Import dependency packages.
        1
        import org.apache.spark.sql.SparkSession;
        
      2. Create a session.
        1
        SparkSession sparkSession = SparkSession.builder().appName("datasource-css").getOrCreate();
        
    • Connecting to data sources through SQL APIs
      1. Create a table to connect to a CSS data source.
        1
        sparkSession.sql("create table css_table(id long, name string) using css options( 'es.nodes' = '192.168.9.213:9200', 'es.nodes.wan.only' = 'true', 'resource' = '/mytest','es.net.ssl'='false','es.net.http.auth.user'='admin','es.net.http.auth.pass'='*******')");
        
        • For details about the parameters for creating a CSS datasource connection table, see Table 1.
        • In the preceding example, HTTPS access is disabled for the CSS security cluster. Therefore, you need to set es.net.ssl to false. es.net.http.auth.user and es.net.http.auth.pass are the username and password set during cluster creation, respectively.
      2. Insert data.
        1
        sparkSession.sql("insert into css_table values(18, 'John'),(28, 'Bob')");
        
      3. Query data.
        1
        sparkSession.sql("select * from css_table").show();
        
      4. Delete the datasource connection table.
        sparkSession.sql("drop table css_table");
    • Submitting a Spark job
      1. Generate a JAR package based on the code file and upload the package to DLI.

        For details about console operations, see Creating a Package. For details about API operations, see Uploading a Package Group.

      2. In the Spark job editor, select the corresponding dependency module and execute the Spark job.

        For details about console operations, see Creating a Spark Job. For details about API operations, see Creating a Batch Processing Job.
        • When submitting a job, you need to specify a dependency module named sys.datasource.css.
        • For details about how to submit a job on the console, see Parameters for selecting dependency resources in the Data Lake Insight User Guide.
        • For details about how to submit a job through an API, see the modules parameter in Request parameters of Creating a Batch Processing Job in the Data Lake Insight API Reference.
    • Complete example code
      • Maven dependency
        <dependency>
                    <groupId>org.apache.spark</groupId>
                    <artifactId>spark-sql_2.11</artifactId>
                    <version>2.3.2</version>
        </dependency>
  • Description of development with HTTPS enabled
    • Constructing dependency information and creating a Spark session
      1. Import dependencies.

        Maven dependency

        <dependency>
                    <groupId>org.apache.spark</groupId>
                    <artifactId>spark-sql_2.11</artifactId>
                    <version>2.3.2</version>
        </dependency>

        Import dependency packages.

        1
        import org.apache.spark.sql.SparkSession;
        
      2. Create a session.
        1
        SparkSession sparkSession = SparkSession.builder().appName("datasource-css").getOrCreate();
        
    • Connecting to data sources through SQL APIs
      1. Create a table to connect to a CSS data source.
        1
        2
        3
        sparkSession.sql("create table css_table(id long, name string) using css options( 'es.nodes' = '192.168.13.189:9200', 'es.nodes.wan.only' = 'true', 'resource' = '/mytest','es.net.ssl'='true','es.net.ssl.keystore.location' = 'obs://Bucket name/Address/transport-keystore.jks','es.net.ssl.keystore.pass' = '**',
        'es.net.ssl.truststore.location'='obs://Bucket name/Address/truststore.jks,
        'es.net.ssl.truststore.pass'='***','es.net.http.auth.user'='admin','es.net.http.auth.pass'='**')");
        

        For details about the parameters for creating a CSS datasource connection table, see Table 1.

      2. Insert data.
        1
        sparkSession.sql("insert into css_table values(18, 'John'),(28, 'Bob')");
        
      3. Query data.
        1
        sparkSession.sql("select * from css_table").show();
        
      4. Delete the datasource connection table.
        sparkSession.sql("drop table css_table");
    • Submitting a Spark job
      1. Generate a JAR package based on the code file and upload the package to DLI.

        For details about console operations, see Creating a Package. For details about API operations, see Uploading a Package Group.

      2. If HTTPS access is enabled, you need to upload the dependency file hadoop-site.xml when creating a Spark job. Figure 1 shows the page for uploading the dependency file. The content of the hadoop-site.xml file is as follows:
        <?xml version="1.0" encoding="UTF-8"?>
        <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
        <!--
          Licensed under the Apache License, Version 2.0 (the "License");
          you may not use this file except in compliance with the License.
          You may obtain a copy of the License at
        
            http://www.apache.org/licenses/LICENSE-2.0
        
          Unless required by applicable law or agreed to in writing, software
          distributed under the License is distributed on an "AS IS" BASIS,
          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
          See the License for the specific language governing permissions and
          limitations under the License. See accompanying LICENSE file.
        -->
        
        <!-- Put site-specific property overrides in this file. -->
        
        <configuration>
        <property>
            <name>fs.obs.bucket.Bucket name.access.key</name>
            <value>AK</value>
          </property>
        <property>
            <name>fs.obs.bucket.Bucket name.secret.key </name>
            <value>SK</value>
          </property>
        </configuration>

        <name>fs.obs.bucket.Bucket name.access.key</name> is used to better locate the bucket address. The bucket name is the name of the bucket where the keystore.jks and truststore.jks files are stored.

        Figure 1 Creating a Spark job
      3. In the Spark job editor, select the corresponding dependency module and execute the Spark job.

        For details about console operations, see Creating a Spark Job. For details about API operations, see Creating a Batch Processing Job.
        • When submitting a job, you need to specify a dependency module named sys.datasource.css.
        • For details about how to submit a job on the console, see Parameters for selecting dependency resources in the Data Lake Insight User Guide.
        • For details about how to submit a job through an API, see the modules parameter in Request parameters of Creating a Batch Processing Job in the Data Lake Insight API Reference.
    • Complete example code
      • Maven dependency
        <dependency>
                    <groupId>org.apache.spark</groupId>
                    <artifactId>spark-sql_2.11</artifactId>
                    <version>2.3.2</version>
        </dependency>
      • Connecting to data sources through SQL APIs
         1
         2
         3
         4
         5
         6
         7
         8
         9
        10
        11
        12
        13
        14
        15
        16
        17
        18
        19
        20
        21
        22
        import org.apache.spark.sql.SparkSession;
         
        public class java_css_security_httpson {
            public static void main(String[] args) {
                SparkSession sparkSession = SparkSession.builder().appName("datasource-css").getOrCreate();
         
                // Create a DLI data table for DLI-associated CSS
                sparkSession.sql("create table css_table(id long, name string) using css options( 'es.nodes' = '192.168.13.189:9200', 'es.nodes.wan.only' = 'true', 'resource' = '/mytest','es.net.ssl'='true','es.net.ssl.keystore.location' = 'obs://Bucket name/Address/transport-keystore.jks','es.net.ssl.keystore.pass' = '**','es.net.ssl.truststore.location'='obs://Bucket name/Address/truststore.jks','es.net.ssl.truststore.pass'='**','es.net.http.auth.user'='admin','es.net.http.auth.pass'='**')");
         
                //*****************************SQL model***********************************
                // Insert data into the DLI data table
                sparkSession.sql("insert into css_table values(34, 'Yuan'),(28, 'Kids')");
         
                // Read data from DLI data table
                sparkSession.sql("select * from css_table").show();
         
                // drop table
                sparkSession.sql("drop table css_table");
         
                sparkSession.close();
            }
        }