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

Gitlw/migrate increment #2955

Merged
merged 3 commits into from
Jan 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,41 @@
// This binary would retrieve a value for UID=0x01, and increment it by 1. If
// successful, it would print out the incremented value. It assumes that it has
// access to UID=0x01, and that `val` predicate is of type int.
package main
package counter

import (
"context"
"encoding/json"
"flag"
"fmt"
"log"
"time"

"github.com/dgraph-io/dgo"
"github.com/dgraph-io/dgo/protos/api"
"github.com/dgraph-io/dgraph/x"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"google.golang.org/grpc"
)

var (
addr = flag.String("addr", "localhost:9080", "Address of Dgraph alpha.")
num = flag.Int("num", 1, "How many times to run.")
ro = flag.Bool("ro", false, "Only read the counter value, don't update it.")
wait = flag.String("wait", "0", "How long to wait.")
pred = flag.String("pred", "counter.val", "Predicate to use for storing the counter.")
)
var Increment x.SubCommand

func init() {
Increment.Cmd = &cobra.Command{
Use: "increment",
Short: "Increment a counter transactionally",
Run: func(cmd *cobra.Command, args []string) {
run(Increment.Conf)
},
}

flag := Increment.Cmd.Flags()
flag.String("addr", "localhost:9080", "Address of Dgraph alpha.")
flag.Int("num", 1, "How many times to run.")
flag.Bool("ro", false, "Only read the counter value, don't update it.")
flag.Duration("wait", 0*time.Second, "How long to wait.")
flag.String("pred", "counter.val", "Predicate to use for storing the counter.")
}

type Counter struct {
Uid string `json:"uid"`
Expand All @@ -47,12 +60,12 @@ type Counter struct {
startTs uint64 // Only used for internal testing.
}

func queryCounter(txn *dgo.Txn) (Counter, error) {
func queryCounter(txn *dgo.Txn, pred string) (Counter, error) {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()

var counter Counter
query := fmt.Sprintf("{ q(func: has(%s)) { uid, val: %s }}", *pred, *pred)
query := fmt.Sprintf("{ q(func: has(%s)) { uid, val: %s }}", pred, pred)
resp, err := txn.Query(ctx, query)
if err != nil {
return counter, fmt.Errorf("Query error: %v", err)
Expand All @@ -72,15 +85,15 @@ func queryCounter(txn *dgo.Txn) (Counter, error) {
return counter, nil
}

func process(dg *dgo.Dgraph, readOnly bool) (Counter, error) {
func process(dg *dgo.Dgraph, readOnly bool, pred string) (Counter, error) {
if readOnly {
txn := dg.NewReadOnlyTxn()
defer txn.Discard(nil)
return queryCounter(txn)
return queryCounter(txn, pred)
}

txn := dg.NewTxn()
counter, err := queryCounter(txn)
counter, err := queryCounter(txn, pred)
if err != nil {
return Counter{}, err
}
Expand All @@ -90,7 +103,7 @@ func process(dg *dgo.Dgraph, readOnly bool) (Counter, error) {
if len(counter.Uid) == 0 {
counter.Uid = "_:new"
}
mu.SetNquads = []byte(fmt.Sprintf(`<%s> <%s> "%d"^^<xs:int> .`, counter.Uid, *pred, counter.Val))
mu.SetNquads = []byte(fmt.Sprintf(`<%s> <%s> "%d"^^<xs:int> .`, counter.Uid, pred, counter.Val))

// Don't put any timeout for mutation.
_, err = txn.Mutate(context.Background(), &mu)
Expand All @@ -100,31 +113,29 @@ func process(dg *dgo.Dgraph, readOnly bool) (Counter, error) {
return counter, txn.Commit(context.Background())
}

func main() {
flag.Parse()

conn, err := grpc.Dial(*addr, grpc.WithInsecure())
func run(conf *viper.Viper) {
addr := conf.GetString("addr")
waitDur := conf.GetDuration("wait")
num := conf.GetInt("num")
ro := conf.GetBool("ro")
pred := conf.GetString("pred")
conn, err := grpc.Dial(addr, grpc.WithInsecure())
if err != nil {
log.Fatal(err)
}
dc := api.NewDgraphClient(conn)
dg := dgo.NewDgraphClient(dc)

waitDur, err := time.ParseDuration(*wait)
if err != nil {
log.Fatal(err)
}

for *num > 0 {
cnt, err := process(dg, *ro)
for num > 0 {
cnt, err := process(dg, ro, pred)
now := time.Now().UTC().Format("0102 03:04:05.999")
if err != nil {
fmt.Printf("%-17s While trying to process counter: %v. Retrying...\n", now, err)
time.Sleep(time.Second)
continue
}
fmt.Printf("%-17s Counter VAL: %d [ Ts: %d ]\n", now, cnt.Val, cnt.startTs)
*num--
num--
time.Sleep(waitDur)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package main
package counter

import (
"context"
Expand All @@ -32,6 +32,7 @@ import (
)

const N = 10
const pred = "counter"

func increment(t *testing.T, dg *dgo.Dgraph) int {
var max int
Expand All @@ -51,7 +52,7 @@ func increment(t *testing.T, dg *dgo.Dgraph) int {
go func() {
defer wg.Done()
for i := 0; i < N; i++ {
cnt, err := process(dg, false)
cnt, err := process(dg, false, pred)
if err != nil {
if strings.Index(err.Error(), "Transaction has been aborted") >= 0 {
// pass
Expand All @@ -69,7 +70,7 @@ func increment(t *testing.T, dg *dgo.Dgraph) int {
}

func read(t *testing.T, dg *dgo.Dgraph, expected int) {
cnt, err := process(dg, true)
cnt, err := process(dg, true, pred)
require.NoError(t, err)
ts := cnt.startTs
t.Logf("Readonly stage counter: %+v\n", cnt)
Expand All @@ -80,7 +81,7 @@ func read(t *testing.T, dg *dgo.Dgraph, expected int) {
go func() {
defer wg.Done()
for i := 0; i < N; i++ {
cnt, err := process(dg, true)
cnt, err := process(dg, true, pred)
if err != nil {
t.Logf("Error while reading: %v\n", err)
} else {
Expand Down Expand Up @@ -110,7 +111,7 @@ func TestIncrement(t *testing.T) {
ctx := metadata.NewOutgoingContext(context.Background(), md)
x.Check(dg.Alter(ctx, &op))

cnt, err := process(dg, false)
cnt, err := process(dg, false, pred)
if err != nil {
t.Logf("Error while reading: %v\n", err)
} else {
Expand Down
3 changes: 2 additions & 1 deletion dgraph/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import (
"github.com/dgraph-io/dgraph/dgraph/cmd/bulk"
"github.com/dgraph-io/dgraph/dgraph/cmd/cert"
"github.com/dgraph-io/dgraph/dgraph/cmd/conv"
"github.com/dgraph-io/dgraph/dgraph/cmd/counter"
"github.com/dgraph-io/dgraph/dgraph/cmd/debug"
"github.com/dgraph-io/dgraph/dgraph/cmd/live"
"github.com/dgraph-io/dgraph/dgraph/cmd/version"
Expand Down Expand Up @@ -66,7 +67,7 @@ var rootConf = viper.New()
// subcommands initially contains all default sub-commands.
var subcommands = []*x.SubCommand{
&bulk.Bulk, &cert.Cert, &conv.Conv, &live.Live, &alpha.Alpha, &zero.Zero, &version.Version,
&debug.Debug,
&debug.Debug, &counter.Increment,
}

func initCmds() {
Expand Down