2018-10-29 01:49:45 +03:00
|
|
|
package server
|
2016-03-05 02:08:16 +03:00
|
|
|
|
2016-03-30 19:32:38 +03:00
|
|
|
import (
|
|
|
|
"errors"
|
2016-12-06 02:24:26 +03:00
|
|
|
"fmt"
|
2016-03-30 19:32:38 +03:00
|
|
|
"math/rand"
|
|
|
|
"strconv"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/tidwall/resp"
|
2018-10-11 00:25:40 +03:00
|
|
|
"github.com/tidwall/tile38/internal/log"
|
2016-03-30 19:32:38 +03:00
|
|
|
)
|
|
|
|
|
2016-05-24 00:21:18 +03:00
|
|
|
// MASSINSERT num_keys num_points [minx miny maxx maxy]
|
|
|
|
|
2016-04-04 04:13:33 +03:00
|
|
|
func randMassInsertPosition(minLat, minLon, maxLat, maxLon float64) (float64, float64) {
|
|
|
|
lat, lon := (rand.Float64()*(maxLat-minLat))+minLat, (rand.Float64()*(maxLon-minLon))+minLon
|
|
|
|
return lat, lon
|
|
|
|
}
|
|
|
|
|
2019-10-30 20:17:59 +03:00
|
|
|
func (s *Server) cmdMassInsert(msg *Message) (res resp.Value, err error) {
|
2016-03-30 19:32:38 +03:00
|
|
|
start := time.Now()
|
2018-10-29 01:49:45 +03:00
|
|
|
vs := msg.Args[1:]
|
2016-03-30 19:32:38 +03:00
|
|
|
|
2016-04-04 04:13:33 +03:00
|
|
|
minLat, minLon, maxLat, maxLon := -90.0, -180.0, 90.0, 180.0 //37.10776, -122.67145, 38.19502, -121.62775
|
|
|
|
|
2016-03-30 19:32:38 +03:00
|
|
|
var snumCols, snumPoints string
|
|
|
|
var cols, objs int
|
|
|
|
var ok bool
|
|
|
|
if vs, snumCols, ok = tokenval(vs); !ok || snumCols == "" {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidNumberOfArguments
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
|
|
|
if vs, snumPoints, ok = tokenval(vs); !ok || snumPoints == "" {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidNumberOfArguments
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
|
|
|
if len(vs) != 0 {
|
2016-04-04 04:13:33 +03:00
|
|
|
var sminLat, sminLon, smaxLat, smaxLon string
|
|
|
|
if vs, sminLat, ok = tokenval(vs); !ok || sminLat == "" {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidNumberOfArguments
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
if vs, sminLon, ok = tokenval(vs); !ok || sminLon == "" {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidNumberOfArguments
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
if vs, smaxLat, ok = tokenval(vs); !ok || smaxLat == "" {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidNumberOfArguments
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
if vs, smaxLon, ok = tokenval(vs); !ok || smaxLon == "" {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidNumberOfArguments
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
var err error
|
|
|
|
if minLat, err = strconv.ParseFloat(sminLat, 64); err != nil {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, err
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
if minLon, err = strconv.ParseFloat(sminLon, 64); err != nil {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, err
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
if maxLat, err = strconv.ParseFloat(smaxLat, 64); err != nil {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, err
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
if maxLon, err = strconv.ParseFloat(smaxLon, 64); err != nil {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, err
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
|
|
|
if len(vs) != 0 {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errors.New("invalid number of arguments")
|
2016-04-04 04:13:33 +03:00
|
|
|
}
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
|
|
|
n, err := strconv.ParseUint(snumCols, 10, 64)
|
|
|
|
if err != nil {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidArgument(snumCols)
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
|
|
|
cols = int(n)
|
|
|
|
n, err = strconv.ParseUint(snumPoints, 10, 64)
|
|
|
|
if err != nil {
|
2018-10-29 01:49:45 +03:00
|
|
|
return NOMessage, errInvalidArgument(snumPoints)
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
2019-09-04 03:01:26 +03:00
|
|
|
|
2018-10-29 01:49:45 +03:00
|
|
|
docmd := func(args []string) error {
|
2019-10-30 20:17:59 +03:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2021-03-31 18:13:44 +03:00
|
|
|
nmsg := *msg
|
2018-12-04 01:35:32 +03:00
|
|
|
nmsg._command = ""
|
2018-10-29 01:49:45 +03:00
|
|
|
nmsg.Args = args
|
2019-10-30 20:17:59 +03:00
|
|
|
_, d, err := s.command(&nmsg, nil)
|
2016-03-30 19:32:38 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-30 20:17:59 +03:00
|
|
|
return s.writeAOF(nmsg.Args, &d)
|
2018-10-29 01:49:45 +03:00
|
|
|
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
|
|
|
rand.Seed(time.Now().UnixNano())
|
|
|
|
objs = int(n)
|
|
|
|
var k uint64
|
|
|
|
for i := 0; i < cols; i++ {
|
|
|
|
key := "mi:" + strconv.FormatInt(int64(i), 10)
|
2016-12-06 02:24:26 +03:00
|
|
|
func(key string) {
|
|
|
|
// lock cycle
|
2016-03-30 19:32:38 +03:00
|
|
|
for j := 0; j < objs; j++ {
|
|
|
|
id := strconv.FormatInt(int64(j), 10)
|
2018-10-29 01:49:45 +03:00
|
|
|
var values []string
|
2019-02-12 01:42:35 +03:00
|
|
|
values = append(values, "set", key, id)
|
|
|
|
fvals := []float64{
|
|
|
|
1, // one
|
|
|
|
0, // zero
|
|
|
|
-1, // negOne
|
|
|
|
14, // nibble
|
|
|
|
20.5, // tinyDiv10
|
|
|
|
120, // int8
|
|
|
|
-120, // int8
|
|
|
|
20000, // int16
|
|
|
|
-20000, // int16
|
|
|
|
214748300, // int32
|
|
|
|
-214748300, // int32
|
|
|
|
2014748300, // float64
|
|
|
|
123.12312301, // float64
|
|
|
|
}
|
|
|
|
for i, fval := range fvals {
|
|
|
|
values = append(values, "FIELD",
|
|
|
|
fmt.Sprintf("fname:%d", i),
|
|
|
|
strconv.FormatFloat(fval, 'f', -1, 64))
|
|
|
|
}
|
Update expiration logic
This commit changes the logic for managing the expiration of
objects in the database.
Before: There was a server-wide hashmap that stored the
collection key, id, and expiration timestamp for all objects
that had a TTL. The hashmap was occasionally probed at 20
random positions, looking for objects that have expired. Those
expired objects were immediately deleted, and if there was 5
or more objects deleted, then the probe happened again, with
no delay. If the number of objects was less than 5 then the
there was a 1/10th of a second delay before the next probe.
Now: Rather than a server-wide hashmap, each collection has
its own ordered priority queue that stores objects with TTLs.
Rather than probing, there is a background routine that
executes every 1/10th of a second, which pops the expired
objects from the collection queues, and deletes them.
The collection/queue method is a more stable approach than
the hashmap/probing method. With probing, we can run into
major cache misses for some cases where there is wide
TTL duration, such as in the hours or days. This may cause
the system to occasionally fall behind, leaving should-be
expired objects in memory. Using a queue, there is no
cache misses, all objects that should be expired will be
right away, regardless of the TTL durations.
Fixes #616
2021-07-12 23:37:50 +03:00
|
|
|
if rand.Int()%2 == 0 {
|
|
|
|
values = append(values, "EX", fmt.Sprint(rand.Intn(25)+5))
|
|
|
|
}
|
|
|
|
|
2016-12-06 02:24:26 +03:00
|
|
|
if j%8 == 0 {
|
2019-02-12 01:42:35 +03:00
|
|
|
values = append(values, "STRING", fmt.Sprintf("str%v", j))
|
2016-12-06 20:30:48 +03:00
|
|
|
} else {
|
2016-12-06 02:24:26 +03:00
|
|
|
lat, lon := randMassInsertPosition(minLat, minLon, maxLat, maxLon)
|
2018-10-29 01:49:45 +03:00
|
|
|
values = append(values, "POINT",
|
|
|
|
strconv.FormatFloat(lat, 'f', -1, 64),
|
|
|
|
strconv.FormatFloat(lon, 'f', -1, 64),
|
|
|
|
)
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
2019-09-04 03:01:26 +03:00
|
|
|
err := docmd(values)
|
|
|
|
if err != nil {
|
2016-03-30 19:32:38 +03:00
|
|
|
log.Fatal(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
atomic.AddUint64(&k, 1)
|
2016-12-06 02:24:26 +03:00
|
|
|
if j%1000 == 1000-1 {
|
2019-09-04 03:01:26 +03:00
|
|
|
log.Debugf("massinsert: %s %d/%d",
|
|
|
|
key, atomic.LoadUint64(&k), cols*objs)
|
2016-03-30 19:32:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}(key)
|
|
|
|
}
|
|
|
|
log.Infof("massinsert: done %d objects", atomic.LoadUint64(&k))
|
2018-10-29 01:49:45 +03:00
|
|
|
return OKMessage(msg, start), nil
|
2016-03-05 02:08:16 +03:00
|
|
|
}
|
2017-09-30 18:11:10 +03:00
|
|
|
|
2019-10-30 20:17:59 +03:00
|
|
|
func (s *Server) cmdSleep(msg *Message) (res resp.Value, err error) {
|
2017-09-30 18:11:10 +03:00
|
|
|
start := time.Now()
|
2018-10-29 01:49:45 +03:00
|
|
|
if len(msg.Args) != 2 {
|
|
|
|
return NOMessage, errInvalidNumberOfArguments
|
2017-09-30 18:11:10 +03:00
|
|
|
}
|
2018-10-29 01:49:45 +03:00
|
|
|
d, _ := strconv.ParseFloat(msg.Args[1], 64)
|
2018-03-08 16:48:12 +03:00
|
|
|
time.Sleep(time.Duration(float64(time.Second) * d))
|
2018-10-29 01:49:45 +03:00
|
|
|
return OKMessage(msg, start), nil
|
2017-09-30 18:11:10 +03:00
|
|
|
}
|