I have created some hive UDFs. Now, We are thinking of using these UDFs inside hiveql for creation of table.
Create tale xyz{ field1..
fieldn } as { select udf1(), udf2(), ...
udfn() from abc,def)
Now , we are not sure if its right way. Since as per my understanding it will invoke UDF for each row and if my data is in millions. We might use all resources of cluster.
Is my understanding correct ? Or there won't be any performance issue and we can use it as I have described ql above.
Thanks.