You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by le...@apache.org on 2013/07/10 21:57:16 UTC

svn commit: r1501944 - /gora/trunk/gora-tutorial/conf/gora-solr-mapping.xml

Author: lewismc
Date: Wed Jul 10 19:57:15 2013
New Revision: 1501944

URL: http://svn.apache.org/r1501944
Log:
GORA-256 Add Gora store to gora-tutorial

Added:
    gora/trunk/gora-tutorial/conf/gora-solr-mapping.xml

Added: gora/trunk/gora-tutorial/conf/gora-solr-mapping.xml
URL: http://svn.apache.org/viewvc/gora/trunk/gora-tutorial/conf/gora-solr-mapping.xml?rev=1501944&view=auto
==============================================================================
--- gora/trunk/gora-tutorial/conf/gora-solr-mapping.xml (added)
+++ gora/trunk/gora-tutorial/conf/gora-solr-mapping.xml Wed Jul 10 19:57:15 2013
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   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 implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+
+<!-- 
+  Gora Mapping file for SQL Backend
+-->
+<gora-orm>
+  <class name="org.apache.gora.tutorial.log.generated.Pageview" keyClass="java.lang.Long" table="AccessLog">
+    <primarykey column="line"/>
+    <field name="url" column="url"/>
+    <field name="timestamp" column="timestamp"/>
+    <field name="ip" column="ip"/>
+    <field name="httpMethod" column="httpMethod"/>
+    <field name="httpStatusCode" column="httpStatusCode"/>
+    <field name="responseSize" column="responseSize"/>
+    <field name="referrer" column="referrer"/>
+    <field name="userAgent" column="userAgent"/>
+  </class>
+
+  <class name="org.apache.gora.tutorial.log.generated.MetricDatum" keyClass="java.lang.String" table="Metrics">
+    <primarykey column="id"/>
+    <field name="metricDimension" column="metricDimension"/>
+    <field name="timestamp" column="ts"/>
+    <field name="metric" column="metric"/>
+  </class>
+
+</gora-orm>
+