Skip to content

Commit

Permalink
Merge branch 'development' into dependabot/go_modules/google.golang.o…
Browse files Browse the repository at this point in the history
…rg/api-0.199.0
  • Loading branch information
Umang01-hash authored Oct 1, 2024
2 parents dbfc729 + 9c2ca10 commit e2dc94b
Show file tree
Hide file tree
Showing 14 changed files with 1,161 additions and 14 deletions.
69 changes: 69 additions & 0 deletions docs/advanced-guide/using-publisher-subscriber/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,75 @@ docker run -d \
```
> **Note**: find the default mosquitto config file {% new-tab-link title="here" href="https://github.com/eclipse/mosquitto/blob/master/mosquitto.conf" /%}
### Azure Eventhub
GoFr supports eventhub starting gofr version v1.22.0.

While subscribing gofr reads from all the partitions of the consumer group provided in the configuration reducing hassle to manage them.

#### Configs

Eventhub is supported as an external pubsub provider such that if you are not using it, it doesn't get added in your binary.

Import the external driver for eventhub using the following command.

```bash
go get gofr.dev/pkg/gofr/datasources/pubsub/eventhub
```

Use the AddPubSub method of GoFr's app to connect

**Example**
```go
app := gofr.New()

app.AddPubSub(eventhub.New(eventhub.Config{
ConnectionString: "Endpoint=sb://gofr-dev.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=<key>",
ContainerConnectionString: "DefaultEndpointsProtocol=https;AccountName=gofrdev;AccountKey=<key>;EndpointSuffix=core.windows.net",
StorageServiceURL: "https://gofrdev.windows.net/",
StorageContainerName: "test",
EventhubName: "test1",
}))
```

While subscribing/publishing from eventhub make sure to keep the topic-name same as event-hub name.

#### Setup

1. To setup azure eventhub refer the following [documentation](https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-create).

2. As GoFr manages reading from all the partitions it needs to store the information about what has been read and what is left for that GoFr uses Azure Container which can be setup from the following [documentation](https://learn.microsoft.com/en-us/azure/storage/blobs/blob-containers-portal).

##### Mandatory Configs Configuration Map
{% table %}
- ConnectionString
- [connection-string-primary-key](https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-get-connection-string)

---

- ContainerConnectionString
- [ConnectionString](https://learn.microsoft.com/en-us/azure/storage/common/storage-account-keys-manage?toc=%2Fazure%2Fstorage%2Fblobs%2Ftoc.json&bc=%2Fazure%2Fstorage%2Fblobs%2Fbreadcrumb%2Ftoc.json&tabs=azure-portal#view-account-access-keys)


---

- StorageServiceURL
- [Blob Service URL](https://learn.microsoft.com/en-us/azure/storage/common/storage-account-get-info?tabs=portal#get-service-endpoints-for-the-storage-account)

---

- StorageContainerName
- [Container Name](https://learn.microsoft.com/en-us/azure/storage/blobs/blob-containers-portal#create-a-container)

---

- EventhubName
- [Eventhub](https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-create#create-an-event-hub)

{% /table %}

#### Example


## Subscribing
Adding a subscriber is similar to adding an HTTP handler, which makes it easier to develop scalable applications,
as it decoupled from the Sender/Publisher.
Expand Down
7 changes: 7 additions & 0 deletions pkg/gofr/container/datasources.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"github.com/redis/go-redis/v9"

"gofr.dev/pkg/gofr/datasource"
"gofr.dev/pkg/gofr/datasource/pubsub"
gofrSQL "gofr.dev/pkg/gofr/datasource/sql"
)

Expand Down Expand Up @@ -271,6 +272,12 @@ type KVStoreProvider interface {
provider
}

type PubSubProvider interface {
pubsub.Client

provider
}

type Solr interface {
Search(ctx context.Context, collection string, params map[string]any) (any, error)
Create(ctx context.Context, collection string, document *bytes.Buffer, params map[string]any) (any, error)
Expand Down
29 changes: 15 additions & 14 deletions pkg/gofr/datasource/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,20 @@ Therefore, GoFr utilizes a pluggable approach for new datasources by separating

## Supported Datasources

| Datasource | Health-Check | Logs | Metrics | Traces | As Driver |
|------------|-----------|------|-------|--------|-----------|
| MySQL ||||| |
| REDIS ||||| |
| PostgreSQL ||||| |
| MongoDB |||| ||
| SQLite ||||| |
| BadgerDB ||| | ||
| Cassandra |||| ||
| Clickhouse | ||| ||
| FTP | || | ||
| SFTP | || | ||
| Solr | ||| ||
| DGraph ||||||
| Datasource | Health-Check | Logs | Metrics | Traces | As Driver |
|----------------|-----------|------|-------|--------|-----------|
| MySQL ||||| |
| REDIS ||||| |
| PostgreSQL ||||| |
| MongoDB |||| ||
| SQLite ||||| |
| BadgerDB ||| | ||
| Cassandra |||| ||
| Clickhouse | ||| ||
| FTP | || | ||
| SFTP | || | ||
| Solr | ||| ||
| DGraph |||| ||
| Azure Eventhub | ||| ||


Loading

0 comments on commit e2dc94b

Please sign in to comment.