[JBoss JIRA] (JBIDE-22642) ProcessInformationStore.loadprocessStore doesn't work on Windows
by Aurélien Pupier (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22642?page=com.atlassian.jira.plugi... ]
Aurélien Pupier commented on JBIDE-22642:
-----------------------------------------
As far as i know it was like that for years and for users there is no big problem. The feature which was intended to be used has been removed for 4.4.x due to its poor value (if I understood well)
So I think we can live with the stacktrace even if not very nice.
> ProcessInformationStore.loadprocessStore doesn't work on Windows
> ----------------------------------------------------------------
>
> Key: JBIDE-22642
> URL: https://issues.jboss.org/browse/JBIDE-22642
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jmx
> Affects Versions: 4.3.1.Final
> Environment: Windows
> Reporter: Aurélien Pupier
> Assignee: Rob Stryker
>
> - l.90 it searches for a jps file although the file is jps.exe on Windows
> jps = jHomePath.removeLastSegments(1).append("bin").append("jps").toFile();
> error log:
> {noformat}
> java.io.IOException: Cannot run program "C:\Program Files\Java\jdk1.8.0_65\jre\bin\jps": CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
> at java.lang.Runtime.exec(Runtime.java:620)
> at java.lang.Runtime.exec(Runtime.java:485)
> at org.jboss.tools.jmx.local.ProcessInformationStore.loadProcessStore(ProcessInformationStore.java:102)
> at org.jboss.tools.jmx.local.ProcessInformationStore.refreshProcessInformationStore(ProcessInformationStore.java:64)
> at org.jboss.tools.jmx.local.ProcessInformationStore$1.run(ProcessInformationStore.java:140)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
> Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessImpl.create(Native Method)
> at java.lang.ProcessImpl.<init>(ProcessImpl.java:386)
> at java.lang.ProcessImpl.start(ProcessImpl.java:137)
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBIDE-22677) rsync stuck on OSX
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22677?page=com.atlassian.jira.plugi... ]
Fred Bricon updated JBIDE-22677:
--------------------------------
Description:
I deployed an eap app from the eap64-basic-s2i template, then created an openshift 3 server.
On server startup, publishing fails to complete after 5 minutes and a thread dump shows rsync is still blocking in the background.
{noformat}
"pool-40-thread-1" #231 prio=5 os_prio=31 tid=0x00007f9a55dd0000 nid=0xeb9f runnable [0x000000013199a000]
java.lang.Thread.State: RUNNABLE
at java.io.FileInputStream.readBytes(Native Method)
at java.io.FileInputStream.read(FileInputStream.java:255)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
- locked <0x00000007b3d45cb8> (a java.lang.UNIXProcess$ProcessPipeInputStream)
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
- locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
at java.io.InputStreamReader.read(InputStreamReader.java:184)
at java.io.BufferedReader.fill(BufferedReader.java:161)
at java.io.BufferedReader.readLine(BufferedReader.java:324)
- locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
at java.io.BufferedReader.readLine(BufferedReader.java:389)
at org.jboss.tools.openshift.core.server.RSync.lambda$0(RSync.java:152)
at org.jboss.tools.openshift.core.server.RSync$$Lambda$181/1635081930.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
I'm deploying on CDK 2.1RC5
{noformat}
was:
I deployed an eap app from the eap64-basic-s2i template, then created an openshift 3 server.
On server startup, publishing fails to complete after 5 minutes and a thread dump shows rsync is still blocking in the background.
{noformat}
"pool-40-thread-1" #231 prio=5 os_prio=31 tid=0x00007f9a55dd0000 nid=0xeb9f runnable [0x000000013199a000]
java.lang.Thread.State: RUNNABLE
at java.io.FileInputStream.readBytes(Native Method)
at java.io.FileInputStream.read(FileInputStream.java:255)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
- locked <0x00000007b3d45cb8> (a java.lang.UNIXProcess$ProcessPipeInputStream)
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
- locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
at java.io.InputStreamReader.read(InputStreamReader.java:184)
at java.io.BufferedReader.fill(BufferedReader.java:161)
at java.io.BufferedReader.readLine(BufferedReader.java:324)
- locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
at java.io.BufferedReader.readLine(BufferedReader.java:389)
at org.jboss.tools.openshift.core.server.RSync.lambda$0(RSync.java:152)
at org.jboss.tools.openshift.core.server.RSync$$Lambda$181/1635081930.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
{noformat}
> rsync stuck on OSX
> ------------------
>
> Key: JBIDE-22677
> URL: https://issues.jboss.org/browse/JBIDE-22677
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Reporter: Fred Bricon
> Priority: Blocker
>
> I deployed an eap app from the eap64-basic-s2i template, then created an openshift 3 server.
> On server startup, publishing fails to complete after 5 minutes and a thread dump shows rsync is still blocking in the background.
> {noformat}
> "pool-40-thread-1" #231 prio=5 os_prio=31 tid=0x00007f9a55dd0000 nid=0xeb9f runnable [0x000000013199a000]
> java.lang.Thread.State: RUNNABLE
> at java.io.FileInputStream.readBytes(Native Method)
> at java.io.FileInputStream.read(FileInputStream.java:255)
> at java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
> at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
> - locked <0x00000007b3d45cb8> (a java.lang.UNIXProcess$ProcessPipeInputStream)
> at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
> at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
> at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
> - locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
> at java.io.InputStreamReader.read(InputStreamReader.java:184)
> at java.io.BufferedReader.fill(BufferedReader.java:161)
> at java.io.BufferedReader.readLine(BufferedReader.java:324)
> - locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
> at java.io.BufferedReader.readLine(BufferedReader.java:389)
> at org.jboss.tools.openshift.core.server.RSync.lambda$0(RSync.java:152)
> at org.jboss.tools.openshift.core.server.RSync$$Lambda$181/1635081930.run(Unknown Source)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:745)
> I'm deploying on CDK 2.1RC5
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBIDE-22642) ProcessInformationStore.loadprocessStore doesn't work on Windows
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22642?page=com.atlassian.jira.plugi... ]
Alexey Kazakov edited comment on JBIDE-22642 at 6/29/16 10:48 AM:
------------------------------------------------------------------
It looks like the PR was rejected because it's not relevant to 4.4.x (master).
[~rob.stryker] please comment in jira too.
[~aurelien.pupier] if you really need this fix in 4.3.x and have it fixed in 4.4.x is not enough for you then please speak up! We will need to raise this to our PM to see if we should/can do a bug fix release for 4.3.x
was (Author: akazakov):
It looks like the PR was rejected because it's not relevant to 4.4.x (master).
[~rob.stryker] please comment in jira too.
[~aurelien.pupier] if you really need this fix in 4.3.x and have it fixed in 4.4.x is not enough for you then please speak up! We will need to raise this to our PM to see if we should/can do a patch release for 4.3.x
> ProcessInformationStore.loadprocessStore doesn't work on Windows
> ----------------------------------------------------------------
>
> Key: JBIDE-22642
> URL: https://issues.jboss.org/browse/JBIDE-22642
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jmx
> Affects Versions: 4.3.1.Final
> Environment: Windows
> Reporter: Aurélien Pupier
> Assignee: Rob Stryker
>
> - l.90 it searches for a jps file although the file is jps.exe on Windows
> jps = jHomePath.removeLastSegments(1).append("bin").append("jps").toFile();
> error log:
> {noformat}
> java.io.IOException: Cannot run program "C:\Program Files\Java\jdk1.8.0_65\jre\bin\jps": CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
> at java.lang.Runtime.exec(Runtime.java:620)
> at java.lang.Runtime.exec(Runtime.java:485)
> at org.jboss.tools.jmx.local.ProcessInformationStore.loadProcessStore(ProcessInformationStore.java:102)
> at org.jboss.tools.jmx.local.ProcessInformationStore.refreshProcessInformationStore(ProcessInformationStore.java:64)
> at org.jboss.tools.jmx.local.ProcessInformationStore$1.run(ProcessInformationStore.java:140)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
> Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessImpl.create(Native Method)
> at java.lang.ProcessImpl.<init>(ProcessImpl.java:386)
> at java.lang.ProcessImpl.start(ProcessImpl.java:137)
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBIDE-22642) ProcessInformationStore.loadprocessStore doesn't work on Windows
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22642?page=com.atlassian.jira.plugi... ]
Alexey Kazakov commented on JBIDE-22642:
----------------------------------------
It looks like the PR was rejected because it's not relevant to 4.4.x (master).
[~rob.stryker] please comment in jira too.
[~aurelien.pupier] if you really need this fix in 4.3.x and have it fixed in 4.4.x is not enough for you then please speak up! We will need to raise this to our PM to see if we should/can do a patch release for 4.3.x
> ProcessInformationStore.loadprocessStore doesn't work on Windows
> ----------------------------------------------------------------
>
> Key: JBIDE-22642
> URL: https://issues.jboss.org/browse/JBIDE-22642
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jmx
> Affects Versions: 4.3.1.Final
> Environment: Windows
> Reporter: Aurélien Pupier
> Assignee: Rob Stryker
>
> - l.90 it searches for a jps file although the file is jps.exe on Windows
> jps = jHomePath.removeLastSegments(1).append("bin").append("jps").toFile();
> error log:
> {noformat}
> java.io.IOException: Cannot run program "C:\Program Files\Java\jdk1.8.0_65\jre\bin\jps": CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
> at java.lang.Runtime.exec(Runtime.java:620)
> at java.lang.Runtime.exec(Runtime.java:485)
> at org.jboss.tools.jmx.local.ProcessInformationStore.loadProcessStore(ProcessInformationStore.java:102)
> at org.jboss.tools.jmx.local.ProcessInformationStore.refreshProcessInformationStore(ProcessInformationStore.java:64)
> at org.jboss.tools.jmx.local.ProcessInformationStore$1.run(ProcessInformationStore.java:140)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
> Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessImpl.create(Native Method)
> at java.lang.ProcessImpl.<init>(ProcessImpl.java:386)
> at java.lang.ProcessImpl.start(ProcessImpl.java:137)
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBIDE-22677) rsync stuck on OSX
by Fred Bricon (JIRA)
Fred Bricon created JBIDE-22677:
-----------------------------------
Summary: rsync stuck on OSX
Key: JBIDE-22677
URL: https://issues.jboss.org/browse/JBIDE-22677
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Reporter: Fred Bricon
Priority: Blocker
I deployed an eap app from the eap64-basic-s2i template, then created an openshift 3 server.
On server startup, publishing fails to complete after 5 minutes and a thread dump shows rsync is still blocking in the background.
{noformat}
"pool-40-thread-1" #231 prio=5 os_prio=31 tid=0x00007f9a55dd0000 nid=0xeb9f runnable [0x000000013199a000]
java.lang.Thread.State: RUNNABLE
at java.io.FileInputStream.readBytes(Native Method)
at java.io.FileInputStream.read(FileInputStream.java:255)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
- locked <0x00000007b3d45cb8> (a java.lang.UNIXProcess$ProcessPipeInputStream)
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
- locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
at java.io.InputStreamReader.read(InputStreamReader.java:184)
at java.io.BufferedReader.fill(BufferedReader.java:161)
at java.io.BufferedReader.readLine(BufferedReader.java:324)
- locked <0x00000007b3d49d50> (a java.io.InputStreamReader)
at java.io.BufferedReader.readLine(BufferedReader.java:389)
at org.jboss.tools.openshift.core.server.RSync.lambda$0(RSync.java:152)
at org.jboss.tools.openshift.core.server.RSync$$Lambda$181/1635081930.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
{noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (ERT-327) Pull new version of an image [EBZ#497010]
by Friendly Jira Robot (JIRA)
Friendly Jira Robot created ERT-327:
---------------------------------------
Summary: Pull new version of an image [EBZ#497010]
Key: ERT-327
URL: https://issues.jboss.org/browse/ERT-327
Project: Eclipse Release Train
Issue Type: Task
Components: Linux Tools
Reporter: Friendly Jira Robot
Fix For: Neon.1 (4.6)
The Docker tooling should allow for pull the new version of a selected image. For example, the image tagged 'latest' might have changed.
In the UI, the "Tag selection" page on the Search wizard should provide with a state indicating that an image with the tag was already pulled but is out-dated
Also, in the context menu, a command handle to pull an updated version could be added.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months