[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-16 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=243373&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-243373
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 16/May/19 14:38
Start Date: 16/May/19 14:38
Worklog Time Spent: 10m 
  Work Description: anuengineer commented on pull request #815: HDDS-1522. 
Provide intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815
 
 
   
 

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


Issue Time Tracking
---

Worklog Id: (was: 243373)
Time Spent: 1.5h  (was: 1h 20m)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-16 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=243372&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-243372
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 16/May/19 14:37
Start Date: 16/May/19 14:37
Worklog Time Spent: 10m 
  Work Description: anuengineer commented on issue #815: HDDS-1522. Provide 
intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815#issuecomment-493095153
 
 
   +1, LGTM. Merging now. 
 

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


Issue Time Tracking
---

Worklog Id: (was: 243372)
Time Spent: 1h 20m  (was: 1h 10m)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-15 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=243094&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-243094
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 16/May/19 03:46
Start Date: 16/May/19 03:46
Worklog Time Spent: 10m 
  Work Description: xiaoyuyao commented on pull request #815: HDDS-1522. 
Provide intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815#discussion_r284529730
 
 

 ##
 File path: hadoop-ozone/dev-support/intellij/install-runconfigs.sh
 ##
 @@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
+SRC_DIR="$SCRIPT_DIR/runConfigurations"
+DEST_DIR="$SCRIPT_DIR/../../../.idea/runConfigurations/"
+#shellcheck disable=SC2010
+ls -1 "$SRC_DIR" | grep -v ozone-site.xml | xargs -n1 -I FILE cp 
"$SRC_DIR/FILE" "$DEST_DIR"
 
 Review comment:
   Yes, mkdir -p solves the script problem. However, it is not clear how to 
import these xml files into intelliJ. Can you provide some pointers on how to 
import these xml files and run them inside IntelliJ?
 

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


Issue Time Tracking
---

Worklog Id: (was: 243094)
Time Spent: 1h 10m  (was: 1h)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-14 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=241601&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-241601
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 14/May/19 08:30
Start Date: 14/May/19 08:30
Worklog Time Spent: 10m 
  Work Description: elek commented on issue #815: HDDS-1522. Provide 
intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815#issuecomment-492132655
 
 
   /retest
 

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


Issue Time Tracking
---

Worklog Id: (was: 241601)
Time Spent: 1h  (was: 50m)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-13 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=241265&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-241265
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 13/May/19 20:15
Start Date: 13/May/19 20:15
Worklog Time Spent: 10m 
  Work Description: elek commented on pull request #815: HDDS-1522. Provide 
intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815#discussion_r283516872
 
 

 ##
 File path: hadoop-ozone/dev-support/intellij/install-runconfigs.sh
 ##
 @@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
+SRC_DIR="$SCRIPT_DIR/runConfigurations"
+DEST_DIR="$SCRIPT_DIR/../../../.idea/runConfigurations/"
+#shellcheck disable=SC2010
+ls -1 "$SRC_DIR" | grep -v ozone-site.xml | xargs -n1 -I FILE cp 
"$SRC_DIR/FILE" "$DEST_DIR"
 
 Review comment:
   Thanks the help, you are right An `mkdir -p` is missing. I will add it.
 

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


Issue Time Tracking
---

Worklog Id: (was: 241265)
Time Spent: 50m  (was: 40m)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-13 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=241175&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-241175
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 13/May/19 17:13
Start Date: 13/May/19 17:13
Worklog Time Spent: 10m 
  Work Description: hadoop-yetus commented on issue #815: HDDS-1522. 
Provide intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815#issuecomment-491909106
 
 
   :broken_heart: **-1 overall**
   
   
   
   
   
   
   | Vote | Subsystem | Runtime | Comment |
   |::|--:|:|:|
   | 0 | reexec | 30 | Docker mode activated. |
   ||| _ Prechecks _ |
   | +1 | dupname | 1 | No case conflicting files found. |
   | 0 | shelldocs | 1 | Shelldocs was not available. |
   | +1 | @author | 0 | The patch does not contain any @author tags. |
   | -1 | test4tests | 0 | The patch doesn't appear to include any new or 
modified tests.  Please justify why no new tests are needed for this patch. 
Also please list what manual steps were performed to verify this patch. |
   ||| _ trunk Compile Tests _ |
   | +1 | mvninstall | 425 | trunk passed |
   | +1 | mvnsite | 0 | trunk passed |
   | +1 | shadedclient | 798 | branch has no errors when building and testing 
our client artifacts. |
   ||| _ Patch Compile Tests _ |
   | +1 | mvninstall | 409 | the patch passed |
   | +1 | mvnsite | 0 | the patch passed |
   | +1 | shellcheck | 0 | There were no new shellcheck issues. |
   | +1 | whitespace | 0 | The patch has no whitespace issues. |
   | +1 | xml | 14 | The patch has no ill-formed XML file. |
   | +1 | shadedclient | 694 | patch has no errors when building and testing 
our client artifacts. |
   ||| _ Other Tests _ |
   | +1 | unit | 91 | hadoop-hdds in the patch passed. |
   | +1 | unit | 128 | hadoop-ozone in the patch passed. |
   | +1 | asflicense | 37 | The patch does not generate ASF License warnings. |
   | | | 2788 | |
   
   
   | Subsystem | Report/Notes |
   |--:|:-|
   | Docker | Client=17.05.0-ce Server=17.05.0-ce base: 
https://builds.apache.org/job/hadoop-multibranch/job/PR-815/1/artifact/out/Dockerfile
 |
   | GITHUB PR | https://github.com/apache/hadoop/pull/815 |
   | Optional Tests | dupname asflicense mvnsite unit shellcheck shelldocs xml |
   | uname | Linux 6e575e35faa9 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 
17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux |
   | Build tool | maven |
   | Personality | personality/hadoop.sh |
   | git revision | trunk / 5847e00 |
   |  Test Results | 
https://builds.apache.org/job/hadoop-multibranch/job/PR-815/1/testReport/ |
   | Max. process+thread count | 410 (vs. ulimit of 5500) |
   | modules | C: hadoop-ozone U: hadoop-ozone |
   | Console output | 
https://builds.apache.org/job/hadoop-multibranch/job/PR-815/1/console |
   | versions | git=2.7.4 maven=3.3.9 shellcheck=0.4.6 |
   | Powered by | Apache Yetus 0.10.0 http://yetus.apache.org |
   
   
   This message was automatically generated.
   
   
 

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


Issue Time Tracking
---

Worklog Id: (was: 241175)
Time Spent: 40m  (was: 0.5h)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-13 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=241169&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-241169
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 13/May/19 16:55
Start Date: 13/May/19 16:55
Worklog Time Spent: 10m 
  Work Description: xiaoyuyao commented on pull request #815: HDDS-1522. 
Provide intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815#discussion_r283440458
 
 

 ##
 File path: hadoop-ozone/dev-support/intellij/install-runconfigs.sh
 ##
 @@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
+SRC_DIR="$SCRIPT_DIR/runConfigurations"
+DEST_DIR="$SCRIPT_DIR/../../../.idea/runConfigurations/"
+#shellcheck disable=SC2010
+ls -1 "$SRC_DIR" | grep -v ozone-site.xml | xargs -n1 -I FILE cp 
"$SRC_DIR/FILE" "$DEST_DIR"
 
 Review comment:
   On my mac, I got the following errors when run the install-runconfig.sh, 
what are the expected destination in absolute path on your dev box?

   cp: directory 
/Users/XXX/git/hadoop/hadoop-ozone/dev-support/intellij/../../../.idea/runConfigurations
 does not exist
   
   
 

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


Issue Time Tracking
---

Worklog Id: (was: 241169)
Time Spent: 0.5h  (was: 20m)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-13 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=241167&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-241167
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 13/May/19 16:53
Start Date: 13/May/19 16:53
Worklog Time Spent: 10m 
  Work Description: xiaoyuyao commented on pull request #815: HDDS-1522. 
Provide intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815#discussion_r283440458
 
 

 ##
 File path: hadoop-ozone/dev-support/intellij/install-runconfigs.sh
 ##
 @@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
+SRC_DIR="$SCRIPT_DIR/runConfigurations"
+DEST_DIR="$SCRIPT_DIR/../../../.idea/runConfigurations/"
+#shellcheck disable=SC2010
+ls -1 "$SRC_DIR" | grep -v ozone-site.xml | xargs -n1 -I FILE cp 
"$SRC_DIR/FILE" "$DEST_DIR"
 
 Review comment:
   On my mac, I got the following errors when run the install-runconfig.sh

   cp: directory 
/Users/XXX/git/hadoop/hadoop-ozone/dev-support/intellij/../../../.idea/runConfigurations
 does not exist
 

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


Issue Time Tracking
---

Worklog Id: (was: 241167)
Time Spent: 20m  (was: 10m)

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org



[jira] [Work logged] (HDDS-1522) Provide intellij runConfiguration for Ozone components

2019-05-13 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/HDDS-1522?focusedWorklogId=241161&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-241161
 ]

