Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 26473 invoked from network); 29 Mar 2010 20:36:08 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 29 Mar 2010 20:36:08 -0000 Received: (qmail 93639 invoked by uid 500); 29 Mar 2010 20:36:08 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 93624 invoked by uid 500); 29 Mar 2010 20:36:08 -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 93616 invoked by uid 500); 29 Mar 2010 20:36:08 -0000 Delivered-To: apmail-incubator-cassandra-commits@incubator.apache.org Received: (qmail 93613 invoked by uid 99); 29 Mar 2010 20:36:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Mar 2010 20:36:08 +0000 X-ASF-Spam-Status: No, hits=-1151.3 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Mar 2010 20:36:07 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 9E82F1783C; Mon, 29 Mar 2010 20:35:46 +0000 (GMT) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Mon, 29 Mar 2010 20:35:46 -0000 Message-ID: <20100329203546.13070.27435@eos.apache.org> Subject: =?utf-8?q?=5BCassandra_Wiki=5D_Update_of_=22FAQ=22_by_Nick_Pavlica?= Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for= change notification. The "FAQ" page has been changed by Nick Pavlica. http://wiki.apache.org/cassandra/FAQ?action=3Ddiff&rev1=3D45&rev2=3D46 -------------------------------------------------- = These notes were taken from the Cassandra limitations section (http://wik= i.apache.org/cassandra/CassandraLimitations): ---- + = + [CassandraLimitiations] + = + = * Cassandra's public API is based on Thrift, which offers no streaming ab= ilities -- any value written or fetched has to fit in memory. This is inhe= rent to Thrift's design; I don't see it changing. So adding large object s= upport to Cassandra would need a special API that manually split the large = objects up into pieces. Jonathan Ellis sketched out one approach in http:/= /issues.apache.org/jira/browse/CASSANDRA-265. As a workaround in the meant= ime, you can manually split files into chunks of whatever size you are comf= ortable with -- at least one person is using 64MB -- and making a file corr= espond to a row, with the chunks as column values. =20