PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Crea una tabella Postgresql da Avro Schema in Nifi

Posso suggerire ExecuteGroovyScript processore in nifi v1.5+

definire una nuova proprietà SQL.mydb - ti verrà chiesto di collegare il suo valore a un database (DBCPConnectionPool )

scegli il database in cui vuoi creare una tabella

e utilizzare questo script (supponendo che avro schema sia nel contenuto del file di flusso)

import groovy.json.JsonSlurper

def ff = session.get()
if(!ff)return

//parse avro schema from flow file content
def schema = ff.read().withReader("UTF-8"){ new JsonSlurper().parse(it) }

//define type mapping
def typeMap = [
    "string"            : "varchar(255)",
    "long"              : "numeric(10)",
    [ "null", "string" ]: "varchar(255)",
    [ "null", "long" ]  : "numeric(10)",
]

assert schema.name && schema.name=~/^\w.*/

//build create table statement
def createTable = "create table ${schema.name} (" +
    schema.fields.collect{ "\n  ${it.name.padRight(39)} ${typeMap[it.type]}" }.join(',') +
    "\n)"

//execute statement through the custom defined property
//SQL.mydb references http://docs.groovy-lang.org/2.4.10/html/api/groovy/sql/Sql.html object
SQL.mydb.execute(createTable as String) //important to cast to String

//transfer flow file to success
REL_SUCCESS << ff