[GitHub] [incubator-dlab] DG1202 merged pull request #848: [DLAB-1984]: Allowed to create EMR/Dataproc with GPU for Jupyter, fix…

2020-08-06 Thread GitBox


DG1202 merged pull request #848:
URL: https://github.com/apache/incubator-dlab/pull/848


   



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1984) Allow to create EMR/Dataproc with GPU for Jupyter

2020-08-06 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated DLAB-1984:
-
Labels: AWS Front-end GCP pull-request-available  (was: AWS Front-end GCP)

> Allow to create EMR/Dataproc with GPU for Jupyter
> -
>
> Key: DLAB-1984
> URL: https://issues.apache.org/jira/browse/DLAB-1984
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Dmytro Gnatyshyn
>Priority: Minor
>  Labels: AWS, Front-end, GCP, pull-request-available
>
> (/) 1. Allow to create EMR/Dataproc with GPU for Jupyter
> (/) 2. Get rid of ungit link for Zeppelin



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[GitHub] [incubator-dlab] DG1202 opened a new pull request #848: [DLAB-1984]: Allowed to create EMR/Dataproc with GPU for Jupyter, fix…

2020-08-06 Thread GitBox


DG1202 opened a new pull request #848:
URL: https://github.com/apache/incubator-dlab/pull/848


   …ed libs groups, ungit for zeppelin



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[GitHub] [incubator-dlab] ppapou commented on a change in pull request #842: [DLAB-1935] Audit adjustments

2020-08-06 Thread GitBox


ppapou commented on a change in pull request #842:
URL: https://github.com/apache/incubator-dlab/pull/842#discussion_r466473860



##
File path: 
services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ProjectServiceImpl.java
##
@@ -344,10 +344,11 @@ private String getUpdateBudgetAudit(ProjectDTO p) {
if (!configuration.isAuditEnabled()) {
return null;
}
-   Integer value = 
Optional.ofNullable(get(p.getName()).getBudget())
+   ProjectDTO dbProject = get(p.getName());

Review comment:
   Variable has been renamed





This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[GitHub] [incubator-dlab] ppapou commented on a change in pull request #842: [DLAB-1935] Audit adjustments

2020-08-06 Thread GitBox


ppapou commented on a change in pull request #842:
URL: https://github.com/apache/incubator-dlab/pull/842#discussion_r466473681



##
File path: 
services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ProjectServiceImpl.java
##
@@ -344,10 +344,11 @@ private String getUpdateBudgetAudit(ProjectDTO p) {
if (!configuration.isAuditEnabled()) {
return null;
}
-   Integer value = 
Optional.ofNullable(get(p.getName()).getBudget())
+   ProjectDTO dbProject = get(p.getName());
+   Integer value = Optional.ofNullable(dbProject.getBudget())
.map(BudgetDTO::getValue)
.orElse(null);
-   boolean monthlyBudget = 
get(p.getName()).getBudget().isMonthlyBudget();
+   boolean monthlyBudget = dbProject.getBudget().isMonthlyBudget();

Review comment:
   Optional interface has been added





This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[GitHub] [incubator-dlab] ofuks commented on a change in pull request #842: [DLAB-1935] Audit adjustments

2020-08-06 Thread GitBox


ofuks commented on a change in pull request #842:
URL: https://github.com/apache/incubator-dlab/pull/842#discussion_r466462253



##
File path: 
services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ProjectServiceImpl.java
##
@@ -344,10 +344,11 @@ private String getUpdateBudgetAudit(ProjectDTO p) {
if (!configuration.isAuditEnabled()) {
return null;
}
-   Integer value = 
Optional.ofNullable(get(p.getName()).getBudget())
+   ProjectDTO dbProject = get(p.getName());
+   Integer value = Optional.ofNullable(dbProject.getBudget())
.map(BudgetDTO::getValue)
.orElse(null);
-   boolean monthlyBudget = 
get(p.getName()).getBudget().isMonthlyBudget();
+   boolean monthlyBudget = dbProject.getBudget().isMonthlyBudget();

Review comment:
   Can this line cause NPE?

##
File path: 
services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ProjectServiceImpl.java
##
@@ -344,10 +344,11 @@ private String getUpdateBudgetAudit(ProjectDTO p) {
if (!configuration.isAuditEnabled()) {
return null;
}
-   Integer value = 
Optional.ofNullable(get(p.getName()).getBudget())
+   ProjectDTO dbProject = get(p.getName());

Review comment:
   Please rename **dbProject** to **project** or **projectDTO**





This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1984) Allow to create EMR/Dataproc with GPU for Jupyter

2020-08-06 Thread Dmytro Gnatyshyn (Jira)


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

Dmytro Gnatyshyn updated DLAB-1984:
---
Description: 
(/) 1. Allow to create EMR/Dataproc with GPU for Jupyter

(/) 2. Get rid of ungit link for Zeppelin

  was:
1. Allow to create EMR/Dataproc with GPU for Jupyter

2. Get rid of ungit link for Zeppelin


> Allow to create EMR/Dataproc with GPU for Jupyter
> -
>
> Key: DLAB-1984
> URL: https://issues.apache.org/jira/browse/DLAB-1984
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Dmytro Gnatyshyn
>Priority: Minor
>  Labels: AWS, Front-end, GCP
>
> (/) 1. Allow to create EMR/Dataproc with GPU for Jupyter
> (/) 2. Get rid of ungit link for Zeppelin



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1594) Add support of Let's Encrypt certificates

2020-08-06 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated DLAB-1594:
-
Labels: AWS AZURE Debian DevOps GCP RedHat pull-request-available  (was: 
AWS AZURE Debian DevOps GCP RedHat)

> Add support of Let's Encrypt certificates
> -
>
> Key: DLAB-1594
> URL: https://issues.apache.org/jira/browse/DLAB-1594
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Leonid Frolov
>Priority: Major
>  Labels: AWS, AZURE, Debian, DevOps, GCP, RedHat, 
> pull-request-available
>




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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1984) Allow to create EMR/Dataproc with GPU for Jupyter

2020-08-06 Thread Dmytro Gnatyshyn (Jira)


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

Dmytro Gnatyshyn updated DLAB-1984:
---
Description: 
1. Allow to create EMR/Dataproc with GPU for Jupyter

2. Get rid of ungit link for Zeppelin

  was:
1. Allow to create EMR/Dataproc with GPU for Jupyter

2. Get rid of ungit link for Jupyter


> Allow to create EMR/Dataproc with GPU for Jupyter
> -
>
> Key: DLAB-1984
> URL: https://issues.apache.org/jira/browse/DLAB-1984
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Dmytro Gnatyshyn
>Priority: Minor
>  Labels: AWS, Front-end, GCP
>
> 1. Allow to create EMR/Dataproc with GPU for Jupyter
> 2. Get rid of ungit link for Zeppelin



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1984) Allow to create EMR/Dataproc with GPU for Jupyter

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1984:

