Re: Use Travis instead of Jenkins to ensure building success from pull request?

2016-06-27 Thread Ming Li
Hi Roman, Do you have the admin privilege of hawq on githup? If not, could you please help me to forward this email to the right person? We need to take some actions on githup setting to trigger travis_ci and Coverity Scan. Thanks. On Tue, Jun 28, 2016 at 1:24 PM, Jiali Yao

[jira] [Created] (HAWQ-872) HAWQ check fails if '--kerberos' not given when kerberos is actually enabled

2016-06-27 Thread Radar Lei (JIRA)
Radar Lei created HAWQ-872: -- Summary: HAWQ check fails if '--kerberos' not given when kerberos is actually enabled Key: HAWQ-872 URL: https://issues.apache.org/jira/browse/HAWQ-872 Project: Apache HAWQ

Re: Use Travis instead of Jenkins to ensure building success from pull request?

2016-06-27 Thread Jiali Yao
@Hong, thanks for your comments. For 1, Ubuntu can be integrated. Thought? For 2, Since the time is related to resource and CPU, it is not stabled every time. But I do not think it is blocked so far. Thanks Jiali On Mon, Jun 27, 2016 at 11:16 AM, hong wu wrote: >

Re: Can we create one wiki page for FAQ?

2016-06-27 Thread Ming Li
Good idea. (1) Added one FAQ page here: https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=65144284 (2) This link with other common used links also added to README.md ( https://github.com/apache/incubator-hawq/commit/5a8622707749cfe98c61188ab212a61c83778998 ) So let's continue to

[jira] [Created] (HAWQ-871) HAWQ CHECK looking for wrong YARN HA parameters

2016-06-27 Thread Radar Lei (JIRA)
Radar Lei created HAWQ-871: -- Summary: HAWQ CHECK looking for wrong YARN HA parameters Key: HAWQ-871 URL: https://issues.apache.org/jira/browse/HAWQ-871 Project: Apache HAWQ Issue Type: Bug

Re: About the commit

2016-06-27 Thread Radar Da lei
Agree to keep the commit clean. If you already hit the 'Merge' commit issue, another way to make it clean by use 'git cherry-pick $commit_number' to save your commit in another branch, then get it back after you did clean. Regards, Radar On Tue, Jun 28, 2016 at 9:42 AM, Jiali Yao

Re: About the commit

2016-06-27 Thread Jiali Yao
+1 on below steps: git pull --rebase $upstream master git push -f $my_repo $my_branch Then on github, create a pull request It will make the git log clear and keep the correct commit order. Thanks Jiali On Tue, Jun 28, 2016 at 9:37 AM, Guo Gang wrote: > I usually does the

Re: About the commit

2016-06-27 Thread Guo Gang
I usually does the following things before creating a pull request. git pull --rebase $upstream master git push -f $my_repo $my_branch Then on github, create a pull request This removes "Merge" commit, and make commits clean, and make pull request easy. In local repo, Keep one commit only for

Re: See a build error

2016-06-27 Thread Guo Gang
Some of your issues with solutions were earlier mentioned on https://cwiki.apache.org/confluence/display/HAWQ/Build+and+Install I guess they will be moved to a FAQ page which was discussed recently. If you think there is error which is not detected during early configure, please file a bug.

[jira] [Created] (HAWQ-870) Allocate target's tuple table slot in PortalHeapMemory during split partition

2016-06-27 Thread Venkatesh (JIRA)
Venkatesh created HAWQ-870: -- Summary: Allocate target's tuple table slot in PortalHeapMemory during split partition Key: HAWQ-870 URL: https://issues.apache.org/jira/browse/HAWQ-870 Project: Apache HAWQ

Re: [VIDEO REPLAY] Meetup for Data Scientists from Tuesday 6/21: Zeppelin meets MADlib & HAWQ

2016-06-27 Thread Greg Chase
Greetings Zeppelin, MADlib, and HAWQ Communities, We have posted a recording of the Apache Zeppelin meets Apache MADlib and Apache HAWQ Meeting. You can find it here . The agenda: What is Apache Zeppelin? (00:23

Re: See a build error

2016-06-27 Thread Ting(Goden) Yao
got passed that, installed xcode developer tools, now a new error: gcc $(/usr/bin/apr-1-config --cppflags) -DGP_VERSION="2.0.0.0 build dev" $(/usr/bin/apr-1-config --cflags) -Wall -DGPFXDIST -O3 -std=gnu99 -Wall -Wmissing-prototypes -Wpointer-arith -Wendif-labels -Wformat-security

Re: See a build error

2016-06-27 Thread Ting(Goden) Yao
I've passed the json-c lib dependency after adding the lib path. But now I see new errors: apr.h and apr_getopt.h are not in my repo anywhere. In file included from /Users/tyao/source/asf/incubator-hawq/src/bin/gpfdist/src/gpfdist/gfile.c:40:

Re: See a build error

2016-06-27 Thread Ting(Goden) Yao
make -j1 failed with the same error. I was able to run configure successfully without issues. I'll try to add the lib path and see... *gcc -Xlinker -v* tyao@Goden-Yao-MacBook-Pro-3  ~/source/asf/incubator-hawq   2.0.0-incubating  gcc -Xlinker -v @(#)PROGRAM:ld PROJECT:ld64-264.3.102

Re: About the commit

2016-06-27 Thread Wen Lin
agree! To make commit messages more clear. On Mon, Jun 27, 2016 at 4:15 PM, Ruilong Huo wrote: > +1 with strong agree. Squash or even manual merge so that the message > follows the convention would definitely help other contributors to > understand each commit. > > Best

Re: About the commit

2016-06-27 Thread Ruilong Huo
+1 with strong agree. Squash or even manual merge so that the message follows the convention would definitely help other contributors to understand each commit. Best regards, Ruilong Huo On Sat, Jun 25, 2016 at 9:43 AM, hong wu wrote: > FYI: In new version of github >

Re: See a build error

2016-06-27 Thread Guo Gang
That means that gcc fails to find the linking library path for json-c. It is a bit weird since during configure, "-ljson-c" was earlier sanity-checked. Are you able to run configure successfully now? Is /usr/local/lib in your gcc default library search paths? # gcc -Xlinker -v A simple