Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Hybrid Logic Clock for golang

License

NotificationsYou must be signed in to change notification settings

dashjay/gohlc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro

To implement a mvcc manager for object storage, we usually design a version allocator usually a number that increasesmonotonically, but sometimes machine crashed and time drift back to the past, and version(clock) allocated re-allocatedby mistake, so HLC is for solving this problem.

I didn't find any repo fit for my request, so I decided to designed/implemented my own hlc module.

Detail

I use a time(unix_nano) as part of the physical clock and allocate version from this time(clock) like this:

// pseudo-code for allocate one version v := allocatedVersiondesire := v+1cas(&allocatedVersion, v, desire)

In addition to the logic above , we have another thread to save version to persistent storage, it updatedlastSavedTimestamp after save and signal all clients who wait for versions.

if vardesire catch up thelastSavedTimestamp, the allocate thread wait quietly, after savinghybrid logic clockto persistent storage, the process will be signaled.

Allocator process need not wait for the persistence of timestamp under normal conditions, there is a timed task to dothis periodically, they even not feel the existence of persistence process.

Architecture

  • persistence: developers can define a persistence.Interface by themselves, save the version to where the like: egboltdb, disk, etcd, mysql...(I have implemented a disk one for you to use)
  • service: it implemented a hlc service for user to call by grpc.

Use

It is easy to run service as a gprc server, I'll provide the full code sample later.

Benchmark

If all goes well(persistent process), it can reach 1.5M QPS, if use batch get request, you can get 67M version if everyrequest get 50 versions.

hlc_test.go:56: finished 20000000 query & get 20000000 clocks in 12.70 sechlc_test.go:77: finished 20000000 query & get 1000000000 clocks in 14.77 sec

About

Hybrid Logic Clock for golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp