Git Product home page Git Product logo

Comments (7)

cyriltovena avatar cyriltovena commented on June 6, 2024 2

Hey @pierrec, I'm working with Peter on Loki and today I tried the dig down more into the problem. It was indeed the hashtable not being reset causing this non deterministic output.

I have a repro and I was able to fix it by adding this in the reset function

	// reset hashtable to ensure deterministic output.
	for i := range z.hashtable {
		z.hashtable[i] = 0
	}

I'm sending you a PR, let me know what you think !

from lz4.

pstibrany avatar pstibrany commented on June 6, 2024

I'm attaching two LZ4 streams generated as described above (but ealier debug output is not related to these files).

files.zip

Here is program I've used to get lz4debug output:

// +build lz4debug

package main

import (
        "flag"
        "io"
        "log"
        "os"

        "github.com/pierrec/lz4"
)

func main() {
        flag.Parse()

        for _, f := range flag.Args() {
                openLz4(f)
        }
}

func openLz4(filename string) {
        f, err := os.Open(filename)
        if err != nil {
                log.Println("failed to open file", filename, "due to error:", err)
                return
        }
        defer f.Close()

        r := lz4.NewReader(f)

        _, err = io.Copy(os.Stdout, r)
        if err != nil {
                log.Println("error while reading file", filename, ":", err)
        }
}

from lz4.

pierrec avatar pierrec commented on June 6, 2024

Thanks. I will look into it.
Also, although I guess you would have mentioned but I ask anyway:
did you have a chance to disable reuse of writers and if so, do you observe any issue?

from lz4.

pstibrany avatar pstibrany commented on June 6, 2024

Thanks. I will look into it.
Also, although I guess you would have mentioned but I ask anyway:
did you have a chance to disable reuse of writers and if so, do you observe any issue?

Thanks. No, we only tried switching to Snappy, which helped. We haven't tried not reusing lz4 writers, but I'll see if we can try that.

from lz4.

pierrec avatar pierrec commented on June 6, 2024

Any news on this?

from lz4.

pstibrany avatar pstibrany commented on June 6, 2024

Any news on this?

Unfortunately not. I dropped the ball here and haven't yet tried to not reuse writers. Problem is that I cannot reproduce it locally, and trying it on our busy cluster, where we have observed this problem may blow up memory allocations too much. I still would like to try it at some point though.

from lz4.

pierrec avatar pierrec commented on June 6, 2024

No problem, thx for getting back to me. I am too busy atm to look at this in details, but any news is welcome!

from lz4.

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.