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 7616F2009F8 for ; Thu, 19 May 2016 18:05:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 75147160A00; Thu, 19 May 2016 16:05:15 +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 C6AF4160A28 for ; Thu, 19 May 2016 18:05:14 +0200 (CEST) Received: (qmail 14674 invoked by uid 500); 19 May 2016 16:05:14 -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 14245 invoked by uid 99); 19 May 2016 16:05:13 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 May 2016 16:05:13 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 4BD202C1F81 for ; Thu, 19 May 2016 16:05:13 +0000 (UTC) Date: Thu, 19 May 2016 16:05:13 +0000 (UTC) From: "Tyler Hobbs (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Issue Comment Deleted] (CASSANDRA-10786) Include hash of result set metadata in prepared statement id MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 19 May 2016 16:05:15 -0000 [ https://issues.apache.org/jira/browse/CASSANDRA-10786?page=3Dcom.atl= assian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tyler Hobbs updated CASSANDRA-10786: ------------------------------------ Comment: was deleted (was: I like the idea of using a separate hash/ID for the statement and the= result set metadata if we want to fix the "prepare storm" problem at the s= ame time. Overall, it seems like it would work like this: * In response to a PREPARE message, the server returns a statement ID and a= result set metadata ID. * When performing an EXECUTE, the driver sends both IDs. * If the prepared statement ID isn't found, the server responds with an "un= prepared" error, and the driver needs to reprepare as usual. * If the statement ID is found, but the metadata ID doesn't match, the serv= er executes the query and responds with a special results message. This me= ssage contains the correct result set metadata and its ID, the prepared sta= tement ID, and a flag to indicate that it's doing this. * When the driver receives this special response, it replaces its internal = result set metadata with the new one from the response. In the scenario Robert describes above (some nodes have seen a schema chang= e, others haven't), this would avoid repreparation of statements. The driv= er might end up swapping its internal result set metadata for the statement= several times, but that's relatively inexpensive.) > Include hash of result set metadata in prepared statement id > ------------------------------------------------------------ > > Key: CASSANDRA-10786 > URL: https://issues.apache.org/jira/browse/CASSANDRA-1078= 6 > Project: Cassandra > Issue Type: Bug > Components: CQL > Reporter: Olivier Michallat > Assignee: Alex Petrov > Priority: Minor > Labels: client-impacting, protocolv5 > Fix For: 3.x > > > This is a follow-up to CASSANDRA-7910, which was about invalidating a pre= pared statement when the table is altered, to force clients to update their= local copy of the metadata. > There's still an issue if multiple clients are connected to the same host= . The first client to execute the query after the cache was invalidated wil= l receive an UNPREPARED response, re-prepare, and update its local metadata= . But other clients might miss it entirely (the MD5 hasn't changed), and th= ey will keep using their old metadata. For example: > # {{SELECT * ...}} statement is prepared in Cassandra with md5 abc123, cl= ientA and clientB both have a cache of the metadata (columns b and c) local= ly > # column a gets added to the table, C* invalidates its cache entry > # clientA sends an EXECUTE request for md5 abc123, gets UNPREPARED respon= se, re-prepares on the fly and updates its local metadata to (a, b, c) > # prepared statement is now in C*=E2=80=99s cache again, with the same md= 5 abc123 > # clientB sends an EXECUTE request for id abc123. Because the cache has b= een populated again, the query succeeds. But clientB still has not updated = its metadata, it=E2=80=99s still (b,c) > One solution that was suggested is to include a hash of the result set me= tadata in the md5. This way the md5 would change at step 3, and any client = using the old md5 would get an UNPREPARED, regardless of whether another cl= ient already reprepared. -- This message was sent by Atlassian JIRA (v6.3.4#6332)