GithubHelp home page GithubHelp logo

Comments (5)

Jarema avatar Jarema commented on September 4, 2024 1

Thanks for the detailed report!

We will take a look soon.

from nats.go.

piotrpio avatar piotrpio commented on September 4, 2024 1

@mihaitodor there were 2 issues:

  • The Watch("\"001.>\"") was a server issue, fixed here: nats-io/nats-server#5318
  • Watch("") returned wrong error due to lacking client-side validation: #1613

Both will now return an error since both are essentially invalid arguments: nats: invalid key: keys cannot be empty and must be a valid NATS subject.

from nats.go.

mihaitodor avatar mihaitodor commented on September 4, 2024 1

That's awesome, thank you very much for the quick fixes!

from nats.go.

piotrpio avatar piotrpio commented on September 4, 2024 1

Both PRs are merged and will be included in the next releases of nats-server and nats.go.

from nats.go.

mihaitodor avatar mihaitodor commented on September 4, 2024

Update: I also investigated switching to the new github.com/nats-io/nats.go/jetstream API and I can still reproduce the issue with the following code:

package main

import (
	"context"
	"log"
	"time"

	"github.com/nats-io/nats.go"
	"github.com/nats-io/nats.go/jetstream"
)

func main() {
	conn, err := nats.Connect("localhost:4222")
	if err != nil {
		log.Fatal(err)
	}

	js, err := jetstream.New(conn)
	if err != nil {
		log.Fatal(err)
	}

	kv, err := js.KeyValue(context.Background(), "foobar")
	if err != nil {
		log.Fatal(err)
	}

	// watcher, err := kv.Watch(ctx, "001.>")
	watcher, err := kv.Watch(context.Background(), "\"001.>\"")
	if err != nil {
		log.Fatal(err)
	}
	defer func() {
		if err := watcher.Stop(); err != nil {
			log.Fatal(err)
		}
	}()

	var keys []any
	ctx, done := context.WithTimeout(context.Background(), 3*time.Second)
	defer done()
loop:
	for {
		select {
		case entry := <-watcher.Updates():
			if entry == nil {
				break loop
			}
			keys = append(keys, entry.Key())
		case <-ctx.Done():
			log.Fatal("timeout")
		}
	}
	log.Printf("%v", keys)
}

I can, however, now pass a context to kv.Watch() which makes it easier to abort after a while, but I still think the kv.Watch() call should reject invalid keys.

Also, the nats: jetstream not enabled error is still returned for kv.Watch(context.Background(), "").

from nats.go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.