Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 714 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 714 Bytes

bigqueryudf

An Cloud Function interface wrapper that could be used as UDF in Big Query

This implementation uses http interface and bigquery entities expected inside a Cloud Function

TL;DR

func init() {
	functions.HTTP("bigquery", bigqueryudf.NewHandler(transformationExample))
}

func transformationExample(input []byte) (any, error) {
	return "hello world", nil
}

To understand more about how to use this project, there are some examples

Comments, discussions, issues and pull-requests are welcomed.