aboutsummaryrefslogtreecommitdiff
path: root/test/kafka/simple-publisher
diff options
context:
space:
mode:
Diffstat (limited to 'test/kafka/simple-publisher')
-rw-r--r--test/kafka/simple-publisher/README.md77
-rw-r--r--test/kafka/simple-publisher/go.mod10
-rw-r--r--test/kafka/simple-publisher/go.sum69
-rw-r--r--test/kafka/simple-publisher/main.go127
-rwxr-xr-xtest/kafka/simple-publisher/simple-publisherbin0 -> 8058434 bytes
5 files changed, 283 insertions, 0 deletions
diff --git a/test/kafka/simple-publisher/README.md b/test/kafka/simple-publisher/README.md
new file mode 100644
index 000000000..8c42c8ee8
--- /dev/null
+++ b/test/kafka/simple-publisher/README.md
@@ -0,0 +1,77 @@
+# Simple Kafka-Go Publisher for SeaweedMQ
+
+This is a simple publisher client that demonstrates publishing raw messages to SeaweedMQ topics with "_" prefix, which bypass schema validation.
+
+## Features
+
+- **Schema-Free Publishing**: Topics with "_" prefix don't require schema validation
+- **Raw Message Storage**: Messages are stored in a "value" field as raw bytes
+- **Multiple Message Formats**: Supports JSON, binary, and empty messages
+- **Kafka-Go Compatible**: Uses the popular kafka-go library
+
+## Prerequisites
+
+1. **SeaweedMQ Running**: Make sure SeaweedMQ is running on `localhost:17777` (default Kafka port)
+2. **Go Modules**: The project uses Go modules for dependency management
+
+## Setup and Run
+
+```bash
+# Navigate to the publisher directory
+cd test/kafka/simple-publisher
+
+# Download dependencies
+go mod tidy
+
+# Run the publisher
+go run main.go
+```
+
+## Expected Output
+
+```
+Publishing messages to topic '_raw_messages' on broker 'localhost:17777'
+Publishing messages...
+- Published message 1: {"id":1,"message":"Hello from kafka-go client",...}
+- Published message 2: {"id":2,"message":"Raw message without schema validation",...}
+- Published message 3: {"id":3,"message":"Testing SMQ with underscore prefix topic",...}
+
+Publishing different raw message formats...
+- Published raw message 1: key=binary_key, value=Simple string message
+- Published raw message 2: key=json_key, value={"raw_field": "raw_value", "number": 42}
+- Published raw message 3: key=empty_key, value=
+- Published raw message 4: key=, value=Message with no key
+
+All test messages published to topic with '_' prefix!
+These messages should be stored as raw bytes without schema validation.
+```
+
+## Topic Naming Convention
+
+- **Schema-Required Topics**: `user-events`, `orders`, `payments` (require schema validation)
+- **Schema-Free Topics**: `_raw_messages`, `_logs`, `_metrics` (bypass schema validation)
+
+The "_" prefix tells SeaweedMQ to treat the topic as a system topic and skip schema processing entirely.
+
+## Message Storage
+
+For topics with "_" prefix:
+- Messages are stored as raw bytes without schema validation
+- No Confluent Schema Registry envelope is required
+- Any binary data or text can be published
+- SMQ assumes raw messages are stored in a "value" field internally
+
+## Integration with SeaweedMQ
+
+This client works with SeaweedMQ's existing schema bypass logic:
+
+1. **`isSystemTopic()`** function identifies "_" prefix topics as system topics
+2. **`produceSchemaBasedRecord()`** bypasses schema processing for system topics
+3. **Raw storage** via `seaweedMQHandler.ProduceRecord()` stores messages as-is
+
+## Use Cases
+
+- **Log ingestion**: Store application logs without predefined schema
+- **Metrics collection**: Publish time-series data in various formats
+- **Raw data pipelines**: Process unstructured data before applying schemas
+- **Development/testing**: Quickly publish test data without schema setup
diff --git a/test/kafka/simple-publisher/go.mod b/test/kafka/simple-publisher/go.mod
new file mode 100644
index 000000000..09309f0f2
--- /dev/null
+++ b/test/kafka/simple-publisher/go.mod
@@ -0,0 +1,10 @@
+module simple-publisher
+
+go 1.21
+
+require github.com/segmentio/kafka-go v0.4.47
+
+require (
+ github.com/klauspost/compress v1.17.0 // indirect
+ github.com/pierrec/lz4/v4 v4.1.15 // indirect
+)
diff --git a/test/kafka/simple-publisher/go.sum b/test/kafka/simple-publisher/go.sum
new file mode 100644
index 000000000..c9f731f2b
--- /dev/null
+++ b/test/kafka/simple-publisher/go.sum
@@ -0,0 +1,69 @@
+github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
+github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU=
+github.com/klauspost/compress v1.17.0 h1:Rnbp4K9EjcDuVuHtd0dgA4qNuv9yKDYKK1ulpJwgrqM=
+github.com/klauspost/compress v1.17.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE=
+github.com/pierrec/lz4/v4 v4.1.15 h1:MO0/ucJhngq7299dKLwIMtgTfbkoSPF6AoMYDd8Q4q0=
+github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/segmentio/kafka-go v0.4.47 h1:IqziR4pA3vrZq7YdRxaT3w1/5fvIH5qpCwstUanQQB0=
+github.com/segmentio/kafka-go v0.4.47/go.mod h1:HjF6XbOKh0Pjlkr5GVZxt6CsjjwnmhVOfURM5KMd8qg=
+github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
+github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
+github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
+github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
+github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
+github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
+github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY=
+github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3kKLN4=
+github.com/xdg-go/stringprep v1.0.4 h1:XLI/Ng3O1Atzq0oBs3TWm+5ZVgkq2aqdlvP9JtoZ6c8=
+github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM=
+github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
+golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
+golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
+golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4=
+golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
+golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
+golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
+golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
+golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
+golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
+golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM=
+golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
+golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
+golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
+golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
+golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
+golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U=
+golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
+golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
+golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
+golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
+golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=
+golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
+golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
+golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
+golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
+golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
+gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
diff --git a/test/kafka/simple-publisher/main.go b/test/kafka/simple-publisher/main.go
new file mode 100644
index 000000000..6b7b4dffe
--- /dev/null
+++ b/test/kafka/simple-publisher/main.go
@@ -0,0 +1,127 @@
+package main
+
+import (
+ "context"
+ "encoding/json"
+ "fmt"
+ "log"
+ "time"
+
+ "github.com/segmentio/kafka-go"
+)
+
+func main() {
+ // Configuration
+ brokerAddress := "localhost:9093" // Kafka gateway port (not SeaweedMQ broker port 17777)
+ topicName := "_raw_messages" // Topic with "_" prefix - should skip schema validation
+
+ fmt.Printf("Publishing messages to topic '%s' on broker '%s'\n", topicName, brokerAddress)
+
+ // Create a new writer
+ writer := &kafka.Writer{
+ Addr: kafka.TCP(brokerAddress),
+ Topic: topicName,
+ Balancer: &kafka.LeastBytes{},
+ // Configure for immediate delivery (useful for testing)
+ BatchTimeout: 10 * time.Millisecond,
+ BatchSize: 1,
+ }
+ defer writer.Close()
+
+ // Sample data to publish
+ messages := []map[string]interface{}{
+ {
+ "id": 1,
+ "message": "Hello from kafka-go client",
+ "timestamp": time.Now().Unix(),
+ "user_id": "user123",
+ },
+ {
+ "id": 2,
+ "message": "Raw message without schema validation",
+ "timestamp": time.Now().Unix(),
+ "user_id": "user456",
+ "metadata": map[string]string{
+ "source": "test-client",
+ "type": "raw",
+ },
+ },
+ {
+ "id": 3,
+ "message": "Testing SMQ with underscore prefix topic",
+ "timestamp": time.Now().Unix(),
+ "user_id": "user789",
+ "data": []byte("Some binary data here"),
+ },
+ }
+
+ ctx := context.Background()
+
+ fmt.Println("Publishing messages...")
+ for i, msgData := range messages {
+ // Convert message to JSON (simulating raw messages stored in "value" field)
+ valueBytes, err := json.Marshal(msgData)
+ if err != nil {
+ log.Fatalf("Failed to marshal message %d: %v", i+1, err)
+ }
+
+ // Create Kafka message
+ msg := kafka.Message{
+ Key: []byte(fmt.Sprintf("key_%d", msgData["id"])),
+ Value: valueBytes,
+ Headers: []kafka.Header{
+ {Key: "source", Value: []byte("kafka-go-client")},
+ {Key: "content-type", Value: []byte("application/json")},
+ },
+ }
+
+ // Write message
+ err = writer.WriteMessages(ctx, msg)
+ if err != nil {
+ log.Printf("Failed to write message %d: %v", i+1, err)
+ continue
+ }
+
+ fmt.Printf("-Published message %d: %s\n", i+1, string(valueBytes))
+
+ // Small delay between messages
+ time.Sleep(100 * time.Millisecond)
+ }
+
+ fmt.Println("\nAll messages published successfully!")
+
+ // Test with different raw message types
+ fmt.Println("\nPublishing different raw message formats...")
+
+ rawMessages := []kafka.Message{
+ {
+ Key: []byte("binary_key"),
+ Value: []byte("Simple string message"),
+ },
+ {
+ Key: []byte("json_key"),
+ Value: []byte(`{"raw_field": "raw_value", "number": 42}`),
+ },
+ {
+ Key: []byte("empty_key"),
+ Value: []byte{}, // Empty value
+ },
+ {
+ Key: nil, // No key
+ Value: []byte("Message with no key"),
+ },
+ }
+
+ for i, msg := range rawMessages {
+ err := writer.WriteMessages(ctx, msg)
+ if err != nil {
+ log.Printf("Failed to write raw message %d: %v", i+1, err)
+ continue
+ }
+ fmt.Printf("-Published raw message %d: key=%s, value=%s\n",
+ i+1, string(msg.Key), string(msg.Value))
+ }
+
+ fmt.Println("\nAll test messages published to topic with '_' prefix!")
+ fmt.Println("These messages should be stored as raw bytes without schema validation.")
+}
diff --git a/test/kafka/simple-publisher/simple-publisher b/test/kafka/simple-publisher/simple-publisher
new file mode 100755
index 000000000..e53b44407
--- /dev/null
+++ b/test/kafka/simple-publisher/simple-publisher
Binary files differ