Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 61925103FA for ; Mon, 5 Aug 2013 03:59:41 +0000 (UTC) Received: (qmail 17890 invoked by uid 500); 5 Aug 2013 03:59:39 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 17545 invoked by uid 500); 5 Aug 2013 03:59:34 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 17537 invoked by uid 99); 5 Aug 2013 03:59:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Aug 2013 03:59:32 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS,T_FILL_THIS_FORM_SHORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of dch@jsonified.com designates 209.85.215.46 as permitted sender) Received: from [209.85.215.46] (HELO mail-la0-f46.google.com) (209.85.215.46) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Aug 2013 03:59:26 +0000 Received: by mail-la0-f46.google.com with SMTP id eh20so1709598lab.33 for ; Sun, 04 Aug 2013 20:59:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jsonified.com; s=google; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=FbarW4snAIHPL9vPnQNgL5gPsUvP5jsEf5ZxXrXwtOo=; b=vw2Yf2Cxe6dByptKS3j4etb6Dqe7w+7P87KiS8bXWw3Wp/lxqxHtSXjoL+f/8YLSiY B3zRjMYRT+S0KBx8Q3WOwE4zcGbj0HSjH/clnWaTDB0tGlmX/H18RUPcfJEVvTb/1z7I neyjZrp8tm6aDbXOaRnk0ASynpz0jfZE5lLg4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:content-type:x-gm-message-state; bh=FbarW4snAIHPL9vPnQNgL5gPsUvP5jsEf5ZxXrXwtOo=; b=Ozw3FgiMEUC1qOtSwX4jeSS/7SYzAzktlZD/KtcUqpkiISb1IfC9KGbxyeDMcUkSCK gusgAcWWG56KDXfKblyVBpPadDWJOcWxjT6LVn680xlDo9SJ1t8iuDy5mJXQlTefbWDU UQYN7mUOOHszBMUtbh5syRqnhLKHqr2hu/AusNEkdl9IQ5PGsZX6WYxQO0aqDZp7781l 9usNvr9Wf6+wgEXo2DkUGpORi2qiEumuijESUr/yRFRJFtrsntkXdneBzHtUIhGBjR9y 1gBAVY295wtvxqM1Us7hXgNKnrq+47lGvnHx1zHNNnBEAXeD7TlYy0OC7XrrVCWyaBcu sztg== MIME-Version: 1.0 X-Received: by 10.152.29.201 with SMTP id m9mr7804375lah.6.1375675146041; Sun, 04 Aug 2013 20:59:06 -0700 (PDT) Received: by 10.112.70.229 with HTTP; Sun, 4 Aug 2013 20:59:05 -0700 (PDT) X-Originating-IP: [84.112.19.176] In-Reply-To: References: Date: Mon, 5 Aug 2013 05:59:05 +0200 Message-ID: Subject: Re: Sample couchdb data From: Dave Cottlehuber To: user@couchdb.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQlpCPbKy/rPJo3yxO8KrKXNvYindfUjr9tFeVanwlbN018n3/kSVZUL1xLPQq5TS9IQriIH X-Virus-Checked: Checked by ClamAV on apache.org On 5 August 2013 04:41, Yves S. Garret wrote: > Is there any free couchdb data that I can load up into my database and play > with it? Say I'd like > 1000 documents of recipes/song names/city names or something. Any ideas? Use http://json-generator.appspot.com/ and do a _bulk_docs upload https://couchdb.readthedocs.org/en/latest/api/database.html#post-db-bulk-docs 1000 docs can be done in 1 POST easily. Alternatively you can replicate the npm registry (boooooring data I know) from http://isaacs.iriscouch.com/registry and cancel the replication after you get ~ 1000 docs. It's a 35GiB db so you don't want to finish. A+ Dave