We have ORACLE stored procedures like below:(psuedo code)
CREATE STOREDPROCEDURE(PARAMETERS)
BEGIN
SELECT STATMENTS;
CALLING CURSORS AND THEN DOING INSERTS INTO ANOTHER TABLE;
CALLING OTHER STORED PROCEDURES;
END;
We are having many stored procedures like above. Our data has grown and stored procedures are running slow. We would likto to convert these stored procedures to HIVE or ano other hadoop eco system. Please suggest us which is the hadoop ecosystem support this scenario.