[jira] [Commented] (RANGER-3318) Ranger webui main page has a paging limit for services

2021-10-26 Thread Pierre Smits (Jira)


[ 
https://issues.apache.org/jira/browse/RANGER-3318?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17434272#comment-17434272
 ] 

Pierre Smits commented on RANGER-3318:
--

Hi [~fullhouse],

 You have listed '2.2.0' as one of the components in the header of this ticket. 
It seems to me that this is incorrect (as a version should not be listed 
there). Can you please correct this?

> Ranger webui main page has a paging limit for services
> --
>
> Key: RANGER-3318
> URL: https://issues.apache.org/jira/browse/RANGER-3318
> Project: Ranger
>  Issue Type: Bug
>  Components: 2.2.0, admin, Ranger
>Affects Versions: 2.0.0, 2.1.0, 2.0.1, 2.2.0, 2.1.1
>Reporter: Konstantin Tsypin
>Priority: Major
>
> Hi!
> It's a bug with webui. We have 100+++ services on our Ranger production, but 
> webui show only first 100 added. 
> It's the paging limit without option to list pages. Nice to have - update UI 
> and implement page numbers.
>  
> Temprorary workaround i find:
>  Inside the file 
>  {{ranger_admin_directory/ews/webapp/scripts}}/{{Main.min.js}}
>  all substrings:
>  “{{this.services.setPageSize(100)}}”
>  modify just in case for
>  “{{this.services.setPageSize(200)}}”
>   
>  As Idea - you can make this PageSize as ranger option.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (RANGER-3319) Ranger usersync cookie default duration for sync

2021-10-26 Thread Pierre Smits (Jira)


[ 
https://issues.apache.org/jira/browse/RANGER-3319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17434271#comment-17434271
 ] 

Pierre Smits commented on RANGER-3319:
--

HI [~fullhouse],

You have listed '2.2.0' as one of the components in the header of this ticket. 
It seems to me that this is incorrect (as a version should not be listed 
there). Can you please correct this?

> Ranger usersync cookie default duration for sync
> 
>
> Key: RANGER-3319
> URL: https://issues.apache.org/jira/browse/RANGER-3319
> Project: Ranger
>  Issue Type: Bug
>  Components: 2.2.0, usersync
>Affects Versions: 2.1.0, 2.0.1, 2.2.0, 2.1.1
>Reporter: Konstantin Tsypin
>Priority: Major
>
> Hi!
> At this moment we cant initial sync out of the box our LDAP with 10k+ users & 
> groups.
> It's because sync works as three steps:
> 1) Sync groups
> 2) Sync users
> 3) Map users as one request and send it to rangeradmin
> From time to time our third step on initial sync generate this single request 
> for a long time
> It can be easily three or four hours.
> Acrossing this timegate we have an error with timeout usersync cookie (that 
> by default is 60 minutes) and failed 3rd step.
>  
> The workaround - is 
> ranger_admin_directory/ews/webapp/WEB-INF/web.xml
> change 
> default 
> 60 
> to just in case
> 1440
> BUT im was really frustrated with this behavior whan faced it first time, and 
> i want to have a mechanism to split mapping step for a smaller part, and 
> update cookie from time to time. 
>  
> Thank you.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (RANGER-3383) Internationalization

2021-10-26 Thread Pierre Smits (Jira)


[ 
https://issues.apache.org/jira/browse/RANGER-3383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17434270#comment-17434270
 ] 

Pierre Smits commented on RANGER-3383:
--

Hi [~rizh42],

 

You have listed '2.2.0' as one of the components in the header of this ticket. 
It seems to me that this is incorrect (as a version should not be listed 
there). Can you please correct this?

> Internationalization
> 
>
> Key: RANGER-3383
> URL: https://issues.apache.org/jira/browse/RANGER-3383
> Project: Ranger
>  Issue Type: Wish
>  Components: 2.2.0, Ranger
>Reporter: Egor
>Priority: Minor
>
> Hello, my name is Egor
> I’m from Russia and I provide support services for your application
> My clients are interested in translation of GUI, so I thought that I can help 
> you with i18n and translate UI into Russian language
> Is there any rules or thoughts how your community is going to 
> internationalize?
> Or is there any person in community with whom I can discuss this Issue?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (RANGER-3497) Have a installation page for release 2.1.0

2021-10-26 Thread Pierre Smits (Jira)
Pierre Smits created RANGER-3497:


 Summary: Have a installation page for release 2.1.0
 Key: RANGER-3497
 URL: https://issues.apache.org/jira/browse/RANGER-3497
 Project: Ranger
  Issue Type: Improvement
  Components: documentation
Affects Versions: 2.1.0
Reporter: Pierre Smits


The index page  of the wiki has a link for the installation guide. This 
currently points to the 9.5 release.  The latest release available is 2.1.0, 
but there is no up-to-date installation guide for this.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (RANGER-3496) docker build -f Dockerfile.ranger-base

2021-10-25 Thread Pierre Smits (Jira)


[ 
https://issues.apache.org/jira/browse/RANGER-3496?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17433641#comment-17433641
 ] 

Pierre Smits edited comment on RANGER-3496 at 10/25/21, 9:07 AM:
-

This error is due to the fact that 'Dockerfile.ranger-base' uses python2 to 
execute the 'get-pip.py' script in the RUN command, see:


{code:java}
 python2 /tmp/get-pip.py && \
{code}
When using
{code:java}
 python3 /tmp/get-pip.py && \
{code}
the build succeeds.

 

 


was (Author: pfm.smits):
This error is due to the fact that 'Dockerfile.ranger-base' uses python2 to 
execute the 'get-pip.py' script.

> docker build -f Dockerfile.ranger-base
> --
>
> Key: RANGER-3496
> URL: https://issues.apache.org/jira/browse/RANGER-3496
> Project: Ranger
>  Issue Type: Bug
>  Components: Ranger
>Affects Versions: 2.1.0
>Reporter: Pierre Smits
>Priority: Major
>
> When  executing following command
> {code:java}
> docker build -f Dockerfile.ranger-base -t ranger-base .
> {code}
> the process fails with following
> {code:java}
> #4 111.9 ERROR: This script does not work on Python 2.7 The minimum supported 
> Python version is 3.6. Please use 
> https://bootstrap.pypa.io/pip/2.7/get-pip.py instead.
> --
> executor failed running [/bin/sh -c apt-get update && 
> DEBIAN_FRONTEND="noninteractive" apt-get -y install curl wget tzdata 
> python python3 python3-pip openjdk-8-jdk bc iputils-ping ssh pdsh && curl 
> https://bootstrap.pypa.io/get-pip.py --output /tmp/get-pip.py && python2 
> /tmp/get-pip.py && pip3 install apache-ranger && pip3 install 
> requests && pip install requests]: exit code: 1
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (RANGER-3496) docker build -f Dockerfile.ranger-base

2021-10-25 Thread Pierre Smits (Jira)


[ 
https://issues.apache.org/jira/browse/RANGER-3496?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17433641#comment-17433641
 ] 

Pierre Smits commented on RANGER-3496:
--

This error is due to the fact that 'Dockerfile.ranger-base' uses python2 to 
execute the 'get-pip.py' script.

> docker build -f Dockerfile.ranger-base
> --
>
> Key: RANGER-3496
> URL: https://issues.apache.org/jira/browse/RANGER-3496
> Project: Ranger
>  Issue Type: Bug
>  Components: Ranger
>Affects Versions: 2.1.0
>Reporter: Pierre Smits
>Priority: Major
>
> When  executing following command
> {code:java}
> docker build -f Dockerfile.ranger-base -t ranger-base .
> {code}
> the process fails with following
> {code:java}
> #4 111.9 ERROR: This script does not work on Python 2.7 The minimum supported 
> Python version is 3.6. Please use 
> https://bootstrap.pypa.io/pip/2.7/get-pip.py instead.
> --
> executor failed running [/bin/sh -c apt-get update && 
> DEBIAN_FRONTEND="noninteractive" apt-get -y install curl wget tzdata 
> python python3 python3-pip openjdk-8-jdk bc iputils-ping ssh pdsh && curl 
> https://bootstrap.pypa.io/get-pip.py --output /tmp/get-pip.py && python2 
> /tmp/get-pip.py && pip3 install apache-ranger && pip3 install 
> requests && pip install requests]: exit code: 1
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (RANGER-3496) docker build -f Dockerfile.ranger-base

2021-10-25 Thread Pierre Smits (Jira)
Pierre Smits created RANGER-3496:


 Summary: docker build -f Dockerfile.ranger-base
 Key: RANGER-3496
 URL: https://issues.apache.org/jira/browse/RANGER-3496
 Project: Ranger
  Issue Type: Bug
  Components: Ranger
Affects Versions: 2.1.0
Reporter: Pierre Smits


When  executing following command
{code:java}
docker build -f Dockerfile.ranger-base -t ranger-base .
{code}
the process fails with following
{code:java}
#4 111.9 ERROR: This script does not work on Python 2.7 The minimum supported 
Python version is 3.6. Please use https://bootstrap.pypa.io/pip/2.7/get-pip.py 
instead.
--
executor failed running [/bin/sh -c apt-get update && 
DEBIAN_FRONTEND="noninteractive" apt-get -y install curl wget tzdata python 
python3 python3-pip openjdk-8-jdk bc iputils-ping ssh pdsh && curl 
https://bootstrap.pypa.io/get-pip.py --output /tmp/get-pip.py && python2 
/tmp/get-pip.py && pip3 install apache-ranger && pip3 install requests 
&& pip install requests]: exit code: 1
{code}
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)