Author: alfonsonishikawa
Date: Tue Aug 27 17:22:37 2019
New Revision: 1865997

URL: http://svn.apache.org/viewvc?rev=1865997&view=rev
Log:
Bugfix: gora-hbase-mapping.xml and table name with wrong name

Modified:
    gora/site/trunk/content/current/tutorial.md

Modified: gora/site/trunk/content/current/tutorial.md
URL: 
http://svn.apache.org/viewvc/gora/site/trunk/content/current/tutorial.md?rev=1865997&r1=1865996&r2=1865997&view=diff
==============================================================================
--- gora/site/trunk/content/current/tutorial.md (original)
+++ gora/site/trunk/content/current/tutorial.md Tue Aug 27 17:22:37 2019
@@ -265,8 +265,8 @@ The mapping files declare how the fields
 are serialized and persisted to the data store.
     
 ###HBase mappings
-HBase mappings are stored at file named <code>gora-hbase-mappings.xml</code>. 
-For this tutorial we will be using the file 
<code>gora-tutorial/conf/gora-hbase-mappings.xml</code>.
+HBase mappings are stored at file named <code>gora-hbase-mapping.xml</code>. 
+For this tutorial we will be using the file 
<code>gora-tutorial/conf/gora-hbase-mapping.xml</code>.
       
     <gora-otd>
       <table name="Pageview"> <!-- optional descriptors for tables -->
@@ -275,7 +275,7 @@ For this tutorial we will be using the f
         <family name="misc"/>
       </table>
 
-      <class name="org.apache.gora.tutorial.log.generated.Pageview" 
keyClass="java.lang.Long" table="AccessLog">
+      <class name="org.apache.gora.tutorial.log.generated.Pageview" 
keyClass="java.lang.Long" table="Pageview">
        <field name="url" family="common" qualifier="url"/>
        <field name="timestamp" family="common" qualifier="timestamp"/>
        <field name="ip" family="common" qualifier="ip" />


Reply via email to