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 F2E2D2009E8 for ; Mon, 30 May 2016 15:53:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id F169D160A19; Mon, 30 May 2016 13:53:14 +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 4DD3F160A3E for ; Mon, 30 May 2016 15:53:14 +0200 (CEST) Received: (qmail 22414 invoked by uid 500); 30 May 2016 13:53:13 -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 22228 invoked by uid 99); 30 May 2016 13:53:13 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 May 2016 13:53:13 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 0006B2C1F6D for ; Mon, 30 May 2016 13:53:12 +0000 (UTC) Date: Mon, 30 May 2016 13:53:12 +0000 (UTC) From: "Alex Petrov (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (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: Mon, 30 May 2016 13:53:15 -0000 [ https://issues.apache.org/jira/browse/CASSANDRA-10786?page=3Dcom.atla= ssian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId= =3D15306686#comment-15306686 ]=20 Alex Petrov commented on CASSANDRA-10786: ----------------------------------------- I've sketched the protocol changes from v4 [here|https://github.com/ifesdje= en/cassandra/commit/3bf78daccbadb33d0368f32cc6ef4f8de1a32131] as described = by [~thobbs]. I'll proceed with the mentioned changes. > 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)