Executes a Pig Latin script up to and including indicated alias and stores the resulting records into a file. That is, if a user does: PigServer server = new PigServer(); server.registerQuery("A = load 'foo';"); server.registerQuery("B = filter A by $0 > 0;"); server.registerQuery("C = ord
(String id, String filename)
| 1047 | * @throws IOException |
| 1048 | */ |
| 1049 | public ExecJob store(String id, String filename) throws IOException { |
| 1050 | return store(id, filename, PigStorage.class.getName() + "()"); // SFPig is the default store function |
| 1051 | } |
| 1052 | |
| 1053 | /** |
| 1054 | * Executes a Pig Latin script up to and including indicated alias and stores the resulting |