Code Monkey home page Code Monkey logo

Comments (10)

MathieuBordere avatar MathieuBordere commented on July 22, 2024 1

@ntsh-gpt I deleted that comment, was premature, #184 won't solve it.

from raft.

MathieuBordere avatar MathieuBordere commented on July 22, 2024

Thanks, we'll investigate.

from raft.

freeekanayaka avatar freeekanayaka commented on July 22, 2024

This looks like a bug that indeed should be investigated. However, it should be greatly mitigated if you implement a graceful shutdown in your code, by catching whatever signal you are sending to the process, then calling raft_close and waiting for its callback to fire before exiting the process. That's exactly what is done in the example code.

from raft.

ntsh-gpt avatar ntsh-gpt commented on July 22, 2024

@freeekanayaka I am following the same approach as mentioned in the example code.
However I would like to point out exact case for the issue,

Working :

struct A {
int64_t x;
int64_t y;
};
struct A data;
raft_buffer buf;
buf.len = sizeof(struct A);
buf.base = raft_malloc(buf.len);
// assign data values to buf.base
raft_apply(&raft, req, &buf, 1, serverApplyCb)

Not working :

FILE* f = fopen("path");
buf.len = ftell(f) ;
fseek(f, 0, SEEK_SET);
buf.base = raft_malloc(buf.len);
fread(buf.base,1,buf.len,f);
fclose(f);
raft_apply(&raft, req, &buf, 1, serverApplyCb)

Note : I tried memcpy a char array to buf.base, still same issue.

from raft.

tathougies avatar tathougies commented on July 22, 2024

I believe I'm also hitting this bug. The idea of calling raft_close is useful, thanks, but this is a bit worrisome, and calls into question whether I should rely on this implementation. Raft is supposed to help with durability of log entries. That means that if my server dies due to power failure, I should be able to gracefully restore my machine. What is raft_close doing that can't be done after a raft_apply to make sure that the open segment can be read again? I'm happy to contribute to make things work, but I want to make sure that such a use case (power failure) is supposed to be supported.

from raft.

freeekanayaka avatar freeekanayaka commented on July 22, 2024

I believe I'm also hitting this bug. The idea of calling raft_close is useful, thanks, but this is a bit worrisome, and calls into question whether I should rely on this implementation. Raft is supposed to help with durability of log entries. That means that if my server dies due to power failure, I should be able to gracefully restore my machine. What is raft_close doing that can't be done after a raft_apply to make sure that the open segment can be read again? I'm happy to contribute to make things work, but I want to make sure that such a use case (power failure) is supposed to be supported.

We do have Jepsen tests that simulate hard process crashes (SIGKILL) and recovery after that, probably we should run those tests more times and see if we can reproduce this particular bug (or just try what @ntsh-gpt as pointed).

As I said, this really looks like a bug that should be fixed, so the suggestion of using raft_close is just a mitigation, I'm not meaning that it is supposed to be a required procedure in order for the implementation to work.

from raft.

ntsh-gpt avatar ntsh-gpt commented on July 22, 2024

@MathieuBordere Will try out with #184.

from raft.

freeekanayaka avatar freeekanayaka commented on July 22, 2024

@ntsh-gpt I deleted that comment, was premature, #184 won't solve it.

Yeah, #184 should only be relevant for snapshots. Closed segments should alread be atomically created (by renaming an open segment).

from raft.

MathieuBordere avatar MathieuBordere commented on July 22, 2024

@ntsh-gpt Are you hitting the same issue as in #189, if yes, can I close?

from raft.

stgraber avatar stgraber commented on July 22, 2024

Closing for inactivity, assuming that the fix above took care of it.
If not, let us know and we'll re-open.

from raft.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.