Description: 
1. Allow to create EMR/Dataproc with GPU for Jupyter

2. Get rid of ungit link for Jupyter

> Allow to create EMR/Dataproc with GPU for Jupyter
> -
>
> Key: DLAB-1984
> URL: https://issues.apache.org/jira/browse/DLAB-1984
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Dmytro Gnatyshyn
>Priority: Minor
>  Labels: AWS, Front-end, GCP
>
> 1. Allow to create EMR/Dataproc with GPU for Jupyter
> 2. Get rid of ungit link for Jupyter



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1976) [Front-end]: Add information if autocomplete does not work

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1976:

Attachment: Point 3.png

> [Front-end]: Add information if autocomplete does not work
> --
>
> Key: DLAB-1976
> URL: https://issues.apache.org/jira/browse/DLAB-1976
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Dmytro Gnatyshyn
>Priority: Major
>  Labels: AWS, AZURE, Debian, Front-end, GCP, RedHat
> Attachments: Point 3.png
>
>
> # If autocomplete does not work show information:
> 'Autocomplete is currently unavailable for  group'
> 
> 2. [Library management]: Do not allow to add library if it is not selected 
> from 'Library name' from drop down list
> 3. Sometimes notebook lib group is gained for compute or likewise (view 
> attachment)
>  
>  
>  



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1976) [Front-end]: Add information if autocomplete does not work

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1976:

Description: 
# If autocomplete does not work show information:

'Autocomplete is currently unavailable for  group'

2. [Library management]: Do not allow to add library if it is not selected from 
'Library name' from drop down list

3. Sometimes notebook lib group is gained for compute or likewise (view 
attachment)

 

 

 

  was:
# If autocomplete does not work show information:

'Autocomplete is currently unavailable for  group'

2. [Library management]: Do not allow to add library if it is not selected from 
'Library name' from drop down list

 

 

 


