Make PigServer can handle files with parameters -----------------------------------------------
Key: PIG-1410 URL: https://issues.apache.org/jira/browse/PIG-1410 Project: Pig Issue Type: Improvement Reporter: Jeff Zhang Assignee: Jeff Zhang Fix For: 0.8.0 The current PigServer only support handle files without parameters, this task is to extend PigServer's API. Add there public methods: {code} public void registerScript(String fileName, Map<String,String> params) // put the parameters in the Map data datastructure public void registerScript(String fileName, List<String> paramsFiles) // put the parameters in the files public void registerScript(String fileName, Map<String,String> params,List<String> paramsFiles) // put the parameter both in files and Map, the Map should override the parameter file if they have the same parameters {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.