このページは、お客様の言語ではご利用いただけません。Huawei Cloudは、より多くの言語バージョンを追加するために懸命に取り組んでいます。ご協力ありがとうございました。

Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
OneAccess
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Managed Threat Detection
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service Turbo
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Containers
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Intelligent EdgeCloud
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive
Help Center/ Data Lake Insight/ Developer Guide/ SQL Jobs/ Calling UDAFs in Spark SQL Jobs

Calling UDAFs in Spark SQL Jobs

Updated on 2024-06-06 GMT+08:00

Scenario

DLI allows you to use a Hive User Defined Aggregation Function (UDAF) to process multiple rows of data. Hive UDAF is usually used together with groupBy. It is equivalent to SUM() and AVG() commonly used in SQL and is also an aggregation function.

Constraints

  • To perform UDAF-related operations on DLI, you need to create a SQL queue instead of using the default queue.
  • When UDAFs are used across accounts, other users, except the user who creates them, need to be authorized before using the UDAF.

    To grant required permissions, log in to the DLI console and choose Data Management > Package Management. On the displayed page, select your UDAF Jar package and click Manage Permissions in the Operation column. On the permission management page, click Grant Permission in the upper right corner and select the required permissions.

  • If you use a static class or interface in a UDF, add try catch to capture exceptions. Otherwise, package conflicts may occur.

Environment Preparations

Before you start, set up the development environment.

Table 1 Development environment

Item

Description

OS

Windows 7 or later

JDK

JDK 1.8 (Java downloads).

IntelliJ IDEA

IntelliJ IDEA is used for application development. The version of the tool must be 2019.1 or later.

Maven

Basic configuration of the development environment. For details about how to get started, see Downloading Apache Maven and Installing Apache Maven. Maven is used for project management throughout the lifecycle of software development.

Development Process

The following figure shows the process of developing a UDAF.

Figure 1 Development process
Table 2 Process description

No.

Phase

Software Portal

Description

1

Create a Maven project and configure the POM file.

IntelliJ IDEA

Compile the UDAF function code by referring to the Procedure description.

2

Editing UDAF code

3

Debug, compile, and pack the code into a Jar package.

4

Upload the Jar package to OBS.

OBS console

Upload the UDAF Jar file to an OBS path.

5

Create a DLI package.

DLI console

Select the UDAF Jar file that has been uploaded to OBS for management.

6

Create a UDAF on DLI.

DLI console

Create a UDAF on the SQL job management page of the DLI console.

7

Verify and use the UDAF.

DLI console

Use the UDAF in your DLI job.

