[GitHub] zookeeper issue #333: ZOOKEEPER-2872: Interrupted snapshot sync causes data ...

2017-08-17 Thread hanm
Github user hanm commented on the issue:

https://github.com/apache/zookeeper/pull/333
  
Committed to master: 0706b40afad079f19fe9f76c99bbb7ec69780dbd

Pending JIRA resolve after fixing merge conflicts and commit into 
branch-3.4 and 3.5.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zookeeper issue #333: ZOOKEEPER-2872: Interrupted snapshot sync causes data ...

2017-08-17 Thread hanm
Github user hanm commented on the issue:

https://github.com/apache/zookeeper/pull/333
  
>> it seems best to keep snapshot taking a lighter weight operation.

Sounds reasonable.

>> I am unable to reproduce the test failure in Zab1_0Test

I think it's a flaky test. Filed ZOOKEEPER-2877 for this.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zookeeper issue #333: ZOOKEEPER-2872: Interrupted snapshot sync causes data ...

2017-08-17 Thread enixon
Github user enixon commented on the issue:

https://github.com/apache/zookeeper/pull/333
  
I am unable to reproduce the test failure in Zab1_0Test


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zookeeper issue #333: ZOOKEEPER-2872: Interrupted snapshot sync causes data ...

2017-08-16 Thread enixon
Github user enixon commented on the issue:

https://github.com/apache/zookeeper/pull/333
  
We contemplated doing an fsync for every snapshot and decided against. 
You're taking a guaranteed io spike each time. That's fine when you're just 
syncing with the quorum but during normal operation, it seems best to keep 
snapshot taking a lighter weight operation.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zookeeper issue #333: ZOOKEEPER-2872: Interrupted snapshot sync causes data ...

2017-08-12 Thread hanm
Github user hanm commented on the issue:

https://github.com/apache/zookeeper/pull/333
  
I am now wondering why we should not fsync snapshot taking at all cases. It 
seems to be a useful property to have for snapshot serialization, and will make 
code simpler. Any performance considerations that lead to the conclusion of 
only applying fsync snapshot when it's a SNAP sync?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zookeeper issue #333: ZOOKEEPER-2872: Interrupted snapshot sync causes data ...

2017-08-10 Thread enixon
Github user enixon commented on the issue:

https://github.com/apache/zookeeper/pull/333
  
AtomicFileOutputStream performs an fsync when the stream is closed with the 
following.
"((FileOutputStream) out).getFD().sync();"



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---