Piotr Tabor
4b8c53388b
Merge pull request #250 from x1ddos/sort-order-docs
...
bucket,cursor: clarify sort order and seek algorithm
2022-12-21 22:07:36 +01:00
Piotr Tabor
1231aef645
Merge pull request #241 from adream307/master
...
remove unreachable code
2022-12-21 22:05:57 +01:00
Piotr Tabor
a3749e4c36
Merge pull request #287 from dramirez-qb/patch-1
...
Update README.md fixed typo
2022-12-21 21:39:15 +01:00
Piotr Tabor
696c85ce3d
Merge pull request #356 from ptabor/20221215-flags
...
Add internal iterator to Bucket that goes over buckets.
2022-12-21 12:58:50 +01:00
Piotr Tabor
ebca452da7
Add internal iterator to Bucket that goes over buckets.
...
So far the code was frequently traversing all the keys (ignoring flag whether key is a bucket)
and trying to open each of the keys as bucket (seeking the same entry from the scratch).
In this proposal, we iterate only through bucket keys.
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-21 12:16:50 +01:00
Piotr Tabor
fa80ceeb19
Merge pull request #357 from ptabor/20221218-stack-to-error
...
Pages stacktrace printed for initialization errors.
2022-12-21 11:57:31 +01:00
Benjamin Wang
f0ccf4e887
Merge pull request #363 from ahrtr/seek_assert_20221221
...
only perform assert check on exported method
2022-12-21 18:38:20 +08:00
Benjamin Wang
ed0438722e
only perform assert on exported method
...
Signed-off-by: Benjamin Wang <wachao@vmware.com>
2022-12-21 16:39:30 +08:00
Benjamin Wang
dd0ab6da68
Merge pull request #307 from fyrchik/fix-windows-readonly
...
Fix readonly file mapping on windows
2022-12-21 09:12:26 +08:00
Piotr Tabor
038b2b4d5a
Merge pull request #355 from ptabor/20221216-test-on-16KB-pages
...
Fix bbolt tests for 16KB block page (e.g. Mac with M1 CPU).
2022-12-20 13:59:00 +01:00
Piotr Tabor
bad964e850
Merge pull request #354 from ptabor/20221214-fix-bbolt-safety
...
Add safeguards to bbolt CLI tool
2022-12-18 13:17:08 +01:00
Piotr Tabor
7190a8fe57
Pages stacktrace should be provided for initialization errors.
...
It makes it easy to find which page actually looks to be corrupted.
```
go build ./cmd/bbolt/ && ./bbolt check ~/Downloads/db
panic: freepages: failed to get all reachable pages (page 8314893338927566090: out of bounds: 6258 (stack: [4517 395 821]))
goroutine 18 [running]:
go.etcd.io/bbolt.(*DB).freepages.func2()
/Users/ptab/gits/bbolt/db.go:1056 +0x8c
created by go.etcd.io/bbolt.(*DB).freepages
/Users/ptab/gits/bbolt/db.go:1054 +0x138
```
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-17 15:32:54 +01:00
Piotr Tabor
c34493c3d1
Safety check to 'bbolt page' command.
...
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-17 14:43:12 +01:00
Piotr Tabor
1d5a2b0e24
Merge pull request #306 from ptabor/20211220-bbolt_cmd_format
...
Add support for --format flag for 'keys'
2022-12-16 20:41:01 +01:00
Piotr Tabor
b09984ea16
Fix bbolt test for 16KB block page (e.g. Mac with M1 CPU).
...
The tests were failing when doing development on M1 mac. This was due to page-size difference (4KB assumed in tests) vs. the
OS defaults.
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-16 19:14:51 +01:00
Piotr Tabor
4acf9d93a5
Fixing golangci warnings.
...
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-16 16:08:56 +01:00
Piotr Tabor
505c3888a1
Merge pull request #328 from xpetit/patch-1
...
Comment fix.
2022-12-16 15:50:57 +01:00
Benjamin Wang
307b638af3
Merge pull request #350 from ahrtr/update_cache_20221124
...
change freelist.cache from map[pgid]bool to map[pgid]struct{}
2022-12-16 06:13:34 +08:00
Piotr Tabor
5495c633ad
bbolt get support --parseFormat and --format flags.
...
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-07 22:36:11 +01:00
Piotr Tabor
ed3e67c69b
writelnBytes method has cleaner contract
...
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-07 22:36:11 +01:00
Piotr Tabor
b9199f476d
Add support for --format flag for 'bbolt keys' command.
...
This allows to print keys as 'hex', especially useful in context of etcd revisions:
./bbolt keys --format=hex ./foo/db key
Signed-off-by: Piotr Tabor <ptab@google.com>
2022-12-07 22:36:11 +01:00
Xavier Petit
8fe68b8f4d
Fix comment
...
Signed-off-by: xpetit <32063953+xpetit@users.noreply.github.com>
2022-12-01 11:44:53 +01:00
Benjamin Wang
020684ea1e
Merge pull request #315 from missinglink/enable-main-test
...
cmd/bbolt: re-enable "bbolt" testing
2022-11-30 18:40:10 +08:00
missinglink
e7e1f0c05a
cmd/bbolt: re-enable "bbolt" testing
...
Signed-off-by: missinglink <insomnia@rcpt.at>
2022-11-30 11:20:27 +01:00
Benjamin Wang
89c1e714f1
Merge pull request #341 from dchaofei/fix_cursor_last
...
fix(cursor): `Last` method needs skip empty pages
2022-11-30 10:13:14 +08:00
Evgenii Stratonikov
4504feba82
Close `CreateFileMapping` handle after `MapViewOfFile` failure
...
mmap-go does this, see 82d537b921
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
2022-11-26 13:25:01 +03:00
Evgenii Stratonikov
52d028ffe9
Fix readonly file mapping on windows
...
`CreateFileMapping` tries to extend the file to the size of mapping
which leads to failure if database was opened in readonly and calculated
mmap size is bigger than the file size.
Providing 0 to `MapViewOfFile` will create a view which has size of
mapping, i.e. file-size in read-only mode and full size if file was
truncated.
Also, swap `sizehi` and `sizelo` names to reflect windows API docs.
This was changed in 1c97a490d
for seemingly no reason.
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
2022-11-26 13:15:13 +03:00
Benjamin Wang
70e7654959
change freelist.cache from map[pgid]bool to map[pgid]struct{}
...
We just need to cache a list of freepage ID, and don't dare what's
the value (true or false) at all, so changed the map's value from
bool to struct{}.
Signed-off-by: Benjamin Wang <wachao@vmware.com>
2022-11-24 16:06:38 +08:00
dchaofei
f1918806b2
fix(cursor): Last needs skip empty pages
...
Signed-off-by: dchaofei <dchaofei@163.com>
2022-11-18 14:25:48 +08:00
Marek Siarkowicz
eedea6cb26
Merge pull request #347 from ahrtr/add_changelog
...
add changelog for boltDB
2022-11-14 12:41:33 +01:00
Benjamin Wang
f4160e70b0
add changelog for boltDB
...
Added a changelog file for 1.3.x, and planning to release
1.3.7 with a detailed changelog for users reference.
Signed-off-by: Benjamin Wang <wachao@vmware.com>
2022-11-14 18:42:44 +08:00
Marek Siarkowicz
c5901d2879
Merge pull request #346 from ahrtr/bump_sys_20221113
...
bump golang.org/x/sys to v0.2.0
2022-11-13 12:21:35 +01:00
Benjamin Wang
7591807117
bump golang.org/x/sys to v0.2.0
...
Signed-off-by: Benjamin Wang <wachao@vmware.com>
2022-11-13 13:34:17 +08:00
Marek Siarkowicz
3a8b7dc2c8
Merge pull request #343 from mrueg/ci-lint
...
Enable lint in github actions
2022-11-08 22:29:48 +01:00
Manuel Rüger
33c86c78ca
.github: Enable lint
...
Signed-off-by: Manuel Rüger <manuel@rueg.eu>
2022-10-20 22:47:35 +02:00
Manuel Rüger
b2cf45b995
.github: Update actions to latest version
...
Signed-off-by: Manuel Rüger <manuel@rueg.eu>
2022-10-20 22:33:49 +02:00
Marek Siarkowicz
fa9dfc65da
Merge pull request #342 from mrueg/gofmt
...
Run gofmt
2022-10-20 22:12:36 +02:00
Manuel Rüger
9b606419b1
Run gofmt
...
Signed-off-by: Manuel Rüger <manuel@rueg.eu>
2022-10-20 21:09:53 +02:00
Marek Siarkowicz
00cd6970d0
Merge pull request #321 from mrueg/github-actions
...
Move to Github Actions / Golangci-Lint
2022-10-19 11:30:18 +02:00
Manuel Rüger
ff70d213eb
.github: Move from travis to github actions
2022-03-26 00:30:46 +01:00
Manuel Rüger
fd6c0aa81a
Makefile: Move to golangci-lint
2022-03-26 00:28:02 +01:00
Holger Bartnick
fd5535f71f
support sub buckets in get+keys ( #295 )
...
add possibility to get keys and values of sub buckets
2022-02-25 20:50:46 -08:00
Benjamin
d5db64bdbf
upgrade golang to 1.17 and replace iouitl with io and os ( #297 )
2022-01-29 19:28:06 -08:00
liuxiang88
7d9f2ecba1
Add support for loong64 arch. ( #303 )
2022-01-28 18:38:50 -08:00
Peter Johnson
9b8a60db84
compact: open src file readonly ( #292 )
2022-01-28 18:37:59 -08:00
chunming.dong
f84fe98fde
fix lmdb link ( #300 )
2022-01-28 18:32:44 -08:00
Daniel Ramirez
8cec42f1ce
Update README.md
2021-08-02 10:44:15 +03:00
Piotr Tabor
b18879eb6c
Merge pull request #283 from tklauser/lock-unlock-x-sys-windows
...
Use `golang.org/x/sys/windows` for `FileLockEx`/`UnlockFileEx`
2021-07-02 09:56:20 +02:00
Tobias Klauser
805eb40217
Use golang.org/x/sys/windows for FileLockEx/UnlockFileEx
...
Use the FileLockEx and UnlockFileEx wrappers and the corresponding
LOCKFILE_* and the ERROR_LOCK_VIOLATION error constants from the
golang.org/x/sys/windows package rather than implementing these in the
package.
2021-06-25 14:57:28 +02:00
JmPotato
685b13a4ef
Clean and simplify some code ( #279 )
...
* Clean and simplify some code
Signed-off-by: JmPotato <ghzpotato@gmail.com>
* Remove unused Makefile content
Signed-off-by: JmPotato <ghzpotato@gmail.com>
2021-05-22 23:29:23 -07:00