> [Front-end]: Add information if autocomplete does not work
> --
>
> Key: DLAB-1976
> URL: https://issues.apache.org/jira/browse/DLAB-1976
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Dmytro Gnatyshyn
>Priority: Major
>  Labels: AWS, AZURE, Debian, Front-end, GCP, RedHat
>
> # If autocomplete does not work show information:
> 'Autocomplete is currently unavailable for  group'
> 
> 2. [Library management]: Do not allow to add library if it is not selected 
> from 'Library name' from drop down list
> 3. Sometimes notebook lib group is gained for compute or likewise (view 
> attachment)
>  
>  
>  



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1974) Show 'invalid version' if lib installation fails due to wrong version

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1974:

Attachment: P7-rstudio UI.png
P7-docker1.png
P7 - provisioning.png
P7 - docker 2.png

> Show 'invalid version' if lib installation fails due to wrong version
> -
>
> Key: DLAB-1974
> URL: https://issues.apache.org/jira/browse/DLAB-1974
> Project: Apache DLab
>  Issue Type: Task
>Reporter: Vira Vitanska
>Assignee: Leonid Frolov
>Priority: Minor
>  Labels: AWS, AZURE, Debian, DevOps, GCP, RedHat
> Attachments: Augment error message.png, Augment2.png, Available 
> version.png, P5 - pivottable 2.png, P6 -docker.png, P6 provisioning.png, P6 
> response.png, P7 - docker 2.png, P7 - provisioning.png, P7-docker1.png, 
> P7-rstudio UI.png, Pandas1.png, Pandas2.png, Pandas3.png, Pip.png, Point 6 
> UI.png, apt-yum.png, ggplot2.png, p5 - Pivottable.png
>
>
> 1. If lib installation fails due to wrong version convey invalid version
> How it works now (for example if version contains space):
>  - R package: Docker runs with '0', shows 'installation error' and it is retry
>  - Pip/apt/yum packages: Docker runs with '1' and status is still in 
> 'installing'
> 2. Augment error message for library installation ( from r package). 
> Available version value is empty
> 3. For EMR pandas/matplotlib are installed but it is shown 'error 
> installation' due to some dependencies are not installed. This case is 
> reproduced for pip3 group.
> 4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
> installed via terminal
> 5. If user does not type library version and installation fails - convey 
> 'installation error' instead of 'invalid version'. It was found for EMR 
> (others group) 'pivottable'
> 6. For EMR (it was found on RStudio, perhaps it is reproduced and for the 
> other template): If install library from apt/yum package and indicate wrong 
> version docker runs with '1' and library status remains 'installing' in DLab 
> UI
> 7. Rstudio (others group): Pivottablejs installation with correct version 
> <0.2.0> was stuck in 'installing' status and docker run with '1'



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1974) Show 'invalid version' if lib installation fails due to wrong version

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1974:

Description: 
1. If lib installation fails due to wrong version convey invalid version

How it works now (for example if version contains space):
 - R package: Docker runs with '0', shows 'installation error' and it is retry
 - Pip/apt/yum packages: Docker runs with '1' and status is still in 
'installing'

2. Augment error message for library installation ( from r package). 
Available version value is empty

3. For EMR pandas/matplotlib are installed but it is shown 'error installation' 
due to some dependencies are not installed. This case is reproduced for pip3 
group.

4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
installed via terminal

5. If user does not type library version and installation fails - convey 
'installation error' instead of 'invalid version'. It was found for EMR (others 
group) 'pivottable'

6. For EMR (it was found on RStudio, perhaps it is reproduced and for the other 
template): If install library from apt/yum package and indicate wrong version 
docker runs with '1' and library status remains 'installing' in DLab UI

7. Rstudio (others group): Pivottablejs installation with correct version 
<0.2.0> was stuck in 'installing' status and docker run with '1'

  was:
1. If lib installation fails due to wrong version convey invalid version

How it works now (for example if version contains space):
 - R package: Docker runs with '0', shows 'installation error' and it is retry
 - Pip/apt/yum packages: Docker runs with '1' and status is still in 
'installing'

2. Augment error message for library installation ( from r package). 
Available version value is empty

3. For EMR pandas/matplotlib are installed but it is shown 'error installation' 
due to some dependencies are not installed. This case is reproduced for pip3 
group.

4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
installed via terminal

5. If user does not type library version and installation fails - convey 
'installation error' instead of 'invalid version'. It was found for EMR (others 
group) 'pivottable'

6. For EMR (it was found on RStudio, perhaps it is reproduced and for the other 
template): If install library from apt/yum package and indicate wrong version 
docker runs with '1' and library status remains 'installing' in DLab UI


