Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A9A29200B3B for ; Mon, 11 Jul 2016 08:52:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A8117160A85; Mon, 11 Jul 2016 06:52:12 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 21413160A62 for ; Mon, 11 Jul 2016 08:52:11 +0200 (CEST) Received: (qmail 22387 invoked by uid 500); 11 Jul 2016 06:52:11 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 22354 invoked by uid 99); 11 Jul 2016 06:52:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jul 2016 06:52:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 0697B2C02A1 for ; Mon, 11 Jul 2016 06:52:11 +0000 (UTC) Date: Mon, 11 Jul 2016 06:52:11 +0000 (UTC) From: "Sreeraju.V (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CASSANDRA-12157) Cassandra solr_query not working after upgrading to DSE 5 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 11 Jul 2016 06:52:12 -0000 Sreeraju.V created CASSANDRA-12157: -------------------------------------- Summary: Cassandra solr_query not working after upgrading to DSE 5 Key: CASSANDRA-12157 URL: https://issues.apache.org/jira/browse/CASSANDRA-12157 Project: Cassandra Issue Type: Bug Components: Configuration Reporter: Sreeraju.V After upgrading to DSE 5 solr_query is not working. Below is the new DSE, cqlsh and Cassandra versions. [cqlsh 5.0.1 | Cassandra 3.0.7.1158 | DSE 5.0.0 | CQL spec 3.4.0 | Native protocol v4] I am connecting using PHP Driver. The exception catching is Must not send frame with CUSTOM_PAYLOAD flag for native protocol version < 4 and the error code is 33554442 When I run the same query on cqlsh it is working but not through the Php-driver. $countSearchParam = '{"q":"'.$searchParam.'" }'; try{ $countStatement = $this->session->prepare( "SELECT count(*) FROM table WHERE solr_query = ? "); $countresults = $this->session->execute($countStatement, new Cassandra\ExecutionOptions(array( 'arguments' => array($countSearchParam) ))); foreach ($countresults as $row) { $cntArr = get_object_vars($row['count']); $totCount = $cntArr['value']; } }catch(Exception $e){ -- This message was sent by Atlassian JIRA (v6.3.4#6332)