You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2023/01/04 09:33:23 UTC

[GitHub] [doris] Gabriel39 opened a new pull request, #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Gabriel39 opened a new pull request, #15612:
URL: https://github.com/apache/doris/pull/15612

   # Proposed changes
   
   Issue Number: close #xxx
   
   ## Problem summary
   
   Describe your changes.
   
   ## Checklist(Required)
   
   1. Does it affect the original behavior: 
       - [ ] Yes
       - [ ] No
       - [ ] I don't know
   2. Has unit tests been added:
       - [ ] Yes
       - [ ] No
       - [ ] No Need
   3. Has document been added or modified:
       - [ ] Yes
       - [ ] No
       - [ ] No Need
   4. Does it need to update dependencies:
       - [ ] Yes
       - [ ] No
   5. Are there any changes that cannot be rolled back:
       - [ ] Yes (If Yes, please explain WHY)
       - [ ] No
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at [dev@doris.apache.org](mailto:dev@doris.apache.org) by explaining why you chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on a diff in pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on code in PR #15612:
URL: https://github.com/apache/doris/pull/15612#discussion_r1061293114


##########
be/src/util/arrow/block_convertor.cpp:
##########
@@ -0,0 +1,241 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+#include "util/arrow/block_convertor.h"
+
+#include <arrow/array.h>
+#include <arrow/array/builder_primitive.h>
+#include <arrow/buffer.h>
+#include <arrow/builder.h>
+#include <arrow/io/memory.h>
+#include <arrow/ipc/writer.h>
+#include <arrow/memory_pool.h>
+#include <arrow/record_batch.h>
+#include <arrow/status.h>
+#include <arrow/type.h>
+#include <arrow/visit_array_inline.h>
+#include <arrow/visit_type_inline.h>
+#include <arrow/visitor.h>
+
+#include <cstdlib>
+#include <ctime>
+#include <memory>
+
+#include "exprs/slot_ref.h"
+#include "gutil/strings/substitute.h"
+#include "runtime/descriptor_helper.h"
+#include "runtime/descriptors.h"
+#include "runtime/large_int_value.h"
+#include "util/arrow/utils.h"
+#include "util/types.h"
+
+namespace doris {
+
+using strings::Substitute;

Review Comment:
   warning: using decl 'Substitute' is unused [misc-unused-using-decls]
   ```cpp
   using strings::Substitute;
                  ^
   ```
   **be/src/util/arrow/block_convertor.cpp:47:** remove the using
   ```cpp
   using strings::Substitute;
                  ^
   ```
   



##########
be/src/util/arrow/block_convertor.cpp:
##########
@@ -0,0 +1,241 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+#include "util/arrow/block_convertor.h"
+
+#include <arrow/array.h>
+#include <arrow/array/builder_primitive.h>
+#include <arrow/buffer.h>
+#include <arrow/builder.h>
+#include <arrow/io/memory.h>
+#include <arrow/ipc/writer.h>
+#include <arrow/memory_pool.h>
+#include <arrow/record_batch.h>
+#include <arrow/status.h>
+#include <arrow/type.h>
+#include <arrow/visit_array_inline.h>
+#include <arrow/visit_type_inline.h>
+#include <arrow/visitor.h>
+
+#include <cstdlib>
+#include <ctime>
+#include <memory>
+
+#include "exprs/slot_ref.h"
+#include "gutil/strings/substitute.h"
+#include "runtime/descriptor_helper.h"
+#include "runtime/descriptors.h"
+#include "runtime/large_int_value.h"
+#include "util/arrow/utils.h"
+#include "util/types.h"
+
+namespace doris {
+
+using strings::Substitute;
+
+// Convert RowBatch to an Arrow::Array
+// We should keep this function to keep compatible with arrow's type visitor
+// Now we inherit TypeVisitor to use default Visit implementation
+class FromBlockConverter : public arrow::TypeVisitor {
+public:
+    FromBlockConverter(const vectorized::Block& block, const std::shared_ptr<arrow::Schema>& schema,
+                       arrow::MemoryPool* pool)
+            : _block(block), _schema(schema), _pool(pool), _cur_field_idx(-1) {
+        // obtain local time zone
+        time_t ts = 0;
+        struct tm t;
+        char buf[16];
+        localtime_r(&ts, &t);
+        strftime(buf, sizeof(buf), "%Z", &t);
+        _time_zone = buf;
+    }
+
+    ~FromBlockConverter() override = default;
+
+    // Use base class function
+    using arrow::TypeVisitor::Visit;
+
+#define PRIMITIVE_VISIT(TYPE) \
+    arrow::Status Visit(const arrow::TYPE& type) override { return _visit(type); }
+
+    PRIMITIVE_VISIT(Int8Type);
+    PRIMITIVE_VISIT(Int16Type);
+    PRIMITIVE_VISIT(Int32Type);
+    PRIMITIVE_VISIT(Int64Type);
+    PRIMITIVE_VISIT(FloatType);
+    PRIMITIVE_VISIT(DoubleType);
+
+#undef PRIMITIVE_VISIT
+
+    // process string-transformable field
+    arrow::Status Visit(const arrow::StringType& type) override {
+        arrow::StringBuilder builder(_pool);
+        size_t num_rows = _block.rows();
+        ARROW_RETURN_NOT_OK(builder.Reserve(num_rows));
+        for (size_t i = 0; i < num_rows; ++i) {
+            bool is_null = _cur_col->is_null_at(i);
+            if (is_null) {
+                ARROW_RETURN_NOT_OK(builder.AppendNull());
+                continue;
+            }
+            const auto& data_ref = _cur_col->get_data_at(i);
+            vectorized::TypeIndex type_idx = _cur_type->get_type_id();
+            switch (type_idx) {
+            case vectorized::TypeIndex::String:
+            case vectorized::TypeIndex::FixedString:
+            case vectorized::TypeIndex::HLL: {
+                if (data_ref.size == 0) {
+                    // 0x01 is a magic num, not useful actually, just for present ""
+                    //char* tmp_val = reinterpret_cast<char*>(0x01);
+                    ARROW_RETURN_NOT_OK(builder.Append(""));
+                } else {
+                    ARROW_RETURN_NOT_OK(builder.Append(data_ref.data, data_ref.size));
+                }
+                break;
+            }
+            case vectorized::TypeIndex::Date:
+            case vectorized::TypeIndex::DateTime: {
+                char buf[64];
+                const DateTimeValue* time_val = (const DateTimeValue*)(data_ref.data);
+                int len = time_val->to_buffer(buf);
+                ARROW_RETURN_NOT_OK(builder.Append(buf, len));
+                break;
+            }
+            case vectorized::TypeIndex::Int128: {
+                auto string_temp = LargeIntValue::to_string(
+                        reinterpret_cast<const PackedInt128*>(data_ref.data)->value);
+                ARROW_RETURN_NOT_OK(builder.Append(string_temp.data(), string_temp.size()));
+                break;
+            }
+            default: {
+                LOG(WARNING) << "can't convert this type = " << vectorized::getTypeName(type_idx)
+                             << "to arrow type";
+                return arrow::Status::TypeError("unsupported column type");
+            }
+            }
+        }
+        return builder.Finish(&_arrays[_cur_field_idx]);
+    }
+
+    // process doris DecimalV2
+    arrow::Status Visit(const arrow::Decimal128Type& type) override {
+        std::shared_ptr<arrow::DataType> s_decimal_ptr =
+                std::make_shared<arrow::Decimal128Type>(27, 9);
+        arrow::Decimal128Builder builder(s_decimal_ptr, _pool);
+        size_t num_rows = _block.rows();
+        ARROW_RETURN_NOT_OK(builder.Reserve(num_rows));
+        for (size_t i = 0; i < num_rows; ++i) {
+            bool is_null = _cur_col->is_null_at(i);
+            if (is_null) {
+                ARROW_RETURN_NOT_OK(builder.AppendNull());
+                continue;
+            }
+            const auto& data_ref = _cur_col->get_data_at(i);
+            const PackedInt128* p_value = reinterpret_cast<const PackedInt128*>(data_ref.data);
+            int64_t high = (p_value->value) >> 64;
+            uint64 low = p_value->value;
+            arrow::Decimal128 value(high, low);
+            ARROW_RETURN_NOT_OK(builder.Append(value));
+        }
+        return builder.Finish(&_arrays[_cur_field_idx]);
+    }
+    // process boolean
+    arrow::Status Visit(const arrow::BooleanType& type) override {
+        arrow::BooleanBuilder builder(_pool);
+        size_t num_rows = _block.rows();
+        ARROW_RETURN_NOT_OK(builder.Reserve(num_rows));
+        for (size_t i = 0; i < num_rows; ++i) {
+            bool is_null = _cur_col->is_null_at(i);
+            if (is_null) {
+                ARROW_RETURN_NOT_OK(builder.AppendNull());
+                continue;
+            }
+            const auto& data_ref = _cur_col->get_data_at(i);
+            ARROW_RETURN_NOT_OK(builder.Append(*(const bool*)data_ref.data));
+        }
+        return builder.Finish(&_arrays[_cur_field_idx]);
+    }
+
+    Status convert(std::shared_ptr<arrow::RecordBatch>* out);
+
+private:
+    template <typename T>
+    arrow::Status _visit(const T& type) {
+        arrow::NumericBuilder<T> builder(_pool);
+
+        size_t num_rows = _block.rows();
+        ARROW_RETURN_NOT_OK(builder.Reserve(num_rows));
+        if (_cur_col->is_nullable()) {
+            for (size_t i = 0; i < num_rows; ++i) {
+                bool is_null = _cur_col->is_null_at(i);
+                if (is_null) {
+                    ARROW_RETURN_NOT_OK(builder.AppendNull());
+                    continue;
+                }
+                const auto& data_ref = _cur_col->get_data_at(i);
+                ARROW_RETURN_NOT_OK(builder.Append(*(const typename T::c_type*)data_ref.data));
+            }
+        } else {
+            ARROW_RETURN_NOT_OK(builder.AppendValues(
+                    (const typename T::c_type*)_cur_col->get_data_at(0).data, num_rows));
+        }
+        return builder.Finish(&_arrays[_cur_field_idx]);
+    }
+
+private:

Review Comment:
   warning: redundant access specifier has the same accessibility as the previous access specifier [readability-redundant-access-specifiers]
   
   ```suggestion
   
   ```
   **be/src/util/arrow/block_convertor.cpp:174:** previously declared here
   ```cpp
   private:
   ^
   ```
   



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] Gabriel39 merged pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
Gabriel39 merged PR #15612:
URL: https://github.com/apache/doris/pull/15612


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1376636761

   PR approved by anyone and no changes requested.


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1376636738

   PR approved by at least one committer and no changes requested.


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] morningman commented on a diff in pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
morningman commented on code in PR #15612:
URL: https://github.com/apache/doris/pull/15612#discussion_r1062080335


##########
be/src/util/arrow/block_convertor.cpp:
##########
@@ -0,0 +1,238 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+#include "util/arrow/block_convertor.h"
+
+#include <arrow/array.h>
+#include <arrow/array/builder_primitive.h>
+#include <arrow/buffer.h>
+#include <arrow/builder.h>
+#include <arrow/io/memory.h>
+#include <arrow/ipc/writer.h>
+#include <arrow/memory_pool.h>
+#include <arrow/record_batch.h>
+#include <arrow/status.h>
+#include <arrow/type.h>
+#include <arrow/visit_array_inline.h>
+#include <arrow/visit_type_inline.h>
+#include <arrow/visitor.h>
+
+#include <cstdlib>
+#include <ctime>
+#include <memory>
+
+#include "exprs/slot_ref.h"
+#include "gutil/strings/substitute.h"
+#include "runtime/descriptor_helper.h"
+#include "runtime/descriptors.h"
+#include "runtime/large_int_value.h"
+#include "util/arrow/utils.h"
+#include "util/types.h"
+
+namespace doris {
+
+// Convert RowBatch to an Arrow::Array

Review Comment:
   ```suggestion
   // Convert Block to an Arrow::Array
   ```



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1370872353

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] HappenLee commented on a diff in pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
HappenLee commented on code in PR #15612:
URL: https://github.com/apache/doris/pull/15612#discussion_r1064256920


##########
be/src/util/arrow/block_convertor.cpp:
##########
@@ -0,0 +1,238 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+#include "util/arrow/block_convertor.h"
+
+#include <arrow/array.h>
+#include <arrow/array/builder_primitive.h>
+#include <arrow/buffer.h>
+#include <arrow/builder.h>
+#include <arrow/io/memory.h>
+#include <arrow/ipc/writer.h>
+#include <arrow/memory_pool.h>
+#include <arrow/record_batch.h>
+#include <arrow/status.h>
+#include <arrow/type.h>
+#include <arrow/visit_array_inline.h>
+#include <arrow/visit_type_inline.h>
+#include <arrow/visitor.h>
+
+#include <cstdlib>
+#include <ctime>
+#include <memory>
+
+#include "exprs/slot_ref.h"
+#include "gutil/strings/substitute.h"
+#include "runtime/descriptor_helper.h"
+#include "runtime/descriptors.h"
+#include "runtime/large_int_value.h"
+#include "util/arrow/utils.h"
+#include "util/types.h"
+
+namespace doris {
+
+// Convert RowBatch to an Arrow::Array
+// We should keep this function to keep compatible with arrow's type visitor
+// Now we inherit TypeVisitor to use default Visit implementation
+class FromBlockConverter : public arrow::TypeVisitor {
+public:
+    FromBlockConverter(const vectorized::Block& block, const std::shared_ptr<arrow::Schema>& schema,
+                       arrow::MemoryPool* pool)
+            : _block(block), _schema(schema), _pool(pool), _cur_field_idx(-1) {
+        // obtain local time zone
+        time_t ts = 0;
+        struct tm t;
+        char buf[16];
+        localtime_r(&ts, &t);
+        strftime(buf, sizeof(buf), "%Z", &t);
+        _time_zone = buf;
+    }
+
+    ~FromBlockConverter() override = default;
+
+    // Use base class function
+    using arrow::TypeVisitor::Visit;
+
+#define PRIMITIVE_VISIT(TYPE) \
+    arrow::Status Visit(const arrow::TYPE& type) override { return _visit(type); }
+
+    PRIMITIVE_VISIT(Int8Type);
+    PRIMITIVE_VISIT(Int16Type);
+    PRIMITIVE_VISIT(Int32Type);
+    PRIMITIVE_VISIT(Int64Type);
+    PRIMITIVE_VISIT(FloatType);
+    PRIMITIVE_VISIT(DoubleType);
+
+#undef PRIMITIVE_VISIT
+
+    // process string-transformable field
+    arrow::Status Visit(const arrow::StringType& type) override {
+        arrow::StringBuilder builder(_pool);
+        size_t num_rows = _block.rows();
+        ARROW_RETURN_NOT_OK(builder.Reserve(num_rows));
+        for (size_t i = 0; i < num_rows; ++i) {
+            bool is_null = _cur_col->is_null_at(i);
+            if (is_null) {
+                ARROW_RETURN_NOT_OK(builder.AppendNull());
+                continue;
+            }
+            const auto& data_ref = _cur_col->get_data_at(i);
+            vectorized::TypeIndex type_idx = vectorized::remove_nullable(_cur_type)->get_type_id();
+            switch (type_idx) {
+            case vectorized::TypeIndex::String:
+            case vectorized::TypeIndex::FixedString:
+            case vectorized::TypeIndex::HLL: {
+                if (data_ref.size == 0) {
+                    // 0x01 is a magic num, not useful actually, just for present ""
+                    //char* tmp_val = reinterpret_cast<char*>(0x01);
+                    ARROW_RETURN_NOT_OK(builder.Append(""));
+                } else {
+                    ARROW_RETURN_NOT_OK(builder.Append(data_ref.data, data_ref.size));
+                }
+                break;
+            }
+            case vectorized::TypeIndex::Date:
+            case vectorized::TypeIndex::DateTime: {
+                char buf[64];
+                const DateTimeValue* time_val = (const DateTimeValue*)(data_ref.data);
+                int len = time_val->to_buffer(buf);
+                ARROW_RETURN_NOT_OK(builder.Append(buf, len));
+                break;
+            }
+            case vectorized::TypeIndex::Int128: {
+                auto string_temp = LargeIntValue::to_string(
+                        reinterpret_cast<const PackedInt128*>(data_ref.data)->value);
+                ARROW_RETURN_NOT_OK(builder.Append(string_temp.data(), string_temp.size()));
+                break;
+            }
+            default: {
+                LOG(WARNING) << "can't convert this type = " << vectorized::getTypeName(type_idx)
+                             << "to arrow type";
+                return arrow::Status::TypeError("unsupported column type");
+            }
+            }
+        }
+        return builder.Finish(&_arrays[_cur_field_idx]);
+    }
+
+    // process doris DecimalV2
+    arrow::Status Visit(const arrow::Decimal128Type& type) override {

Review Comment:
   Add dispose decimalv3 and datetime v2?



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1375142421

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1373177782

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1373428216

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1375121268

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] hello-stephen commented on pull request #15612: [feature](vectorized) Support MemoryScratchSink on vectorized engine

Posted by GitBox <gi...@apache.org>.
hello-stephen commented on PR #15612:
URL: https://github.com/apache/doris/pull/15612#issuecomment-1370866325

   TeamCity pipeline, clickbench performance test result:
    the sum of best hot time: 35.54 seconds
    load time: 654 seconds
    storage size: 17122987107 Bytes
    https://doris-community-test-1308700295.cos.ap-hongkong.myqcloud.com/tmp/20230104122557_clickbench_pr_73476.html


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org