ASF GitHub Bot logged work on HDDS-1522:


Author: ASF GitHub Bot
Created on: 13/May/19 16:26
Start Date: 13/May/19 16:26
Worklog Time Spent: 10m 
  Work Description: elek commented on pull request #815: HDDS-1522. Provide 
intellij runConfiguration for Ozone components
URL: https://github.com/apache/hadoop/pull/815
 
 
   Sometimes I need to start ozone cluster from intellij to debug issues. It's 
possible but it requires to create many runConfiguration object inside my IDE.
   
   I propose here to share the intellij specific runtimeConfigs to make it easy 
for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
datanode only).
   
   See: https://issues.apache.org/jira/browse/HDDS-1522
 

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


Issue Time Tracking
---

Worklog Id: (was: 241161)
Time Spent: 10m
Remaining Estimate: 0h

> Provide intellij runConfiguration for Ozone components
> --
>
> Key: HDDS-1522
> URL: https://issues.apache.org/jira/browse/HDDS-1522
> Project: Hadoop Distributed Data Store
>  Issue Type: Task
>Reporter: Elek, Marton
>Assignee: Elek, Marton
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Sometimes I need to start ozone cluster from intellij to debug issues. It's 
> possible but it requires to create many runConfiguration object inside my IDE.
> I propose here to share the intellij specific runtimeConfigs to make it easy 
> for anybody (who uses intellij) to run full ozone cluster from the IDE (1 
> datanode only).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org