GithubHelp home page GithubHelp logo

Merge() seems to have a bug about rosedb HOT 13 CLOSED

taroim avatar taroim commented on September 4, 2024
Merge() seems to have a bug

from rosedb.

Comments (13)

taroim avatar taroim commented on September 4, 2024 1

Sorry, I pulled the wrong branch, my bad.

from rosedb.

Jeremy-Run avatar Jeremy-Run commented on September 4, 2024

@taroim Thank you for your feedback, this PR can solve the problem you mentioned.

from rosedb.

facework avatar facework commented on September 4, 2024

In version 2.2.3, the Iterator method has been removed. Why?

from rosedb.

taroim avatar taroim commented on September 4, 2024

@Jeremy-Run After updating to version 2.2.3, the execution result remains unchanged, and the issue doesn't seem to be resolved.

from rosedb.

Jeremy-Run avatar Jeremy-Run commented on September 4, 2024

In version 2.2.3, the Iterator method has been removed. Why?

@facework
The version 2.2.3 does not exist, do you mean 2.3.x? 2.3.x has not been released yet.
As to why the iterator is removed, this Issue should help you.

from rosedb.

Jeremy-Run avatar Jeremy-Run commented on September 4, 2024

@Jeremy-Run After updating to version 2.2.3, the execution result remains unchanged, and the issue doesn't seem to be resolved.

@taroim pr hasn't been merged into the main branch yet, wait for @roseduan review.

from rosedb.

roseduan avatar roseduan commented on September 4, 2024

In version 2.2.3, the Iterator method has been removed. Why?

The iterator replies on the IRadix data structure, but after our tests, the IRadix will occupy lots of memory when the database grows larger.

So we decide to use BTree as the memory data structure instead of IRadix.
Then we add some similar methods to do the same thing with the previous iterator: Ascend and Descend.

So next release the iterator will be removed, if you have any troubles, please feel free to give us feedback.

from rosedb.

roseduan avatar roseduan commented on September 4, 2024

This problem has been resolved, please update to the latest commit, thanks. @taroim

from rosedb.

taroim avatar taroim commented on September 4, 2024

It's usable, thank you.

from rosedb.

taroim avatar taroim commented on September 4, 2024
package main

import (
	"fmt"

	"github.com/rosedblabs/rosedb/v2"
	"github.com/rosedblabs/rosedb/v2/utils"
)

func main() {
	options := rosedb.DefaultOptions
	options.DirPath = "./tmp/rosedb_merge"

	// merge after insert
	db, err := rosedb.Open(options)
	if err != nil {
		panic(err)
	}

	for i := 0; i < 10; i++ {
		_ = db.Put([]byte(utils.GetTestKey(i)), utils.RandomValue(100*1024))
	}
	_ = db.Merge(true)
	_ = db.Close()

	// merge after deletion
	db, err = rosedb.Open(options)
	if err != nil {
		panic(err)
	}

	fmt.Printf("KeysNum=%v, DiskSize=%.2fMiB\n", db.Stat().KeysNum, float64(db.Stat().DiskSize)/1024/1024)
	for i := 0; i < 10; i++ {
		_ = db.Delete([]byte(utils.GetTestKey(i)))
	}
	_ = db.Merge(true)
	_ = db.Close()

	// open statistics again
	db, err = rosedb.Open(options)
	if err != nil {
		panic(err)
	}

	fmt.Printf("KeysNum=%v, DiskSize=%.2fMiB\n", db.Stat().KeysNum, float64(db.Stat().DiskSize)/1024/1024)
	_ = db.Close()
}

First Execution Result:
KeysNum=10, DiskSize=0.98MiB
KeysNum=0, DiskSize=0.00MiB

Second Execution Result:
KeysNum=10, DiskSize=0.00MiB // Here, DiskSize = 0 !???
KeysNum=0, DiskSize=0.00MiB

from rosedb.

roseduan avatar roseduan commented on September 4, 2024

I will fix it later.
The Merge operation has some changes recently, so it may be unstable.

from rosedb.

roseduan avatar roseduan commented on September 4, 2024
package main

import (
	"fmt"

	"github.com/rosedblabs/rosedb/v2"
	"github.com/rosedblabs/rosedb/v2/utils"
)

func main() {
	options := rosedb.DefaultOptions
	options.DirPath = "./tmp/rosedb_merge"

	// merge after insert
	db, err := rosedb.Open(options)
	if err != nil {
		panic(err)
	}

	for i := 0; i < 10; i++ {
		_ = db.Put([]byte(utils.GetTestKey(i)), utils.RandomValue(100*1024))
	}
	_ = db.Merge(true)
	_ = db.Close()

	// merge after deletion
	db, err = rosedb.Open(options)
	if err != nil {
		panic(err)
	}

	fmt.Printf("KeysNum=%v, DiskSize=%.2fMiB\n", db.Stat().KeysNum, float64(db.Stat().DiskSize)/1024/1024)
	for i := 0; i < 10; i++ {
		_ = db.Delete([]byte(utils.GetTestKey(i)))
	}
	_ = db.Merge(true)
	_ = db.Close()

	// open statistics again
	db, err = rosedb.Open(options)
	if err != nil {
		panic(err)
	}

	fmt.Printf("KeysNum=%v, DiskSize=%.2fMiB\n", db.Stat().KeysNum, float64(db.Stat().DiskSize)/1024/1024)
	_ = db.Close()
}

First Execution Result: KeysNum=10, DiskSize=0.98MiB KeysNum=0, DiskSize=0.00MiB

Second Execution Result: KeysNum=10, DiskSize=0.00MiB // Here, DiskSize = 0 !??? KeysNum=0, DiskSize=0.00MiB

I have fixed this in the latest commit, enjoy!

Feel free to give us any feedback, thanks.

from rosedb.

taroim avatar taroim commented on September 4, 2024

OK, thanks.

from rosedb.

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.