-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Go SDK]: Implement natsio.Read transform for reading from NATS (#29410)
- Loading branch information
1 parent
d59e192
commit 90e79ae
Showing
14 changed files
with
1,020 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one or more | ||
// contributor license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright ownership. | ||
// The ASF licenses this file to You under the Apache License, Version 2.0 | ||
// (the "License"); you may not use this file except in compliance with | ||
// the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package natsio | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/nats-io/nats.go/jetstream" | ||
) | ||
|
||
type endEstimator struct { | ||
js jetstream.JetStream | ||
stream string | ||
subject string | ||
} | ||
|
||
func newEndEstimator(js jetstream.JetStream, stream string, subject string) *endEstimator { | ||
return &endEstimator{ | ||
js: js, | ||
stream: stream, | ||
subject: subject, | ||
} | ||
} | ||
|
||
func (e *endEstimator) Estimate() int64 { | ||
ctx := context.Background() | ||
end, err := e.getEndSeqNo(ctx) | ||
if err != nil { | ||
panic(err) | ||
} | ||
return end | ||
} | ||
|
||
func (e *endEstimator) getEndSeqNo(ctx context.Context) (int64, error) { | ||
str, err := e.js.Stream(ctx, e.stream) | ||
if err != nil { | ||
return -1, fmt.Errorf("error getting stream: %v", err) | ||
} | ||
|
||
msg, err := str.GetLastMsgForSubject(ctx, e.subject) | ||
if err != nil { | ||
if isMessageNotFound(err) { | ||
return 1, nil | ||
} | ||
|
||
return -1, fmt.Errorf("error getting last message: %v", err) | ||
} | ||
|
||
return int64(msg.Sequence) + 1, nil | ||
} | ||
|
||
func isMessageNotFound(err error) bool { | ||
var jsErr jetstream.JetStreamError | ||
if errors.As(err, &jsErr) { | ||
apiErr := jsErr.APIError() | ||
if apiErr.ErrorCode == jetstream.JSErrCodeMessageNotFound { | ||
return true | ||
} | ||
} | ||
|
||
return false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one or more | ||
// contributor license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright ownership. | ||
// The ASF licenses this file to You under the Apache License, Version 2.0 | ||
// (the "License"); you may not use this file except in compliance with | ||
// the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package natsio | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/nats-io/nats.go" | ||
) | ||
|
||
func Test_endEstimator_Estimate(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
msgs []*nats.Msg | ||
subject string | ||
want int64 | ||
}{ | ||
{ | ||
name: "Estimate end for published messages", | ||
msgs: []*nats.Msg{ | ||
{ | ||
Subject: "subject.1", | ||
Data: []byte("msg1"), | ||
}, | ||
{ | ||
Subject: "subject.1", | ||
Data: []byte("msg2"), | ||
}, | ||
{ | ||
Subject: "subject.2", | ||
Data: []byte("msg3"), | ||
}, | ||
}, | ||
subject: "subject.1", | ||
want: 3, | ||
}, | ||
{ | ||
name: "Estimate end for no published messages", | ||
subject: "subject.1", | ||
want: 1, | ||
}, | ||
} | ||
for i, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
ctx := context.Background() | ||
srv := newServer(t) | ||
url := srv.ClientURL() | ||
conn := newConn(t, url) | ||
js := newJetStream(t, conn) | ||
|
||
stream := fmt.Sprintf("STREAM-%d", i) | ||
subjectFilter := "subject.*" | ||
|
||
createStream(ctx, t, js, stream, []string{subjectFilter}) | ||
publishMessages(ctx, t, js, tt.msgs) | ||
|
||
estimator := newEndEstimator(js, stream, tt.subject) | ||
if got := estimator.Estimate(); got != tt.want { | ||
t.Fatalf("Estimate() = %v, want %v", got, tt.want) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.