[GitHub] incubator-hawq issue #1065: HAWQ-1208. Porting gpdb interconnect fix to hawq...

2016-12-26 Thread stanlyxiang
Github user stanlyxiang commented on the issue:

https://github.com/apache/incubator-hawq/pull/1065
  
Merged to master. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq pull request #1065: HAWQ-1208. Porting gpdb interconnect fix ...

2016-12-26 Thread stanlyxiang
Github user stanlyxiang closed the pull request at:

https://github.com/apache/incubator-hawq/pull/1065


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq issue #1066: HAWQ-1237. Modify hard code 'select' privilege i...

2016-12-26 Thread zhangh43
Github user zhangh43 commented on the issue:

https://github.com/apache/incubator-hawq/pull/1066
  
+1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq issue #1066: HAWQ-1237. Modify hard code 'select' privilege i...

2016-12-26 Thread wcl14
Github user wcl14 commented on the issue:

https://github.com/apache/incubator-hawq/pull/1066
  
@zhangh43 @stanlyxiang Please review, thanks.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq pull request #1066: HAWQ-1237. Modify hard code 'select' priv...

2016-12-26 Thread wcl14
GitHub user wcl14 opened a pull request:

https://github.com/apache/incubator-hawq/pull/1066

HAWQ-1237. Modify hard code 'select' privilege in create_ranger_reque…

…st_json_batch() in rangerrest.c

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/wcl14/incubator-hawq HAWQ-1237

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-hawq/pull/1066.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1066


commit 5934be6f2f665d5732f9feafabc515a647474e75
Author: Chunling Wang 
Date:   2016-12-27T02:11:13Z

HAWQ-1237. Modify hard code 'select' privilege in 
create_ranger_request_json_batch() in rangerrest.c




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Assigned] (HAWQ-1237) Insert statement need "select" privilege in ranger check

2016-12-26 Thread Chunling Wang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HAWQ-1237?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Chunling Wang reassigned HAWQ-1237:
---

Assignee: Chunling Wang  (was: Ed Espino)

> Insert statement need "select" privilege in ranger check 
> -
>
> Key: HAWQ-1237
> URL: https://issues.apache.org/jira/browse/HAWQ-1237
> Project: Apache HAWQ
>  Issue Type: Bug
>  Components: Security
>Reporter: Chunling Wang
>Assignee: Chunling Wang
>
> The code in create_ranger_request_json_batch() in rangerrest.c is hard code 
> and make all statements need "select" privilege in ranger check.
> {code}
>   //ListCell *cell;
>   //foreach(cell, arg_ptr->actions)
>   //{
>   char tmp[7] = "select";
>   json_object* jaction = json_object_new_string((char *)tmp);
>   //json_object* jaction = json_object_new_string((char 
> *)cell->data.ptr_value);
>   json_object_array_add(jactions, jaction);
>   //}
>   json_object_object_add(jelement, "privileges", jactions);
>   json_object_array_add(jaccess, jelement);
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (HAWQ-1237) Insert statement need "select" privilege in ranger check

2016-12-26 Thread Chunling Wang (JIRA)
Chunling Wang created HAWQ-1237:
---

 Summary: Insert statement need "select" privilege in ranger check 
 Key: HAWQ-1237
 URL: https://issues.apache.org/jira/browse/HAWQ-1237
 Project: Apache HAWQ
  Issue Type: Bug
  Components: Security
Reporter: Chunling Wang
Assignee: Ed Espino


The code in create_ranger_request_json_batch() in rangerrest.c is hard code and 
make all statements need "select" privilege in ranger check.
{code}
//ListCell *cell;
//foreach(cell, arg_ptr->actions)
//{
char tmp[7] = "select";
json_object* jaction = json_object_new_string((char *)tmp);
//json_object* jaction = json_object_new_string((char 
*)cell->data.ptr_value);
json_object_array_add(jactions, jaction);
//}
json_object_object_add(jelement, "privileges", jactions);
json_object_array_add(jaccess, jelement);
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HAWQ-1193) TDE support in HAWQ

2016-12-26 Thread Amy (JIRA)

 [ 
https://issues.apache.org/jira/browse/HAWQ-1193?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amy updated HAWQ-1193:
--
Attachment: HAWQ_TDE_Design_ver0.2 .pdf

Revised HAWQ TDE support design doc based on feedback with v0.1

> TDE support in HAWQ
> ---
>
> Key: HAWQ-1193
> URL: https://issues.apache.org/jira/browse/HAWQ-1193
> Project: Apache HAWQ
>  Issue Type: New Feature
>  Components: libhdfs
>Reporter: Hongxu Ma
>Assignee: Hongxu Ma
> Fix For: backlog
>
> Attachments: HAWQ_TDE_Design_ver0.1.pdf, HAWQ_TDE_Design_ver0.2 .pdf
>
>
>  TDE(transparently data encrypted) has been supported after hadoop 2.6:
> http://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/TransparentEncryption.html
> https://issues.apache.org/jira/browse/HDFS-6134
> Use TDE can promise:
> 1, hdfs file is encrypted.
> 2, network transfer between hdfs and libhdfs client is encrypted.
> So hawq will update libhdfs3 to support it.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)