Skip to content

ajfg93/impala-get-json-object-udf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

impala-get-json-object-udf

A UDF for Cloudera Impala ( hive get_json_object equivalent )

build

  • cmake .
  • make

install

  • upload build/jsonUdf.ll to [hdfs path]/jsonUdf.ll
  • impala-shell> create function [database.]json_get_object (string, string) returns string location '[hdfs path]/jsonUdf.ll' symbol='JsonGetObject';

usage

  • impala-shell> select json_get_object('{"name":"steven"}', '$.name');
  • --> returns a string steven

About

A UDF for Cloudera Impala ( hive get_json_object equivalent )

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 93.7%
  • C 5.8%
  • CMake 0.5%