why when Using wrapper query with base 64 I get low performance?

  Kiến thức lập trình

I noticed that when I run the same query from Kibana with a wrapper query in base 64, I get low performance.

Can someone explain why? is it a known issue?

this is the original query not in base 64:

GET /baseelements/_count {   "query" : {
     "bool":
    {
      "filter":
      [
        {
          "term": {
            "session": {
              "value": "661c1db36aad7e28f82da16f"
            }
          }
        },
        {
          "term": {
            "stream": {
              "value": "abc",
              "boost": 1
            }
          }
        }
      ],
      "must_not":
      [
          { "terms" : {"source": ["inform","MISC"] }},
          { "wildcard" : {"name" :{"value": "*INFRA: Timer*"}}},
          { "terms" : {"name" : ["who", "Timer" ]}},
          { "wildcard" : {"name" :{"value": "*INF information commit id*"}}},
          { "wildcard" : {"name" :{"value": "*Serial Number*"}}},
          { "wildcard" : {"name" :{"value": "*Inf: Code Coverag*"}}}
      ]
    }   } }

LEAVE A COMMENT