> Show 'invalid version' if lib installation fails due to wrong version
> -
>
> Key: DLAB-1974
> URL: https://issues.apache.org/jira/browse/DLAB-1974
> Project: Apache DLab
>  Issue Type: Task
>Reporter: Vira Vitanska
>Assignee: Leonid Frolov
>Priority: Minor
>  Labels: AWS, AZURE, Debian, DevOps, GCP, RedHat
> Attachments: Augment error message.png, Augment2.png, Available 
> version.png, P5 - pivottable 2.png, P6 -docker.png, P6 provisioning.png, P6 
> response.png, Pandas1.png, Pandas2.png, Pandas3.png, Pip.png, Point 6 UI.png, 
> apt-yum.png, ggplot2.png, p5 - Pivottable.png
>
>
> 1. If lib installation fails due to wrong version convey invalid version
> How it works now (for example if version contains space):
>  - R package: Docker runs with '0', shows 'installation error' and it is retry
>  - Pip/apt/yum packages: Docker runs with '1' and status is still in 
> 'installing'
> 2. Augment error message for library installation ( from r package). 
> Available version value is empty
> 3. For EMR pandas/matplotlib are installed but it is shown 'error 
> installation' due to some dependencies are not installed. This case is 
> reproduced for pip3 group.
> 4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
> installed via terminal
> 5. If user does not type library version and installation fails - convey 
> 'installation error' instead of 'invalid version'. It was found for EMR 
> (others group) 'pivottable'
> 6. For EMR (it was found on RStudio, perhaps it is reproduced and for the 
> other template): If install library from apt/yum package and indicate wrong 
> version docker runs with '1' and library status remains 'installing' in DLab 
> UI
> 7. Rstudio (others group): Pivottablejs installation with correct version 
> <0.2.0> was stuck in 'installing' status and docker run with '1'



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1974) Show 'invalid version' if lib installation fails due to wrong version

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1974:

Attachment: Point 6 UI.png
P6 response.png
P6 provisioning.png
P6 -docker.png

> Show 'invalid version' if lib installation fails due to wrong version
> -
>
> Key: DLAB-1974
> URL: https://issues.apache.org/jira/browse/DLAB-1974
> Project: Apache DLab
>  Issue Type: Task
>Reporter: Vira Vitanska
>Assignee: Leonid Frolov
>Priority: Minor
>  Labels: AWS, AZURE, Debian, DevOps, GCP, RedHat
> Attachments: Augment error message.png, Augment2.png, Available 
> version.png, P5 - pivottable 2.png, P6 -docker.png, P6 provisioning.png, P6 
> response.png, Pandas1.png, Pandas2.png, Pandas3.png, Pip.png, Point 6 UI.png, 
> apt-yum.png, ggplot2.png, p5 - Pivottable.png
>
>
> 1. If lib installation fails due to wrong version convey invalid version
> How it works now (for example if version contains space):
>  - R package: Docker runs with '0', shows 'installation error' and it is retry
>  - Pip/apt/yum packages: Docker runs with '1' and status is still in 
> 'installing'
> 2. Augment error message for library installation ( from r package). 
> Available version value is empty
> 3. For EMR pandas/matplotlib are installed but it is shown 'error 
> installation' due to some dependencies are not installed. This case is 
> reproduced for pip3 group.
> 4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
> installed via terminal
> 5. If user does not type library version and installation fails - convey 
> 'installation error' instead of 'invalid version'. It was found for EMR 
> (others group) 'pivottable'
> 6. For EMR (it was found on RStudio, perhaps it is reproduced and for the 
> other template): If install library from apt/yum package and indicate wrong 
> version docker runs with '1' and library status remains 'installing' in DLab 
> UI



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1974) Show 'invalid version' if lib installation fails due to wrong version

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1974:

Description: 
1. If lib installation fails due to wrong version convey invalid version

How it works now (for example if version contains space):
 - R package: Docker runs with '0', shows 'installation error' and it is retry
 - Pip/apt/yum packages: Docker runs with '1' and status is still in 
'installing'

2. Augment error message for library installation ( from r package). 
Available version value is empty

3. For EMR pandas/matplotlib are installed but it is shown 'error installation' 
due to some dependencies are not installed. This case is reproduced for pip3 
group.

4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
installed via terminal

5. If user does not type library version and installation fails - convey 
'installation error' instead of 'invalid version'. It was found for EMR (others 
group) 'pivottable'

