This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
from 9db45e364b [multistage] Adding Basic Constructs for Physical Optimization (#15371) add 4f91c27120 Adding ArrowResponseEncoder implementation (#15410) No new revisions were added by this update. Summary of changes: .../pinot/client/grpc/PinotGrpcConnection.java | 1 + pinot-common/pom.xml | 9 + .../common/compression/CompressionFactory.java | 7 + .../response/encoder/ArrowResponseEncoder.java | 485 +++++++++++++++++++++ .../response/encoder/JsonResponseEncoder.java | 79 +++- .../response/encoder/ResponseEncoderFactory.java | 15 + .../org/apache/pinot/common/utils/DataSchema.java | 11 + .../response/encoder/ArrowResponseEncoderTest.java | 241 ++++++++++ .../response/encoder/JsonResponseEncoderTest.java | 241 ++++++++++ .../pinot/integration/tests/ClusterTest.java | 150 ++++++- pom.xml | 13 + 11 files changed, 1245 insertions(+), 7 deletions(-) create mode 100644 pinot-common/src/main/java/org/apache/pinot/common/response/encoder/ArrowResponseEncoder.java create mode 100644 pinot-common/src/test/java/org/apache/pinot/common/response/encoder/ArrowResponseEncoderTest.java create mode 100644 pinot-common/src/test/java/org/apache/pinot/common/response/encoder/JsonResponseEncoderTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org