[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-20 Thread Josh Elser (JIRA)

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

Josh Elser updated ACCUMULO-4317:
-
Resolution: Fixed
Status: Resolved  (was: Patch Available)

Committed. Thanks again for the patch and your debugging skills, 
[~mastermikey...@gmail.com]!

Let me know if you'd like to be listed on our [contributor's 
page|http://accumulo.apache.org/people].

(for those watching the commits... sorry, it got ugly. Got sidetracked fixing 
ACCUMULO-4349, and some other commits got slipped in before I could finish the 
merge)

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.3, 1.8.0
>
> Attachments: ACCUMULO-4317-testing.001.patch, Accumulo-4317.patch
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-20 Thread Michael Wall (JIRA)

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

Michael Wall updated ACCUMULO-4317:
---
Fix Version/s: (was: 1.8.1)
   1.8.0

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.3, 1.8.0
>
> Attachments: ACCUMULO-4317-testing.001.patch, Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-20 Thread Josh Elser (JIRA)

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

Josh Elser updated ACCUMULO-4317:
-
Attachment: ACCUMULO-4317-testing.001.patch

Here's a patch that can go on top of Michiel's which allows for some better 
testing of his original bugfix. I would only target master for my changes since 
they are a little more intrusive, but at least we know that we have some test 
coverage for his changes.

[~mdrob], since you've already cut two RCs, I understand if we skip this for 
1.7.2.

[~mjwall], is this OK to land for 1.8.1 since there hasn't been an rc1 yet?

Anyone have a moment to review these changes? ([~ctubbsii], [~bills], 
[~billie.rinaldi])

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.3, 1.8.1
>
> Attachments: ACCUMULO-4317-testing.001.patch, Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-20 Thread Michael Wall (JIRA)

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

Michael Wall updated ACCUMULO-4317:
---
Fix Version/s: (was: 1.8.0)
   1.8.1

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.3, 1.8.1
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-08 Thread Mike Drob (JIRA)

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

Mike Drob updated ACCUMULO-4317:

Fix Version/s: (was: 1.7.2)
   1.7.3

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.3, 1.8.0
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-02 Thread Michiel Vanderlee (JIRA)

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

Michiel Vanderlee updated ACCUMULO-4317:

Status: Patch Available  (was: In Progress)

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.7.1, 1.7.0, 1.6.5
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-02 Thread Michiel Vanderlee (JIRA)

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

Michiel Vanderlee updated ACCUMULO-4317:

Attachment: (was: Accumulo-4317.patch)

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-02 Thread Michiel Vanderlee (JIRA)

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

Michiel Vanderlee updated ACCUMULO-4317:

Status: In Progress  (was: Patch Available)

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.7.1, 1.7.0, 1.6.5
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-06-02 Thread Michiel Vanderlee (JIRA)

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

Michiel Vanderlee updated ACCUMULO-4317:

Attachment: Accumulo-4317.patch

Re-throwing error 

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
> Attachments: Accumulo-4317.patch, Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-05-31 Thread Josh Elser (JIRA)

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

Josh Elser updated ACCUMULO-4317:
-
Status: Patch Available  (was: Open)

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.7.1, 1.7.0, 1.6.5
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-05-31 Thread Josh Elser (JIRA)

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

Josh Elser updated ACCUMULO-4317:
-
Assignee: Michiel Vanderlee

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Assignee: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-05-30 Thread Michiel Vanderlee (JIRA)

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

Michiel Vanderlee updated ACCUMULO-4317:

Attachment: Accumulo-4317.patch

Closing sockets on exception.

Patch based on 1.7 04d0c19

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
> Attachments: Accumulo-4317.patch
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-05-28 Thread Josh Elser (JIRA)

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

Josh Elser updated ACCUMULO-4317:
-
Fix Version/s: 1.8.0
   1.7.2
   1.6.6

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Priority: Minor
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-05-28 Thread Josh Elser (JIRA)

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

Josh Elser updated ACCUMULO-4317:
-
Affects Version/s: 1.6.5
   1.7.0

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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


[jira] [Updated] (ACCUMULO-4317) Accumulo client causes 'too many files open' due to infinite loop.

2016-05-28 Thread Josh Elser (JIRA)

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

Josh Elser updated ACCUMULO-4317:
-
Priority: Blocker  (was: Minor)

> Accumulo client causes 'too many files open' due to infinite loop.
> --
>
> Key: ACCUMULO-4317
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4317
> Project: Accumulo
>  Issue Type: Bug
>  Components: client
>Affects Versions: 1.6.5, 1.7.0, 1.7.1
>Reporter: Michiel Vanderlee
>Priority: Blocker
> Fix For: 1.6.6, 1.7.2, 1.8.0
>
>
> Accumulo stores hostnames in zookeeper, if the client can not resolve these 
> then it will continue to try to connect in a while(true) loop. This will 
> eventually cause 'too many files open' errors.
> Loop is in ServerClient.java$executeRaw
> Bug: Should error out after some time, not retry infintely.
> Workaround: Add hostnames to /etc/hosts and restart.



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