[gora] branch master updated: GORA-620: Migrate autoflush parameter after HBase refactor

2019-08-08 Thread djkevincr
This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
 new bee2240  GORA-620: Migrate autoflush parameter after HBase refactor
 new d0c1897  Merge pull request #183 from djkevincr/GORA-620
bee2240 is described below

commit bee2240a02b985131f15ad0d887d04c0c72232a4
Author: Kevin Ratnasekera 
AuthorDate: Thu Aug 8 20:36:49 2019 +0530

GORA-620: Migrate autoflush parameter after HBase refactor
---
 gora-pig/src/test/resources/gora.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gora-pig/src/test/resources/gora.properties 
b/gora-pig/src/test/resources/gora.properties
index 9a5d576..bcb8936 100644
--- a/gora-pig/src/test/resources/gora.properties
+++ b/gora-pig/src/test/resources/gora.properties
@@ -16,4 +16,4 @@
 gora.datastore.default=org.apache.gora.hbase.store.HBaseStore
 gora.datastore.autocreateschema=true
 gora.datastore.scanner.caching=10
-hbase.client.autoflush.default=false
\ No newline at end of file
+gora.hbasestore.hbase.client.autoflush.enabled=false
\ No newline at end of file



[gora] branch master updated: GORA-619: Remove duplicated properties gora.properties

2019-08-08 Thread djkevincr
This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
 new cf8e66b  GORA-619: Remove duplicated properties gora.properties
 new 5973677  Merge pull request #182 from djkevincr/GORA-619
cf8e66b is described below

commit cf8e66b9a580cbf79542586b4cd56012cdd5570f
Author: Kevin Ratnasekera 
AuthorDate: Thu Aug 8 15:41:34 2019 +0530

GORA-619: Remove duplicated properties gora.properties
---
 gora-tutorial/conf/gora.properties | 22 --
 1 file changed, 8 insertions(+), 14 deletions(-)

diff --git a/gora-tutorial/conf/gora.properties 
b/gora-tutorial/conf/gora.properties
index 4c95429..02ef1f8 100644
--- a/gora-tutorial/conf/gora.properties
+++ b/gora-tutorial/conf/gora.properties
@@ -21,6 +21,7 @@ gora.datastore.default=org.apache.gora.hbase.store.HBaseStore
 #gora.datastore.default=org.apache.gora.cassandra.store.CassandraStore
 #gora.datastore.default=org.apache.gora.solr.store.SolrStore
 #gora.datastore.default=org.apache.gora.aerospike.store.AerospikeStore
+#gora.datastore.default=org.apache.gora.mongodb.store.MongoStore
 
 #gora.datastore.default=org.apache.gora.avro.store.AvroStore
 #gora.avrostore.input.path=hdfs://localhost:9000/gora.avrostore.test.input
@@ -65,17 +66,10 @@ 
gora.datastore.jcache.provider=com.hazelcast.cache.impl.HazelcastServerCachingPr
 #gora.aerospikestore.server.username=
 #gora.aerospikestore.server.password=
 
-
-# MongoDBStore properties  #
-
-
-gora.datastore.autocreateschema=true
-gora.datastore.default=org.apache.gora.mongodb.store.MongoStore
-# Don't override properties coming from Hadoop configuration for test
-# Those properties will contains override for Mongo server port
-gora.mongodb.override_hadoop_configuration=false
-gora.mongodb.mapping.file=/gora-mongodb-mapping.xml
-gora.mongodb.servers=localhost
-gora.mongodb.db=nutchtest
-gora.mongodb.readpreference=primary
-gora.mongodb.writeconcern=acknowledged
+##MongoDB dataStore properties
+#gora.mongodb.override_hadoop_configuration=false
+#gora.mongodb.mapping.file=/gora-mongodb-mapping.xml
+#gora.mongodb.servers=localhost
+#gora.mongodb.db=nutchtest
+#gora.mongodb.readpreference=primary
+#gora.mongodb.writeconcern=acknowledged



[gora] branch master updated (30645c0 -> 3ee5663)

2019-08-08 Thread djkevincr
This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git.


from 30645c0  Merge pull request #173 from 
LahiruJayasekara/fix-gora-compiler-cli-output
 new e517117  Add gora-mongodb settings to gora-tutorial
 new 3e65014  Add gora-mongodb settings to gora-tutorial
 new a5bdf81  Add gora-mongodb settings to gora-tutorial
 new afd66e4  Add gora-mongodb settings to gora-tutorial
 new f468a67  Add gora-mongodb settings to gora-tutorial
 new a04e09b  Add gora-mongodb settings to gora-tutorial
 new 3ee5663  Merge pull request #172 from sneceesay77/master

The 1201 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gora-tutorial/conf/gora-mongodb-mapping.xml | 37 +
 gora-tutorial/conf/gora.properties  | 19 +--
 gora-tutorial/pom.xml   |  6 +
 pom.xml |  5 
 4 files changed, 65 insertions(+), 2 deletions(-)
 create mode 100644 gora-tutorial/conf/gora-mongodb-mapping.xml



[gora] branch master updated (d92d298 -> 30645c0)

2019-08-08 Thread djkevincr
This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git.


from d92d298  Merge pull request #181 from djkevincr/GORA-618
 new 943d866  Fix goracompiler cli output for --help
 new 47325ef  Replace "\n" with `System.lineSeparator()`
 new 30645c0  Merge pull request #173 from 
LahiruJayasekara/fix-gora-compiler-cli-output

The 1194 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:



[gora] branch master updated: Fix GORA-618 gpg and checksum maven plugin issues

2019-08-08 Thread djkevincr
This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
 new d177a93  Fix GORA-618 gpg and checksum maven plugin issues
 new d92d298  Merge pull request #181 from djkevincr/GORA-618
d177a93 is described below

commit d177a938def592312238440be78aca23b1608aff
Author: Kevin Ratnasekera 
AuthorDate: Thu Aug 8 13:08:06 2019 +0530

Fix GORA-618 gpg and checksum maven plugin issues
---
 pom.xml | 23 ++-
 1 file changed, 2 insertions(+), 21 deletions(-)

diff --git a/pom.xml b/pom.xml
index 220a4cc..dff5e78 100644
--- a/pom.xml
+++ b/pom.xml
@@ -719,20 +719,6 @@
 
   
   
-org.apache.maven.plugins
-maven-gpg-plugin
-${maven-gpg-plugin.version}
-
-  
-sign-artifacts
-verify
-
-  sign
-
-  
-
-  
-  
 net.nicoulaj.maven.plugins
 checksum-maven-plugin
 ${checksum-maven-plugin.version}
@@ -746,19 +732,14 @@
 
 
   
-MD5
-SHA-1
 SHA-512
   
-  false
   
 
   ${project.build.directory}
   
-*.zip
-*.tar.gz
-*.jar
-*.pom
+apache-gora-${project.version}-src.zip
+
apache-gora-${project.version}-src.tar.gz