amarnathkarthik commented on a change in pull request #6382: URL: https://github.com/apache/incubator-pinot/pull/6382#discussion_r549048775
########## File path: pinot-integration-tests/src/test/java/org/apache/pinot/compat/tests/SegmentOp.java ########## @@ -82,14 +103,172 @@ public void setTableConfigFileName(String tableConfigFileName) { _tableConfigFileName = tableConfigFileName; } + public void setSchemaFileName(String schemaFileName) { + _schemaFileName = schemaFileName; + } + + public String getSchemaFileName() { + return _schemaFileName; + } + + public void setRecordReaderConfigFileName(String recordReaderConfigFileName) { + _recordReaderConfigFileName = recordReaderConfigFileName; + } + + public String getRecordReaderConfigFileName() { + return _recordReaderConfigFileName; + } + + public void setSegmentName(String segmentName) { + _segmentName = segmentName; + } + + public String getSegmentName() { + return _segmentName; + } + @Override boolean runOp() { - switch(_op) { + switch (_op) { case UPLOAD: - System.out.println("Generating segment " + _segmentName + " from " + _inputDataFileName + " and uploading to " + - _tableConfigFileName); + return createAndUploadSegments(); case DELETE: + return deleteSegment(); } return true; } + + /** + * Create Segment file, compress to TarGz, and upload the files to controller. + * @return true if all successful, false in case of failure. + */ + private boolean createAndUploadSegments() { + File localTempDir = new File(FileUtils.getTempDirectory(), "pinot-compat-test-" + UUID.randomUUID()); + localTempDir.deleteOnExit(); + File localOutputTempDir = new File(localTempDir, "output"); + try { + FileUtils.forceMkdir(localOutputTempDir); + File segmentTarFile = generateSegment(localOutputTempDir); + uploadSegment(segmentTarFile); + + long startTime = System.currentTimeMillis(); + while (getOnlineSegmentCount() <= 0) { Review comment: Same as above will move to a separate method but need clarification on the state. Call to external view returns 2 table views which are OFFLINE and REALTIME, is there a specific state for each of the table view to consider it to ONLINE? Can OFFLINE or REALTIME table view have any of these states `ONLINE, CONSUMING`, and is it considered as ONLINE? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org