package idutil

import "go.etcd.io/etcd/pkg/v3/idutil"

Package idutil implements utility functions for generating unique, randomized ids.

Index

Types

type Generator

type Generator struct {
	// contains filtered or unexported fields
}

Generator generates unique identifiers based on counters, timestamps, and a node member ID.

The initial id is in this format: High order 2 bytes are from memberID, next 5 bytes are from timestamp, and low order one byte is a counter. | prefix | suffix | | 2 bytes | 5 bytes | 1 byte | | memberID | timestamp | cnt |

The timestamp 5 bytes is different when the machine is restart after 1 ms and before 35 years.

It increases suffix to generate the next id. The count field may overflow to timestamp field, which is intentional. It helps to extend the event window to 2^56. This doesn't break that id generated after restart is unique because etcd throughput is << 256req/ms(250k reqs/second).

func NewGenerator

func NewGenerator(memberID uint16, now time.Time) *Generator

func (*Generator) Next

func (g *Generator) Next() uint64

Next generates a id that is unique.

Source Files

id.go

Version
v3.5.18 (latest)
Published
Jan 24, 2025
Platform
linux/amd64
Imports
3 packages
Last checked
6 days ago

Tools for package owners.