Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nsqd: per-topic WAL #625

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1d95684
wip
mreiferson Oct 22, 2014
03156e3
nsqd: load metadata inside New()
mreiferson Aug 10, 2015
df337fb
update .gitignore
mreiferson Aug 10, 2015
b007032
add crc32 pkg dependency
mreiferson Oct 19, 2015
f8760a4
topic.Pub calculates crc
mreiferson Oct 19, 2015
de9ebc9
fix tests
mreiferson Oct 19, 2015
b814abd
fix depth
mreiferson Oct 19, 2015
8013aee
meh
mreiferson Dec 19, 2015
665540a
rebase
mreiferson Jul 15, 2016
c63e548
tests
mreiferson Jul 15, 2016
225f406
meh
mreiferson Jul 16, 2016
0e5167b
meh
mreiferson Jul 16, 2016
a909133
event
mreiferson Jul 16, 2016
7b964f7
DPUB
mreiferson Jul 22, 2016
e96afc3
meh
mreiferson Jul 23, 2016
4214198
renaming
mreiferson Jul 23, 2016
ee8d24c
timestamp
mreiferson Jul 23, 2016
8229906
meh
mreiferson Jul 23, 2016
03d59a8
pause
mreiferson Jul 24, 2016
b33d673
point to master
mreiferson Jul 24, 2016
540975b
cleanup channel.flush
mreiferson Jul 24, 2016
66a5902
racey todo
mreiferson Jul 24, 2016
600245a
topic pausing
mreiferson Jul 24, 2016
98ba552
topic's don't need a rangeset
mreiferson Jul 24, 2016
f939f80
meh
mreiferson Jul 25, 2016
8ab61a9
rebase
mreiferson Aug 16, 2016
1834f19
meh
mreiferson Jan 1, 2017
4733b5a
compile
mreiferson Jan 4, 2017
9787a35
rebase
mreiferson Apr 19, 2017
fc8b9c7
rebase
mreiferson Aug 21, 2017
10e381b
rebase
mreiferson Aug 25, 2017
63f9155
rebase
mreiferson Mar 18, 2018
44d72d1
stray test cruft
mreiferson Mar 18, 2018
4440c6d
test: workaround go 1.10 test caching
mreiferson Mar 18, 2018
3a29c98
flakey metadata test
mreiferson Mar 18, 2018
673072e
rebase
mreiferson Feb 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
racey todo
  • Loading branch information
mreiferson committed Feb 9, 2019
commit 66a590235bfc3fa47bfb32e18e295297d0b99bb4
1 change: 1 addition & 0 deletions nsqd/topic.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ func (t *Topic) exit(deleted bool) error {
}
}

// TODO: (WAL) this is racey
data, err := json.Marshal(&t.rs)
if err != nil {
return err
Expand Down