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 2020/06/02 13:27:01 UTC

[GitHub] [incubator-doris] wuyunfeng opened a new issue #3752: [Doris On ES] incorrect result when `enable_docvalue_scan`

wuyunfeng opened a new issue #3752:
URL: https://github.com/apache/incubator-doris/issues/3752


   when use `enable_docvalue_scan`, such as :
   
   ```
   CREATE EXTERNAL TABLE `doe` (
     `id` bigint(20) NULL COMMENT "",
     `city` varchar(20) NULL COMMENT "",
     `opin_type` varchar(20) NULL COMMENT ""
   ) ENGINE=ELASTICSEARCH
   COMMENT "ELASTICSEARCH"
   PROPERTIES (
   "hosts" = "http://127.0.0.1:8200",
   "user" = "root",
   "password" = "",
   "index" = "doe2",
   "type" = "doc",
   "transport" = "http",
   "enable_docvalue_scan" = "true",
   "enable_keyword_sniff" = "true"
   ); 
   ```
   just index a few documents , and  set batch_size = [1 ... n], the result is inconsistent,   `batch_size - N / batch_size` NULL would be added to the result because of the  wrong usage of `total` hits.
   


----------------------------------------------------------------
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:
users@infra.apache.org



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


[GitHub] [incubator-doris] wuyunfeng closed issue #3752: [Doris On ES] Incorrect result when `enable_docvalue_scan`

Posted by GitBox <gi...@apache.org>.
wuyunfeng closed issue #3752:
URL: https://github.com/apache/incubator-doris/issues/3752


   


----------------------------------------------------------------
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:
users@infra.apache.org



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