shard

package
v1.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2021 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IntShardID

type IntShardID struct {
	SrcID   int64
	ShardID int64
	TypeID  int64
	LocalID int64
}

IntShardID is a numeric unique identifier that includes shard information

func BuildIntShardID

func BuildIntShardID(shardID, typeID, localID int64) IntShardID

BuildIntShardID builds an integer ID

func ParseIntShardID

func ParseIntShardID(id int64) IntShardID

ParseIntShardID parses an intID into a ShardID object

type ShardID added in v1.6.0

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

func NewShardID added in v1.6.0

func NewShardID(shard, sequence int64) *ShardID

func NewShardIDFromID added in v1.6.0

func NewShardIDFromID(id int64) *ShardID

func (*ShardID) Hash added in v1.6.0

func (s *ShardID) Hash() uint32

hash does an FNV1a hash of the string

func (*ShardID) ID added in v1.6.0

func (s *ShardID) ID() int64

ID returns the id of the shard

func (*ShardID) Sequence added in v1.6.0

func (s *ShardID) Sequence() int64

func (*ShardID) Shard added in v1.6.0

func (s *ShardID) Shard() int64

func (*ShardID) String added in v1.6.0

func (s *ShardID) String() string

func (*ShardID) Timestamp added in v1.6.0

func (s *ShardID) Timestamp() int64

type Sharder added in v1.6.0

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

func NewSharder added in v1.6.0

func NewSharder(numberOfShards int64) *Sharder

func (*Sharder) CurrentShardID added in v1.6.0

func (s *Sharder) CurrentShardID() int64

func (*Sharder) NewFromSubID added in v1.6.0

func (s *Sharder) NewFromSubID(subID int64) *ShardID

NewFromSubID returns a new ShardID based on some other value (subID) that is taken into account when generating the destination shard Allows for distribution of entries across shards to be dependent on some other value Usage:

// This would group blog entries into shards based on createdByUserID
blogEntryID := s.NewFromSubID(createdByUserID)
blogEntryID2 := s.NewFromSubID(createdByUserID) // Same shard as line above

func (*Sharder) NewRoundRobin added in v1.6.0

func (s *Sharder) NewRoundRobin() *ShardID

NewRoundRobin returns a new ShardID based on an incrementing sequence integer mod the number of shards Allows for an equal distribution of entries across shards

func (*Sharder) NumberOfShards added in v1.6.0

func (s *Sharder) NumberOfShards() int64

type StringShardID

type StringShardID struct {
	SrcID   string
	ShardID int64
	TypeID  int64
	LocalID int64
}

StringShardID is a string unique identifier that includes shard information

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL