Package org.apache.drill.exec.ref.rse.QueueRSE

Examples of org.apache.drill.exec.ref.rse.QueueRSE.QueueOutputInfo


    final ObjectNode writeOp = mapper.createObjectNode();
    writeOp.put("op", "store");
    writeOp.put("input", inputId);
    writeOp.put("storageengine", "queue");
    writeOp.put("memo", "output sink");
    QueueOutputInfo output = new QueueOutputInfo();
    output.number = 0;
    writeOp.put("target", mapper.convertValue(output, JsonNode.class));
    return add(writeOp);
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.ref.rse.QueueRSE.QueueOutputInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.