Procedure

  1. Create a Maven project and configure the POM file. This step uses IntelliJ IDEA 2020.2 as an example.
    1. Start IntelliJ IDEA and choose File > New > Project.
      Figure 2 Creating a project
    2. Choose Maven, set Project SDK to 1.8, and click Next.
      Figure 3 Configuring the project SDK
    3. Specify the project name and the project path, and click Create. In the displayed page, click Finish.
      Figure 4 Setting project information
    4. Add the following content to the pom.xml file.
      <dependencies> 
               <dependency> 
                   <groupId>org.apache.hive</groupId> 
                   <artifactId>hive-exec</artifactId> 
                   <version>1.2.1</version> 
               </dependency> 
       </dependencies>
      Figure 5 Adding configurations to the POM file
    5. Choose src > main and right-click the java folder. Choose New > Package to create a package and a class file.
      Set Package as required. In this example, set Package to com.dli.demo.
      Figure 6 Creating a package

      Create a Java Class file in the package path. In this example, the Java Class file is AvgFilterUDAFDemo.

      Figure 7 Creating a class
  2. Write UDAF code. Pay attention to the following requirements when you implement the UDAF:
    • The UDAF class must inherit from org.apache.hadoop.hive.ql.exec.UDAF and org.apache.hadoop.hive.ql.exec.UDAFEvaluator classes. The function class must inherit from the UDAF class, and the Evaluator class must implement the UDAFEvaluator interface.
    • The Evaluator class must implement the init, iterate, terminatePartial, merge, and terminate functions of UDAFEvaluator.
      • The init function overrides the init function of the UDAFEvaluator interface.
      • The iterate function receives input parameters for internal iteration.
      • The terminatePartial function has no parameter. It returns the data obtained after the iterate traversal is complete. terminatePartial is similar to Hadoop Combiner.
      • The merge function receives the return values of terminatePartial.
      • The terminate function returns the aggregated result.

      For details about how to implement the UDAF, see the following sample code:

      package com.dli.demo;
       
      import org.apache.hadoop.hive.ql.exec.UDAF;
      import org.apache.hadoop.hive.ql.exec.UDAFEvaluator;
       
      /***
       * @jdk jdk1.8.0
       * @version 1.0
       ***/
      public class AvgFilterUDAFDemo extends UDAF {
       
          /**
           * Defines the static inner class AvgFilter.
           */
          public static class PartialResult
          {
              public Long sum;
          }
       
          public static class VarianceEvaluator implements UDAFEvaluator {
       
              // Initializes the PartialResult object.
              private AvgFilterUDAFDemo.PartialResult partial;
       
              // Declares a VarianceEvaluator constructor that has no parameters.
              public VarianceEvaluator(){
       
                  this.partial = new AvgFilterUDAFDemo.PartialResult();
       
                  init();
              }
       
              /**
               * Initializes the UDAF, which is similar to a constructor.
               */
              @Override
              public void init() {
       
                  // Sets the initial value of sum.
                  this.partial.sum = 0L;
              }
       
              /**
               * Receives input parameters for internal iteration.
               * @param x
               * @return
               */
              public void iterate(Long x) {
                  if (x == null) {
                      return;
                  }
                  AvgFilterUDAFDemo.PartialResult tmp9_6 = this.partial;
                  tmp9_6.sum = tmp9_6.sum | x;
              }
       
              /**
               * Returns the data obtained after the iterate traversal is complete.
               * terminatePartial is similar to Hadoop Combiner.
               * @return
               */
              public AvgFilterUDAFDemo.PartialResult terminatePartial()
              {
                  return this.partial;
              }
       
              /**
               * Receives the return values of terminatePartial and merges the data.
               * @param
               * @return
               */
              public void merge(AvgFilterUDAFDemo.PartialResult pr)
              {
                  if (pr == null) {
                      return;
                  }
                  AvgFilterUDAFDemo.PartialResult tmp9_6 = this.partial;
                  tmp9_6.sum = tmp9_6.sum | pr.sum;
              }
       
              /**
               * Returns the aggregated result.
               * @return
               */
              public Long terminate()
              {
                  if (this.partial.sum == null) {
                      return 0L;
                  }
                  return this.partial.sum;
              }
          }
      }
      Figure 8 Editing UDAF code
  3. Use IntelliJ IDEA to compile the code and pack it into the JAR package.
    1. Click Maven in the tool bar on the right, and click clean and compile to compile the code.

      After the compilation is successful, click package.

      Figure 9 Exporting the Jar file
    2. The generated JAR package is stored in the target directory. In this example, MyUDAF-1.0-SNAPSHOT.jar is stored in D:\DLITest\MyUDAF\target.
  4. Log in to the OBS console and upload the file to the OBS path.
    NOTE:

    The region of the OBS bucket to which the Jar package is uploaded must be the same as the region of the DLI queue. Cross-region operations are not allowed.

  5. (Optional) Upload the file to DLI for package management.
    1. Log in to the DLI management console and choose Data Management > Package Management.
    2. On the Package Management page, click Create in the upper right corner.
    3. In the Create Package dialog, set the following parameters:
      • Type: Select JAR.
      • OBS Path: Specify the OBS path for storing the package.
      • Set Group and Group Name as required for package identification and management.
    4. Click OK.
  6. Create the UDAF on DLI.
    1. Log in to the DLI management console and create a SQL queue and a database.
    2. Log in to the DLI console, choose SQL Editor. Set Engine to spark, and select the created SQL queue and database.
    3. In the SQL editing area, run the following statement to create a UDAF and click Execute.
      NOTE:

      If the reloading function of the UDAF is enabled, the create statement changes.

      CREATE FUNCTION AvgFilterUDAFDemo AS 'com.dli.demo.AvgFilterUDAFDemo' using jar 'obs://dli-test-obs01/MyUDAF-1.0-SNAPSHOT.jar';

      Or

      CREATE OR REPLACE FUNCTION AvgFilterUDAFDemo AS 'com.dli.demo.AvgFilterUDAFDemo' using jar 'obs://dli-test-obs01/MyUDAF-1.0-SNAPSHOT.jar';
  7. Restart the original SQL queue for the added function to take effect.
    1. Log in to the DLI management console and choose Resources > Queue Management from the navigation pane. In the Operation column of the SQL queue, click Restart.
    2. In the Restart dialog box, click OK.
  8. Use the UDAF.

    Use the UDAF function created in 6 in the query statement:

    select AvgFilterUDAFDemo(real_stock_rate) AS show_rate FROM dw_ad_estimate_real_stock_rate limit 1000;
  9. (Optional) Delete the UDAF.

    If the UDAF is no longer used, run the following statement to delete it:

    Drop FUNCTION AvgFilterUDAFDemo;

We use cookies to improve our site and your experience. By continuing to browse our site you accept our cookie policy. Find out more

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback