9596979899100101
ncConfig1.datasetIPAddress = "127.0.0.1"; ncConfig1.nodeId = "nc1"; nc1 = new NodeControllerService(ncConfig1); nc1.start(); hcc = new HyracksConnection(ccConfig.clientNetIpAddress, ccConfig.clientNetPort); }
142143144145146147148149150151152
* * @throws Exception */ private void execute() throws Exception { if (opts.clientNetIpAddress != null) { hcc = new HyracksConnection(opts.clientNetIpAddress, opts.clientNetPort); runQueries(); } else { if (!opts.compileOnly) { startLocalHyracks(); }
384385386387388389390
ncConfig.nodeId = "nc" + (i + 1); ncs[i] = new NodeControllerService(ncConfig); ncs[i].start(); } hcc = new HyracksConnection(ccConfig.clientNetIpAddress, ccConfig.clientNetPort); }
949596979899100101
ncConfig2.dataIPAddress = "127.0.0.1"; ncConfig2.nodeId = "nc2"; nc2 = new NodeControllerService(ncConfig2); nc2.start(); hcc = new HyracksConnection(ccConfig.clientNetIpAddress, ccConfig.clientNetPort); hcc.createApplication("test", null); }
223224225226227228229230
149150151152153154155156157158159
*/ private void execute() throws Exception { System.setProperty("vxquery.buffer_size", Integer.toString(opts.bufferSize)); if (opts.clientNetIpAddress != null) { hcc = new HyracksConnection(opts.clientNetIpAddress, opts.clientNetPort); runQueries(); } else { if (!opts.compileOnly) { startLocalHyracks(); }
390391392393394395396
91929394959697