2023-08-28 16:02:12 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-09-05 04:43:30 +00:00
|
|
|
"flag"
|
2023-08-28 16:02:12 +00:00
|
|
|
"fmt"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/mq/client/pub_client"
|
2023-09-05 04:43:30 +00:00
|
|
|
"log"
|
2023-12-11 20:05:54 +00:00
|
|
|
"strings"
|
2023-09-05 04:43:30 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
2023-08-28 16:02:12 +00:00
|
|
|
)
|
|
|
|
|
2023-09-05 04:43:30 +00:00
|
|
|
var (
|
|
|
|
messageCount = flag.Int("n", 1000, "message count")
|
|
|
|
concurrency = flag.Int("c", 4, "concurrency count")
|
2023-12-11 20:05:54 +00:00
|
|
|
|
|
|
|
namespace = flag.String("ns", "test", "namespace")
|
|
|
|
topic = flag.String("topic", "test", "topic")
|
|
|
|
seedBrokers = flag.String("brokers", "localhost:17777", "seed brokers")
|
2023-09-05 04:43:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func doPublish(publisher *pub_client.TopicPublisher, id int) {
|
|
|
|
startTime := time.Now()
|
|
|
|
for i := 0; i < *messageCount / *concurrency; i++ {
|
|
|
|
// Simulate publishing a message
|
|
|
|
key := []byte(fmt.Sprintf("key-%d-%d", id, i))
|
|
|
|
value := []byte(fmt.Sprintf("value-%d-%d", id, i))
|
|
|
|
publisher.Publish(key, value) // Call your publisher function here
|
|
|
|
// println("Published", string(key), string(value))
|
|
|
|
}
|
|
|
|
elapsed := time.Since(startTime)
|
|
|
|
log.Printf("Publisher %d finished in %s", id, elapsed)
|
|
|
|
}
|
2023-08-28 16:02:12 +00:00
|
|
|
|
2023-09-05 04:43:30 +00:00
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
2023-12-11 20:05:54 +00:00
|
|
|
config := &pub_client.PublisherConfiguration{
|
|
|
|
CreateTopic: true,
|
|
|
|
}
|
|
|
|
publisher := pub_client.NewTopicPublisher(*namespace, *topic, config)
|
|
|
|
brokers := strings.Split(*seedBrokers, ",")
|
|
|
|
if err := publisher.Connect(brokers); err != nil {
|
2023-08-28 16:02:12 +00:00
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-05 04:43:30 +00:00
|
|
|
startTime := time.Now()
|
|
|
|
|
|
|
|
// Start multiple publishers
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
for i := 0; i < *concurrency; i++ {
|
|
|
|
wg.Add(1)
|
|
|
|
go func(id int) {
|
|
|
|
defer wg.Done()
|
|
|
|
doPublish(publisher, id)
|
|
|
|
}(i)
|
2023-08-28 16:02:12 +00:00
|
|
|
}
|
|
|
|
|
2023-09-05 04:43:30 +00:00
|
|
|
// Wait for all publishers to finish
|
|
|
|
wg.Wait()
|
|
|
|
elapsed := time.Since(startTime)
|
2023-09-08 06:55:19 +00:00
|
|
|
publisher.Shutdown()
|
2023-09-05 04:43:30 +00:00
|
|
|
|
|
|
|
log.Printf("Published %d messages in %s (%.2f msg/s)", *messageCount, elapsed, float64(*messageCount)/elapsed.Seconds())
|
2023-08-28 16:02:12 +00:00
|
|
|
|
|
|
|
}
|