6. For EMR (it was found on RStudio, perhaps it is reproduced and for the other 
template): If install library from apt/yum package and indicate wrong version 
docker runs with '1' and library status remains 'installing' in DLab UI

  was:
1. If lib installation fails due to wrong version convey invalid version

How it works now (for example if version contains space):
 - R package: Docker runs with '0', shows 'installation error' and it is retry
 - Pip/apt/yum packages: Docker runs with '1' and status is still in 
'installing'

2. Augment error message for library installation ( from r package). 
Available version value is empty

3. For EMR pandas/matplotlib are installed but it is shown 'error installation' 
due to some dependencies are not installed. This case is reproduced for pip3 
group.

4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
installed via terminal

5. If user does not type library version and installation fails - convey 
'installation error' instead of 'invalid version'. It was found for EMR (others 
group) 'pivottable'


> Show 'invalid version' if lib installation fails due to wrong version
> -
>
> Key: DLAB-1974
> URL: https://issues.apache.org/jira/browse/DLAB-1974
> Project: Apache DLab
>  Issue Type: Task
>Reporter: Vira Vitanska
>Assignee: Leonid Frolov
>Priority: Minor
>  Labels: AWS, AZURE, Debian, DevOps, GCP, RedHat
> Attachments: Augment error message.png, Augment2.png, Available 
> version.png, P5 - pivottable 2.png, Pandas1.png, Pandas2.png, Pandas3.png, 
> Pip.png, apt-yum.png, ggplot2.png, p5 - Pivottable.png
>
>
> 1. If lib installation fails due to wrong version convey invalid version
> How it works now (for example if version contains space):
>  - R package: Docker runs with '0', shows 'installation error' and it is retry
>  - Pip/apt/yum packages: Docker runs with '1' and status is still in 
> 'installing'
> 2. Augment error message for library installation ( from r package). 
> Available version value is empty
> 3. For EMR pandas/matplotlib are installed but it is shown 'error 
> installation' due to some dependencies are not installed. This case is 
> reproduced for pip3 group.
> 4. For EMR ggplot2 (r package) is not installed via DLab UI, but it can be 
> installed via terminal
> 5. If user does not type library version and installation fails - convey 
> 'installation error' instead of 'invalid version'. It was found for EMR 
> (others group) 'pivottable'
> 6. For EMR (it was found on RStudio, perhaps it is reproduced and for the 
> other template): If install library from apt/yum package and indicate wrong 
> version docker runs with '1' and library status remains 'installing' in DLab 
> UI



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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Created] (DLAB-1985) Get rid of previous logic for allocation of Spark executor memory

2020-08-06 Thread Vira Vitanska (Jira)
Vira Vitanska created DLAB-1985:
---

 Summary: Get rid of previous logic for allocation of Spark 
executor memory
 Key: DLAB-1985
 URL: https://issues.apache.org/jira/browse/DLAB-1985
 Project: Apache DLab
  Issue Type: Task
  Components: DLab Main
Reporter: Vira Vitanska
Assignee: Mykola Bodnar






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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Created] (DLAB-1984) Allow to create EMR/Dataproc with GPU only for Jupyter

2020-08-06 Thread Vira Vitanska (Jira)
Vira Vitanska created DLAB-1984:
---

 Summary: Allow to create EMR/Dataproc with GPU only for Jupyter
 Key: DLAB-1984
 URL: https://issues.apache.org/jira/browse/DLAB-1984
 Project: Apache DLab
  Issue Type: Task
  Components: DLab Main
Reporter: Vira Vitanska
Assignee: Dmytro Gnatyshyn






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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org



[jira] [Updated] (DLAB-1984) Allow to create EMR/Dataproc with GPU for Jupyter

2020-08-06 Thread Vira Vitanska (Jira)


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

Vira Vitanska updated DLAB-1984:

Summary: Allow to create EMR/Dataproc with GPU for Jupyter  (was: Allow to 
create EMR/Dataproc with GPU only for Jupyter)

> Allow to create EMR/Dataproc with GPU for Jupyter
> -
>
> Key: DLAB-1984
> URL: https://issues.apache.org/jira/browse/DLAB-1984
> Project: Apache DLab
>  Issue Type: Task
>  Components: DLab Main
>Reporter: Vira Vitanska
>Assignee: Dmytro Gnatyshyn
>Priority: Minor
>  Labels: AWS, Front-end, GCP
>




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

-
To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org
For additional commands, e-mail: dev-h...@dlab.apache.org