mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
59 lines
1.3 KiB
Go
59 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"github.com/seaweedfs/seaweedfs/weed/mq/client/pub_client"
|
|
"log"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
messageCount = flag.Int("n", 1000, "message count")
|
|
concurrency = flag.Int("c", 4, "concurrency count")
|
|
)
|
|
|
|
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)
|
|
}
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
publisher := pub_client.NewTopicPublisher(
|
|
"test", "test")
|
|
if err := publisher.Connect("localhost:17777"); err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
// Wait for all publishers to finish
|
|
wg.Wait()
|
|
elapsed := time.Since(startTime)
|
|
publisher.Shutdown()
|
|
|
|
log.Printf("Published %d messages in %s (%.2f msg/s)", *messageCount, elapsed, float64(*messageCount)/elapsed.Seconds())
|
|
|
|
}
|