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 64188200B60 for ; Sun, 14 Aug 2016 22:56:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 62C8E160AB5; Sun, 14 Aug 2016 20:56:22 +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 A83CE160A8B for ; Sun, 14 Aug 2016 22:56:21 +0200 (CEST) Received: (qmail 97378 invoked by uid 500); 14 Aug 2016 20:56:20 -0000 Mailing-List: contact dev-help@gora.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@gora.apache.org Delivered-To: mailing list dev@gora.apache.org Received: (qmail 97359 invoked by uid 99); 14 Aug 2016 20:56:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Aug 2016 20:56:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 7873C2C02A5 for ; Sun, 14 Aug 2016 20:56:20 +0000 (UTC) Date: Sun, 14 Aug 2016 20:56:20 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@gora.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (GORA-437) Implement CouchDB Datastore MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sun, 14 Aug 2016 20:56:22 -0000 [ https://issues.apache.org/jira/browse/GORA-437?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D154204= 81#comment-15420481 ]=20 ASF GitHub Bot commented on GORA-437: ------------------------------------- Github user lewismc commented on a diff in the pull request: https://github.com/apache/gora/pull/74#discussion_r74708281 =20 --- Diff: gora-couchdb/src/test/java/org/apache/gora/GoraCouchDBTestDri= ver.java --- @@ -0,0 +1,62 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + *

+ * http://www.apache.org/licenses/LICENSE-2.0 + *

+ * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or imp= lied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.gora; + +import org.apache.gora.couchdb.store.CouchDBParameters; +import org.apache.gora.couchdb.store.CouchDBStore; +import org.apache.gora.persistency.Persistent; +import org.apache.gora.store.DataStore; +import org.apache.gora.store.DataStoreFactory; +import org.apache.gora.util.GoraException; +import org.testcontainers.containers.GenericContainer; + +import java.util.Properties; + +public class GoraCouchDBTestDriver extends GoraTestDriver { + + private final GenericContainer couchdbContainer; + private Properties properties =3D DataStoreFactory.createProps(); + + /** + * Default constructor + */ + public GoraCouchDBTestDriver(GenericContainer couchdbContainer) { + super(CouchDBStore.class); + this.couchdbContainer =3D couchdbContainer; + } + + @Override + public void setUpClass() throws Exception { + properties.put(CouchDBParameters.PROP_COUCHDB_PORT, couchdbContain= er.getMappedPort(5984).toString()); + } + + @Override + public DataStore createDataStore(Cla= ss keyClass, Class persistentClass) + throws GoraException { + + final DataStore dataStore =3D DataStoreFactory + .createDataStore((Class>) dataStoreC= lass, keyClass, persistentClass, conf, + properties); + dataStores.add(dataStore); + + log.info("Datastore for " + persistentClass + " was added."); --- End diff -- =20 Please use paramaterized logging. > Implement CouchDB Datastore > --------------------------- > > Key: GORA-437 > URL: https://issues.apache.org/jira/browse/GORA-437 > Project: Apache Gora > Issue Type: New Feature > Reporter: Furkan KAMACI > Assignee: cihad g=C3=BCzel > Labels: gora-couchdb, gsoc2016, storage > Fix For: 0.8 > > > Apache CouchDB is a document-oriented NoSQL database that uses JSON to st= ore data, JavaScript as its query language using MapReduce, and HTTP for an= API. It could be nice to support CouchDB as a datastore at Gora. -- This message was sent by Atlassian JIRA (v6.3.4#6332)