Compare commits
	
		
			33 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 98da69fbe8 | |||
| d6d2483d8d | |||
| 7676631737 | |||
| 6c2cf494ca | |||
| 6e5e2e0338 | |||
| 6dd3b4548a | |||
| fff768dc2a | |||
| 755bd187ba | |||
| 141c7fb848 | |||
|  | f347ca4e12 | ||
| c78bffdb8d | |||
| 49ba8880f2 | |||
|  | bbd840b96e | ||
| 1ee739de80 | |||
|  | 7f0265b6d1 | ||
| 4dc19dc63f | |||
|  | 5eb2718cd4 | ||
| b4c98e207f | |||
|  | 20652894b3 | ||
| 27bb8c50d1 | |||
|  | b90ef8cdf3 | ||
| 222370f96c | |||
|  | 1152be720d | ||
| f0b9665816 | |||
|  | 310e9a8ceb | ||
| cc155511e1 | |||
|  | 0a0c592b64 | ||
| 372c5c92f0 | |||
|  | 2601514578 | ||
| 8a1856e814 | |||
|  | 08e04cdb70 | ||
| 7286521472 | |||
|  | b01e2b5563 | 
							
								
								
									
										19
									
								
								.github/dependabot.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								.github/dependabot.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | |||||||
|  | # To get started with Dependabot version updates, you'll need to specify which | ||||||
|  | # package ecosystems to update and where the package manifests are located. | ||||||
|  | # Please see the documentation for all configuration options: | ||||||
|  | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||||||
|  |  | ||||||
|  | version: 2 | ||||||
|  | updates: | ||||||
|  |  | ||||||
|  |   # Maintain dependencies for GitHub Actions | ||||||
|  |   - package-ecosystem: "github-actions" | ||||||
|  |     directory: "/" | ||||||
|  |     schedule: | ||||||
|  |       interval: "daily" | ||||||
|  |  | ||||||
|  |   # Maintain dependencies for Golang | ||||||
|  |   - package-ecosystem: "gomod" | ||||||
|  |     directory: "/" | ||||||
|  |     schedule: | ||||||
|  |       interval: "daily" | ||||||
							
								
								
									
										20
									
								
								.github/workflows/autoapprove.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/autoapprove.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | |||||||
|  | name: "autoapprove" | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   pull_request_target: | ||||||
|  |     types: [assigned, opened, synchronize, reopened] | ||||||
|  |  | ||||||
|  | permissions: | ||||||
|  |   pull-requests: write | ||||||
|  |   contents: write | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   autoapprove: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - name: approve | ||||||
|  |         uses: hmarr/auto-approve-action@v3 | ||||||
|  |         if: github.actor == 'vtolstov' || github.actor == 'dependabot[bot]' | ||||||
|  |         id: approve | ||||||
|  |         with: | ||||||
|  |           github-token: ${{ secrets.GITHUB_TOKEN }} | ||||||
							
								
								
									
										21
									
								
								.github/workflows/automerge.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								.github/workflows/automerge.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | |||||||
|  | name: "automerge" | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   pull_request_target: | ||||||
|  |     types: [assigned, opened, synchronize, reopened] | ||||||
|  |  | ||||||
|  | permissions: | ||||||
|  |   pull-requests: write | ||||||
|  |   contents: write | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   automerge: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     if: github.actor == 'vtolstov' | ||||||
|  |     steps: | ||||||
|  |       - name: merge | ||||||
|  |         id: merge | ||||||
|  |         run: gh pr merge --auto --merge "$PR_URL" | ||||||
|  |         env: | ||||||
|  |           PR_URL: ${{github.event.pull_request.html_url}} | ||||||
|  |           GITHUB_TOKEN: ${{secrets.TOKEN}} | ||||||
							
								
								
									
										47
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | |||||||
|  | name: build | ||||||
|  | on: | ||||||
|  |  push: | ||||||
|  |     branches: | ||||||
|  |     - master | ||||||
|  |     - v3 | ||||||
|  | jobs: | ||||||
|  |   test: | ||||||
|  |     name: test | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |     - name: setup | ||||||
|  |       uses: actions/setup-go@v3 | ||||||
|  |       with: | ||||||
|  |         go-version: 1.17 | ||||||
|  |     - name: checkout | ||||||
|  |       uses: actions/checkout@v3 | ||||||
|  |     - name: cache | ||||||
|  |       uses: actions/cache@v3 | ||||||
|  |       with: | ||||||
|  |         path: ~/go/pkg/mod | ||||||
|  |         key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||||||
|  |         restore-keys: ${{ runner.os }}-go- | ||||||
|  |     - name: deps | ||||||
|  |       run: go get -v -t -d ./... | ||||||
|  |     - name: test | ||||||
|  |       env: | ||||||
|  |         INTEGRATION_TESTS: yes | ||||||
|  |       run: go test -mod readonly -v ./... | ||||||
|  |   lint: | ||||||
|  |     name: lint | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - name: checkout | ||||||
|  |         uses: actions/checkout@v3 | ||||||
|  |       - name: lint | ||||||
|  |         uses: golangci/golangci-lint-action@v3.4.0 | ||||||
|  |         continue-on-error: true | ||||||
|  |         with: | ||||||
|  |           # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | ||||||
|  |           version: v1.30 | ||||||
|  |           # Optional: working directory, useful for monorepos | ||||||
|  |           # working-directory: somedir | ||||||
|  |           # Optional: golangci-lint command line arguments. | ||||||
|  |           # args: --issues-exit-code=0 | ||||||
|  |           # Optional: show only new issues if it's a pull request. The default value is `false`. | ||||||
|  |           # only-new-issues: true | ||||||
							
								
								
									
										78
									
								
								.github/workflows/codeql-analysis.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										78
									
								
								.github/workflows/codeql-analysis.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,78 @@ | |||||||
|  | # For most projects, this workflow file will not need changing; you simply need | ||||||
|  | # to commit it to your repository. | ||||||
|  | # | ||||||
|  | # You may wish to alter this file to override the set of languages analyzed, | ||||||
|  | # or to provide custom queries or build logic. | ||||||
|  | # | ||||||
|  | # ******** NOTE ******** | ||||||
|  | # We have attempted to detect the languages in your repository. Please check | ||||||
|  | # the `language` matrix defined below to confirm you have the correct set of | ||||||
|  | # supported CodeQL languages. | ||||||
|  | # | ||||||
|  | name: "codeql" | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   workflow_run: | ||||||
|  |     workflows: ["prbuild"] | ||||||
|  |     types: | ||||||
|  |       - completed | ||||||
|  |   push: | ||||||
|  |     branches: [ master, v3 ] | ||||||
|  |   pull_request: | ||||||
|  |     # The branches below must be a subset of the branches above | ||||||
|  |     branches: [ master, v3 ] | ||||||
|  |   schedule: | ||||||
|  |     - cron: '34 1 * * 0' | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   analyze: | ||||||
|  |     name: analyze | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     permissions: | ||||||
|  |       actions: read | ||||||
|  |       contents: read | ||||||
|  |       security-events: write | ||||||
|  |  | ||||||
|  |     strategy: | ||||||
|  |       fail-fast: false | ||||||
|  |       matrix: | ||||||
|  |         language: [ 'go' ] | ||||||
|  |         # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] | ||||||
|  |         # Learn more: | ||||||
|  |         # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed | ||||||
|  |  | ||||||
|  |     steps: | ||||||
|  |     - name: checkout | ||||||
|  |       uses: actions/checkout@v3 | ||||||
|  |     - name: setup | ||||||
|  |       uses: actions/setup-go@v3 | ||||||
|  |       with: | ||||||
|  |         go-version: 1.17 | ||||||
|  |     # Initializes the CodeQL tools for scanning. | ||||||
|  |     - name: init | ||||||
|  |       uses: github/codeql-action/init@v2 | ||||||
|  |       with: | ||||||
|  |         languages: ${{ matrix.language }} | ||||||
|  |         # If you wish to specify custom queries, you can do so here or in a config file. | ||||||
|  |         # By default, queries listed here will override any specified in a config file. | ||||||
|  |         # Prefix the list here with "+" to use these queries and those in the config file. | ||||||
|  |         # queries: ./path/to/local/query, your-org/your-repo/queries@main | ||||||
|  |  | ||||||
|  |     # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java). | ||||||
|  |     # If this step fails, then you should remove it and run the build manually (see below) | ||||||
|  |     - name: autobuild | ||||||
|  |       uses: github/codeql-action/autobuild@v2 | ||||||
|  |  | ||||||
|  |     # ℹ️ Command-line programs to run using the OS shell. | ||||||
|  |     # 📚 https://git.io/JvXDl | ||||||
|  |  | ||||||
|  |     # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines | ||||||
|  |     #    and modify them (or add more) to build your code if your project | ||||||
|  |     #    uses a compiled language | ||||||
|  |  | ||||||
|  |     #- run: | | ||||||
|  |     #   make bootstrap | ||||||
|  |     #   make release | ||||||
|  |  | ||||||
|  |     - name: analyze | ||||||
|  |       uses: github/codeql-action/analyze@v2 | ||||||
							
								
								
									
										27
									
								
								.github/workflows/dependabot-automerge.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								.github/workflows/dependabot-automerge.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,27 @@ | |||||||
|  | name: "dependabot-automerge" | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   pull_request_target: | ||||||
|  |     types: [assigned, opened, synchronize, reopened] | ||||||
|  |  | ||||||
|  | permissions: | ||||||
|  |   pull-requests: write | ||||||
|  |   contents: write | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   automerge: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     if: github.actor == 'dependabot[bot]' | ||||||
|  |     steps: | ||||||
|  |       - name: metadata | ||||||
|  |         id: metadata | ||||||
|  |         uses: dependabot/fetch-metadata@v1.3.6 | ||||||
|  |         with: | ||||||
|  |           github-token: "${{ secrets.TOKEN }}" | ||||||
|  |       - name: merge | ||||||
|  |         id: merge | ||||||
|  |         if: ${{contains(steps.metadata.outputs.dependency-names, 'go.unistack.org')}} | ||||||
|  |         run: gh pr merge --auto --merge "$PR_URL" | ||||||
|  |         env: | ||||||
|  |           PR_URL: ${{github.event.pull_request.html_url}} | ||||||
|  |           GITHUB_TOKEN: ${{secrets.TOKEN}} | ||||||
							
								
								
									
										53
									
								
								.github/workflows/job_coverage.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										53
									
								
								.github/workflows/job_coverage.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,53 +0,0 @@ | |||||||
| name: coverage |  | ||||||
|  |  | ||||||
| on: |  | ||||||
|   push: |  | ||||||
|     branches: [ main, v3, v4 ] |  | ||||||
|     paths-ignore: |  | ||||||
|       - '.github/**' |  | ||||||
|       - '.gitea/**' |  | ||||||
|   pull_request: |  | ||||||
|     branches: [ main, v3, v4 ] |  | ||||||
|  |  | ||||||
| jobs: |  | ||||||
|  |  | ||||||
|   build: |  | ||||||
|     if: github.server_url != 'https://github.com' |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     steps: |  | ||||||
|     - name: checkout code |  | ||||||
|       uses: actions/checkout@v4 |  | ||||||
|       with: |  | ||||||
|         filter: 'blob:none' |  | ||||||
|  |  | ||||||
|     - name: setup go |  | ||||||
|       uses: actions/setup-go@v5 |  | ||||||
|       with: |  | ||||||
|         cache-dependency-path: "**/*.sum" |  | ||||||
|         go-version: 'stable' |  | ||||||
|  |  | ||||||
|     - name: test coverage |  | ||||||
|       run: | |  | ||||||
|         go test -v -cover ./... -covermode=count -coverprofile coverage.out -coverpkg ./... |  | ||||||
|         go tool cover -func coverage.out -o coverage.out |  | ||||||
|  |  | ||||||
|     - name: coverage badge |  | ||||||
|       uses: tj-actions/coverage-badge-go@v2 |  | ||||||
|       with: |  | ||||||
|         green: 80 |  | ||||||
|         filename: coverage.out |  | ||||||
|  |  | ||||||
|     - uses: stefanzweifel/git-auto-commit-action@v4 |  | ||||||
|       name: autocommit |  | ||||||
|       with: |  | ||||||
|         commit_message: Apply Code Coverage Badge |  | ||||||
|         skip_fetch: false |  | ||||||
|         skip_checkout: false |  | ||||||
|         file_pattern: ./README.md |  | ||||||
|  |  | ||||||
|     - name: push |  | ||||||
|       if: steps.auto-commit-action.outputs.changes_detected == 'true' |  | ||||||
|       uses: ad-m/github-push-action@master |  | ||||||
|       with: |  | ||||||
|         github_token: ${{ github.token }} |  | ||||||
|         branch: ${{ github.ref }} |  | ||||||
							
								
								
									
										29
									
								
								.github/workflows/job_lint.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								.github/workflows/job_lint.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,29 +0,0 @@ | |||||||
| name: lint |  | ||||||
|  |  | ||||||
| on: |  | ||||||
|   pull_request: |  | ||||||
|     types: [opened, reopened, synchronize] |  | ||||||
|     branches: [ master, v3, v4 ] |  | ||||||
|     paths-ignore: |  | ||||||
|       - '.github/**' |  | ||||||
|       - '.gitea/**' |  | ||||||
|  |  | ||||||
| jobs: |  | ||||||
|   lint: |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     steps: |  | ||||||
|     - name: checkout code |  | ||||||
|       uses: actions/checkout@v4 |  | ||||||
|       with: |  | ||||||
|         filter: 'blob:none' |  | ||||||
|     - name: setup go |  | ||||||
|       uses: actions/setup-go@v5 |  | ||||||
|       with: |  | ||||||
|         cache-dependency-path: "**/*.sum" |  | ||||||
|         go-version: 'stable' |  | ||||||
|     - name: setup deps |  | ||||||
|       run: go get -v ./... |  | ||||||
|     - name: run lint |  | ||||||
|       uses: golangci/golangci-lint-action@v6 |  | ||||||
|       with: |  | ||||||
|         version: 'latest' |  | ||||||
							
								
								
									
										31
									
								
								.github/workflows/job_test.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										31
									
								
								.github/workflows/job_test.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,31 +0,0 @@ | |||||||
| name: test |  | ||||||
|  |  | ||||||
| on: |  | ||||||
|   pull_request: |  | ||||||
|     types: [opened, reopened, synchronize] |  | ||||||
|     branches: [ master, v3, v4 ] |  | ||||||
|   push: |  | ||||||
|     branches: [ master, v3, v4 ] |  | ||||||
|     paths-ignore: |  | ||||||
|       - '.github/**' |  | ||||||
|       - '.gitea/**' |  | ||||||
|  |  | ||||||
| jobs: |  | ||||||
|   test: |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     steps: |  | ||||||
|     - name: checkout code |  | ||||||
|       uses: actions/checkout@v4 |  | ||||||
|       with: |  | ||||||
|         filter: 'blob:none' |  | ||||||
|     - name: setup go |  | ||||||
|       uses: actions/setup-go@v5 |  | ||||||
|       with: |  | ||||||
|         cache-dependency-path: "**/*.sum" |  | ||||||
|         go-version: 'stable' |  | ||||||
|     - name: setup deps |  | ||||||
|       run: go get -v ./... |  | ||||||
|     - name: run test |  | ||||||
|       env: |  | ||||||
|         INTEGRATION_TESTS: yes |  | ||||||
|       run: go test -mod readonly -v ./... |  | ||||||
							
								
								
									
										50
									
								
								.github/workflows/job_tests.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										50
									
								
								.github/workflows/job_tests.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,50 +0,0 @@ | |||||||
| name: test |  | ||||||
|  |  | ||||||
| on: |  | ||||||
|   pull_request: |  | ||||||
|     types: [opened, reopened, synchronize] |  | ||||||
|     branches: [ master, v3, v4 ] |  | ||||||
|   push: |  | ||||||
|     branches: [ master, v3, v4 ] |  | ||||||
|     paths-ignore: |  | ||||||
|       - '.github/**' |  | ||||||
|       - '.gitea/**' |  | ||||||
|  |  | ||||||
| jobs: |  | ||||||
|   test: |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     steps: |  | ||||||
|     - name: checkout code |  | ||||||
|       uses: actions/checkout@v4 |  | ||||||
|       with: |  | ||||||
|         filter: 'blob:none' |  | ||||||
|     - name: checkout tests |  | ||||||
|       uses: actions/checkout@v4 |  | ||||||
|       with: |  | ||||||
|         ref: master |  | ||||||
|         filter: 'blob:none' |  | ||||||
|         repository: unistack-org/micro-tests |  | ||||||
|         path: micro-tests |  | ||||||
|     - name: setup go |  | ||||||
|       uses: actions/setup-go@v5 |  | ||||||
|       with: |  | ||||||
|         cache-dependency-path: "**/*.sum" |  | ||||||
|         go-version: 'stable' |  | ||||||
|     - name: setup go work |  | ||||||
|       env: |  | ||||||
|         GOWORK: ${{ github.workspace }}/go.work |  | ||||||
|       run: | |  | ||||||
|         go work init |  | ||||||
|         go work use . |  | ||||||
|         go work use micro-tests |  | ||||||
|     - name: setup deps |  | ||||||
|       env: |  | ||||||
|         GOWORK: ${{ github.workspace }}/go.work |  | ||||||
|       run: go get -v ./... |  | ||||||
|     - name: run tests |  | ||||||
|       env: |  | ||||||
|         INTEGRATION_TESTS: yes |  | ||||||
|         GOWORK: ${{ github.workspace }}/go.work |  | ||||||
|       run: | |  | ||||||
|         cd micro-tests |  | ||||||
|         go test -mod readonly -v ./... || true |  | ||||||
							
								
								
									
										47
									
								
								.github/workflows/pr.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								.github/workflows/pr.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | |||||||
|  | name: prbuild | ||||||
|  | on: | ||||||
|  |   pull_request: | ||||||
|  |     branches: | ||||||
|  |     - master | ||||||
|  |     - v3 | ||||||
|  | jobs: | ||||||
|  |   test: | ||||||
|  |     name: test | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |     - name: setup | ||||||
|  |       uses: actions/setup-go@v3 | ||||||
|  |       with: | ||||||
|  |         go-version: 1.17 | ||||||
|  |     - name: checkout | ||||||
|  |       uses: actions/checkout@v3 | ||||||
|  |     - name: cache | ||||||
|  |       uses: actions/cache@v3 | ||||||
|  |       with: | ||||||
|  |         path: ~/go/pkg/mod | ||||||
|  |         key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||||||
|  |         restore-keys: ${{ runner.os }}-go- | ||||||
|  |     - name: deps | ||||||
|  |       run: go get -v -t -d ./... | ||||||
|  |     - name: test | ||||||
|  |       env: | ||||||
|  |         INTEGRATION_TESTS: yes | ||||||
|  |       run: go test -mod readonly -v ./... | ||||||
|  |   lint: | ||||||
|  |     name: lint | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - name: checkout | ||||||
|  |         uses: actions/checkout@v3 | ||||||
|  |       - name: lint | ||||||
|  |         uses: golangci/golangci-lint-action@v3.4.0 | ||||||
|  |         continue-on-error: true | ||||||
|  |         with: | ||||||
|  |           # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | ||||||
|  |           version: v1.30 | ||||||
|  |           # Optional: working directory, useful for monorepos | ||||||
|  |           # working-directory: somedir | ||||||
|  |           # Optional: golangci-lint command line arguments. | ||||||
|  |           # args: --issues-exit-code=0 | ||||||
|  |           # Optional: show only new issues if it's a pull request. The default value is `false`. | ||||||
|  |           # only-new-issues: true | ||||||
							
								
								
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -13,9 +13,3 @@ | |||||||
|  |  | ||||||
| # Dependency directories (remove the comment below to include it) | # Dependency directories (remove the comment below to include it) | ||||||
| # vendor/ | # vendor/ | ||||||
|  |  | ||||||
| # General |  | ||||||
| .DS_Store |  | ||||||
| .idea |  | ||||||
| .vscode |  | ||||||
| bin/ |  | ||||||
|   | |||||||
| @@ -1,5 +0,0 @@ | |||||||
| run: |  | ||||||
|   concurrency: 8 |  | ||||||
|   timeout: 5m |  | ||||||
|   issues-exit-code: 1 |  | ||||||
|   tests: true |  | ||||||
							
								
								
									
										14
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,9 +1,9 @@ | |||||||
| # broker-kgo | # micro-broker-kgo | ||||||
|  | yet another micro kafka broker alternative | ||||||
|  |  | ||||||
| TODO: | TODO: | ||||||
|  | * dont always append options from context on Init and New | ||||||
| 1) экспортируем текущий оффсет для каждой партиции в группе | * add SubscriberOptions(...kgo.Opt) | ||||||
| 2) экспортируем лаг для группы | * add ServerSubscribeOptions(...kgo.Opt) | ||||||
| 3) мониторим | * check PublisherOptions(...kgo.Opt) | ||||||
|    1) если есть лаг больше нуля | * check ClientPublisherOptions(...kgo.Opt) | ||||||
|    2) если дельта оффсета за нужное нам время не  |  | ||||||
							
								
								
									
										93
									
								
								carrier.go
									
									
									
									
									
								
							
							
						
						
									
										93
									
								
								carrier.go
									
									
									
									
									
								
							| @@ -1,93 +0,0 @@ | |||||||
| package kgo |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"net/http" |  | ||||||
| 	"slices" |  | ||||||
| 	"strings" |  | ||||||
|  |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // RecordCarrier injects and extracts traces from a kgo.Record. |  | ||||||
| // |  | ||||||
| // This type exists to satisfy the otel/propagation.TextMapCarrier interface. |  | ||||||
| type RecordCarrier struct { |  | ||||||
| 	record *kgo.Record |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // NewRecordCarrier creates a new RecordCarrier. |  | ||||||
| func NewRecordCarrier(record *kgo.Record) RecordCarrier { |  | ||||||
| 	return RecordCarrier{record: record} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Get retrieves a single value for a given key if it exists. |  | ||||||
| func (c RecordCarrier) Get(key string) string { |  | ||||||
| 	for _, h := range c.record.Headers { |  | ||||||
| 		if h.Key == key { |  | ||||||
| 			return string(h.Value) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	return "" |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Set sets a header. |  | ||||||
| func (c RecordCarrier) Set(key, val string) { |  | ||||||
| 	// Check if key already exists. |  | ||||||
| 	for i, h := range c.record.Headers { |  | ||||||
| 		if h.Key == key { |  | ||||||
| 			// Key exist, update the value. |  | ||||||
| 			c.record.Headers[i].Value = []byte(val) |  | ||||||
| 			return |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	// Key does not exist, append new header. |  | ||||||
| 	c.record.Headers = append(c.record.Headers, kgo.RecordHeader{ |  | ||||||
| 		Key:   key, |  | ||||||
| 		Value: []byte(val), |  | ||||||
| 	}) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Keys returns a slice of all key identifiers in the carrier. |  | ||||||
| func (c RecordCarrier) Keys() []string { |  | ||||||
| 	out := make([]string, len(c.record.Headers)) |  | ||||||
| 	for i, h := range c.record.Headers { |  | ||||||
| 		out[i] = h.Key |  | ||||||
| 	} |  | ||||||
| 	return out |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func setHeaders(r *kgo.Record, md metadata.Metadata, exclude ...string) { |  | ||||||
| 	seen := make(map[string]struct{}) |  | ||||||
|  |  | ||||||
| loop: |  | ||||||
| 	for k, v := range md { |  | ||||||
| 		k = http.CanonicalHeaderKey(k) |  | ||||||
|  |  | ||||||
| 		if _, ok := seen[k]; ok { |  | ||||||
| 			continue loop |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		if slices.ContainsFunc(exclude, func(s string) bool { |  | ||||||
| 			return strings.EqualFold(s, k) |  | ||||||
| 		}) { |  | ||||||
| 			continue loop |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		for i := 0; i < len(r.Headers); i++ { |  | ||||||
| 			if strings.EqualFold(r.Headers[i].Key, k) { |  | ||||||
| 				// Key exist, update the value. |  | ||||||
| 				r.Headers[i].Value = []byte(v) |  | ||||||
| 				continue loop |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// Key does not exist, append new header. |  | ||||||
| 		r.Headers = append(r.Headers, kgo.RecordHeader{ |  | ||||||
| 			Key:   k, |  | ||||||
| 			Value: []byte(v), |  | ||||||
| 		}) |  | ||||||
|  |  | ||||||
| 		seen[k] = struct{}{} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
							
								
								
									
										10
									
								
								errors.go
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								errors.go
									
									
									
									
									
								
							| @@ -1,10 +0,0 @@ | |||||||
| package kgo |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"errors" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func isContextError(err error) bool { |  | ||||||
| 	return errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) |  | ||||||
| } |  | ||||||
							
								
								
									
										14
									
								
								event.go
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								event.go
									
									
									
									
									
								
							| @@ -1,27 +1,19 @@ | |||||||
| package kgo | package kgo | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" |  | ||||||
| 	"sync" | 	"sync" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type event struct { | type event struct { | ||||||
| 	msg *broker.Message |  | ||||||
| 	err error |  | ||||||
| 	ctx context.Context |  | ||||||
|  |  | ||||||
| 	topic string | 	topic string | ||||||
|  | 	err   error | ||||||
| 	sync.RWMutex | 	sync.RWMutex | ||||||
|  | 	msg *broker.Message | ||||||
| 	ack bool | 	ack bool | ||||||
| } | } | ||||||
|  |  | ||||||
| func (p *event) Context() context.Context { |  | ||||||
| 	return p.ctx |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (p *event) Topic() string { | func (p *event) Topic() string { | ||||||
| 	return p.topic | 	return p.topic | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										32
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										32
									
								
								go.mod
									
									
									
									
									
								
							| @@ -1,32 +1,14 @@ | |||||||
| module go.unistack.org/micro-broker-kgo/v3 | module go.unistack.org/micro-broker-kgo/v4 | ||||||
|  |  | ||||||
| go 1.24.0 | go 1.19 | ||||||
|  |  | ||||||
| toolchain go1.24.3 |  | ||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	github.com/google/uuid v1.6.0 | 	github.com/twmb/franz-go v1.11.5 | ||||||
| 	github.com/stretchr/testify v1.11.1 | 	go.unistack.org/micro/v4 v4.0.1 | ||||||
| 	github.com/twmb/franz-go v1.20.2 |  | ||||||
| 	github.com/twmb/franz-go/pkg/kadm v1.17.1 |  | ||||||
| 	github.com/twmb/franz-go/pkg/kmsg v1.12.0 |  | ||||||
| 	go.opentelemetry.io/otel v1.38.0 |  | ||||||
| 	go.unistack.org/micro/v3 v3.11.48 |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	github.com/ash3in/uuidv8 v1.2.0 // indirect | 	github.com/klauspost/compress v1.15.9 // indirect | ||||||
| 	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | 	github.com/pierrec/lz4/v4 v4.1.15 // indirect | ||||||
| 	github.com/klauspost/compress v1.18.1 // indirect | 	github.com/twmb/franz-go/pkg/kmsg v1.3.0 // indirect | ||||||
| 	github.com/kr/pretty v0.3.1 // indirect |  | ||||||
| 	github.com/matoous/go-nanoid v1.5.1 // indirect |  | ||||||
| 	github.com/pierrec/lz4/v4 v4.1.22 // indirect |  | ||||||
| 	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect |  | ||||||
| 	go.unistack.org/micro-proto/v3 v3.4.1 // indirect |  | ||||||
| 	golang.org/x/crypto v0.43.0 // indirect |  | ||||||
| 	golang.org/x/sys v0.37.0 // indirect |  | ||||||
| 	google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 // indirect |  | ||||||
| 	google.golang.org/grpc v1.76.0 // indirect |  | ||||||
| 	google.golang.org/protobuf v1.36.10 // indirect |  | ||||||
| 	gopkg.in/yaml.v3 v3.0.1 // indirect |  | ||||||
| ) | ) | ||||||
|   | |||||||
							
								
								
									
										92
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										92
									
								
								go.sum
									
									
									
									
									
								
							| @@ -1,74 +1,18 @@ | |||||||
| github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU= | github.com/klauspost/compress v1.15.9 h1:wKRjX6JRtDdrE9qwa4b/Cip7ACOshUI4smpCQanqjSY= | ||||||
| github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU= | github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= | ||||||
| github.com/ash3in/uuidv8 v1.2.0 h1:2oogGdtCPwaVtyvPPGin4TfZLtOGE5F+W++E880G6SI= | github.com/pierrec/lz4/v4 v4.1.15 h1:MO0/ucJhngq7299dKLwIMtgTfbkoSPF6AoMYDd8Q4q0= | ||||||
| github.com/ash3in/uuidv8 v1.2.0/go.mod h1:BnU0wJBxnzdEKmVg4xckBkD+VZuecTFTUP3M0dWgyY4= | github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= | ||||||
| github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= | github.com/twmb/franz-go v1.11.5 h1:TTv5lVJd+87XkmP9dWN9Jgpf7IUUr7a7jee+byR8LBE= | ||||||
| github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= | github.com/twmb/franz-go v1.11.5/go.mod h1:FvaHNlpT6woVYIl6LAuIeL7yHol1Fp6Gv2Dn21AvH78= | ||||||
| github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | github.com/twmb/franz-go/pkg/kmsg v1.3.0 h1:ouBETB7nTqRxiO5E8/pySoFZtVEW2VWw55z3/bsUzTw= | ||||||
| github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= | github.com/twmb/franz-go/pkg/kmsg v1.3.0/go.mod h1:SxG/xJKhgPu25SamAq0rrucfp7lbzCpEXOC+vH/ELrY= | ||||||
| github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= | go.unistack.org/micro/v4 v4.0.1 h1:xo1IxbVfgh8i0eY0VeYa3cbb13u5n/Mxnp3FOgWD4Jo= | ||||||
| github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= | go.unistack.org/micro/v4 v4.0.1/go.mod h1:p/J5UcSJjfHsWGT31uKoghQ5rUQZzQJBAFy+Z4+ZVMs= | ||||||
| github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= | golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= | ||||||
| github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= | golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= | ||||||
| github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= | golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||||||
| github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= | golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||||||
| github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= | golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||||||
| github.com/klauspost/compress v1.18.1 h1:bcSGx7UbpBqMChDtsF28Lw6v/G94LPrrbMbdC3JH2co= | golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= | ||||||
| github.com/klauspost/compress v1.18.1/go.mod h1:ZQFFVG+MdnR0P+l6wpXgIL4NTtwiKIdBnrBd8Nrxr+0= | golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | ||||||
| github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= | golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | ||||||
| github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= |  | ||||||
| github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= |  | ||||||
| github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= |  | ||||||
| github.com/matoous/go-nanoid v1.5.1 h1:aCjdvTyO9LLnTIi0fgdXhOPPvOHjpXN6Ik9DaNjIct4= |  | ||||||
| github.com/matoous/go-nanoid v1.5.1/go.mod h1:zyD2a71IubI24efhpvkJz+ZwfwagzgSO6UNiFsZKN7U= |  | ||||||
| github.com/pierrec/lz4/v4 v4.1.22 h1:cKFw6uJDK+/gfw5BcDL0JL5aBsAFdsIT18eRtLj7VIU= |  | ||||||
| github.com/pierrec/lz4/v4 v4.1.22/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= |  | ||||||
| github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= |  | ||||||
| github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= |  | ||||||
| github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= |  | ||||||
| github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= |  | ||||||
| github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= |  | ||||||
| github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= |  | ||||||
| github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= |  | ||||||
| github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= |  | ||||||
| github.com/twmb/franz-go v1.19.5 h1:W7+o8D0RsQsedqib71OVlLeZ0zI6CbFra7yTYhZTs5Y= |  | ||||||
| github.com/twmb/franz-go v1.19.5/go.mod h1:4kFJ5tmbbl7asgwAGVuyG1ZMx0NNpYk7EqflvWfPCpM= |  | ||||||
| github.com/twmb/franz-go v1.20.2 h1:CiwhyKZHW6vqSHJkh+RTxFAJkio0jBjM/JQhx/HZ72A= |  | ||||||
| github.com/twmb/franz-go v1.20.2/go.mod h1:YCnepDd4gl6vdzG03I5Wa57RnCTIC6DVEyMpDX/J8UA= |  | ||||||
| github.com/twmb/franz-go/pkg/kadm v1.16.1 h1:IEkrhTljgLHJ0/hT/InhXGjPdmWfFvxp7o/MR7vJ8cw= |  | ||||||
| github.com/twmb/franz-go/pkg/kadm v1.16.1/go.mod h1:Ue/ye1cc9ipsQFg7udFbbGiFNzQMqiH73fGC2y0rwyc= |  | ||||||
| github.com/twmb/franz-go/pkg/kadm v1.17.1 h1:Bt02Y/RLgnFO2NP2HVP1kd2TFtGRiJZx+fSArjZDtpw= |  | ||||||
| github.com/twmb/franz-go/pkg/kadm v1.17.1/go.mod h1:s4duQmrDbloVW9QTMXhs6mViTepze7JLG43xwPcAeTg= |  | ||||||
| github.com/twmb/franz-go/pkg/kmsg v1.11.2 h1:hIw75FpwcAjgeyfIGFqivAvwC5uNIOWRGvQgZhH4mhg= |  | ||||||
| github.com/twmb/franz-go/pkg/kmsg v1.11.2/go.mod h1:CFfkkLysDNmukPYhGzuUcDtf46gQSqCZHMW1T4Z+wDE= |  | ||||||
| github.com/twmb/franz-go/pkg/kmsg v1.12.0 h1:CbatD7ers1KzDNgJqPbKOq0Bz/WLBdsTH75wgzeVaPc= |  | ||||||
| github.com/twmb/franz-go/pkg/kmsg v1.12.0/go.mod h1:+DPt4NC8RmI6hqb8G09+3giKObE6uD2Eya6CfqBpeJY= |  | ||||||
| go.opentelemetry.io/otel v1.38.0 h1:RkfdswUDRimDg0m2Az18RKOsnI8UDzppJAtj01/Ymk8= |  | ||||||
| go.opentelemetry.io/otel v1.38.0/go.mod h1:zcmtmQ1+YmQM9wrNsTGV/q/uyusom3P8RxwExxkZhjM= |  | ||||||
| go.unistack.org/micro-proto/v3 v3.4.1 h1:UTjLSRz2YZuaHk9iSlVqqsA50JQNAEK2ZFboGqtEa9Q= |  | ||||||
| go.unistack.org/micro-proto/v3 v3.4.1/go.mod h1:okx/cnOhzuCX0ggl/vToatbCupi0O44diiiLLsZ93Zo= |  | ||||||
| go.unistack.org/micro/v3 v3.11.45 h1:fjTLZYWgsVf9FIMZBxOg8ios2/tmyimnjZrsrxEUeXU= |  | ||||||
| go.unistack.org/micro/v3 v3.11.45/go.mod h1:fDQ8Mu9wubaFP0L8hNQlpzHiEnWN0wbOlawN9HYo0N4= |  | ||||||
| go.unistack.org/micro/v3 v3.11.48 h1:lHJYSHU2z1TTcuswItGwG7cZXN6n04EFqY7lk/0gA7w= |  | ||||||
| go.unistack.org/micro/v3 v3.11.48/go.mod h1:fDQ8Mu9wubaFP0L8hNQlpzHiEnWN0wbOlawN9HYo0N4= |  | ||||||
| golang.org/x/crypto v0.43.0 h1:dduJYIi3A3KOfdGOHX8AVZ/jGiyPa3IbBozJ5kNuE04= |  | ||||||
| golang.org/x/crypto v0.43.0/go.mod h1:BFbav4mRNlXJL4wNeejLpWxB7wMbc79PdRGhWKncxR0= |  | ||||||
| golang.org/x/net v0.45.0 h1:RLBg5JKixCy82FtLJpeNlVM0nrSqpCRYzVU1n8kj0tM= |  | ||||||
| golang.org/x/net v0.45.0/go.mod h1:ECOoLqd5U3Lhyeyo/QDCEVQ4sNgYsqvCZ722XogGieY= |  | ||||||
| golang.org/x/sys v0.37.0 h1:fdNQudmxPjkdUTPnLn5mdQv7Zwvbvpaxqs831goi9kQ= |  | ||||||
| golang.org/x/sys v0.37.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= |  | ||||||
| golang.org/x/text v0.30.0 h1:yznKA/E9zq54KzlzBEAWn1NXSQ8DIp/NYMy88xJjl4k= |  | ||||||
| golang.org/x/text v0.30.0/go.mod h1:yDdHFIX9t+tORqspjENWgzaCVXgk0yYnYuSZ8UzzBVM= |  | ||||||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251007200510-49b9836ed3ff h1:A90eA31Wq6HOMIQlLfzFwzqGKBTuaVztYu/g8sn+8Zc= |  | ||||||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251007200510-49b9836ed3ff/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= |  | ||||||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 h1:M1rk8KBnUsBDg1oPGHNCxG4vc1f49epmTO7xscSajMk= |  | ||||||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= |  | ||||||
| google.golang.org/grpc v1.76.0 h1:UnVkv1+uMLYXoIz6o7chp59WfQUYA2ex/BXQ9rHZu7A= |  | ||||||
| google.golang.org/grpc v1.76.0/go.mod h1:Ju12QI8M6iQJtbcsV+awF5a4hfJMLi4X0JLo94ULZ6c= |  | ||||||
| google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE= |  | ||||||
| google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= |  | ||||||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= |  | ||||||
| gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= |  | ||||||
| gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= |  | ||||||
| gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= |  | ||||||
| gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= |  | ||||||
|   | |||||||
| @@ -1,73 +0,0 @@ | |||||||
| package kgo |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"net" |  | ||||||
| 	"sync/atomic" |  | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type hookEvent struct { |  | ||||||
| 	log          logger.Logger |  | ||||||
| 	connected    *atomic.Uint32 |  | ||||||
| 	fatalOnError bool |  | ||||||
| } |  | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	_ kgo.HookBrokerConnect           = &hookEvent{} |  | ||||||
| 	_ kgo.HookBrokerDisconnect        = &hookEvent{} |  | ||||||
| 	_ kgo.HookBrokerRead              = &hookEvent{} |  | ||||||
| 	_ kgo.HookBrokerWrite             = &hookEvent{} |  | ||||||
| 	_ kgo.HookGroupManageError        = &hookEvent{} |  | ||||||
| 	_ kgo.HookProduceRecordUnbuffered = &hookEvent{} |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func (m *hookEvent) OnGroupManageError(err error) { |  | ||||||
| 	switch { |  | ||||||
| 	case err == nil || isContextError(err) || kgo.IsRetryableBrokerErr(err): |  | ||||||
| 		return |  | ||||||
| 	default: |  | ||||||
| 		m.log.Error(context.TODO(), "kgo.OnGroupManageError", err) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookEvent) OnBrokerConnect(_ kgo.BrokerMetadata, _ time.Duration, _ net.Conn, err error) { |  | ||||||
| 	switch { |  | ||||||
| 	case err == nil || isContextError(err) || kgo.IsRetryableBrokerErr(err): |  | ||||||
| 		return |  | ||||||
| 	default: |  | ||||||
| 		m.log.Error(context.TODO(), "kgo.OnBrokerConnect", err) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookEvent) OnBrokerDisconnect(_ kgo.BrokerMetadata, _ net.Conn) {} |  | ||||||
|  |  | ||||||
| func (m *hookEvent) OnBrokerWrite(_ kgo.BrokerMetadata, _ int16, _ int, _ time.Duration, _ time.Duration, err error) { |  | ||||||
| 	switch { |  | ||||||
| 	case err == nil || isContextError(err) || kgo.IsRetryableBrokerErr(err): |  | ||||||
| 		return |  | ||||||
| 	default: |  | ||||||
| 		m.log.Error(context.TODO(), "kgo.OnBrokerWrite", err) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookEvent) OnBrokerRead(_ kgo.BrokerMetadata, _ int16, _ int, _ time.Duration, _ time.Duration, err error) { |  | ||||||
| 	switch { |  | ||||||
| 	case err == nil || isContextError(err) || kgo.IsRetryableBrokerErr(err): |  | ||||||
| 		return |  | ||||||
| 	default: |  | ||||||
| 		m.log.Error(context.TODO(), "kgo.OnBrokerRead", err) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookEvent) OnProduceRecordUnbuffered(_ *kgo.Record, err error) { |  | ||||||
| 	switch { |  | ||||||
| 	case err == nil || isContextError(err) || kgo.IsRetryableBrokerErr(err): |  | ||||||
| 		return |  | ||||||
| 	default: |  | ||||||
| 		m.log.Error(context.TODO(), "kgo.OnProduceRecordUnbuffered", err) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| @@ -1,362 +0,0 @@ | |||||||
| package kgo |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"errors" |  | ||||||
| 	"io" |  | ||||||
| 	"net" |  | ||||||
| 	"os" |  | ||||||
| 	"testing" |  | ||||||
|  |  | ||||||
| 	"github.com/stretchr/testify/require" |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" |  | ||||||
| 	"go.unistack.org/micro/v3/logger" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func TestHookEvent_OnGroupManageError(t *testing.T) { |  | ||||||
| 	tests := []struct { |  | ||||||
| 		name                  string |  | ||||||
| 		inputErr              error |  | ||||||
| 		expectedErrorIsCalled bool |  | ||||||
| 		expectedErrorMsg      string |  | ||||||
| 	}{ |  | ||||||
| 		{ |  | ||||||
| 			name:                  "error is nil", |  | ||||||
| 			inputErr:              nil, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context canceled", |  | ||||||
| 			inputErr:              context.Canceled, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context deadline exceeded", |  | ||||||
| 			inputErr:              context.DeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: deadline exceeded (os package)", |  | ||||||
| 			inputErr:              os.ErrDeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: EOF (io package)", |  | ||||||
| 			inputErr:              io.EOF, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: closed network connection (net package)", |  | ||||||
| 			inputErr:              net.ErrClosed, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "some error", |  | ||||||
| 			inputErr:              errors.New("some error"), |  | ||||||
| 			expectedErrorIsCalled: true, |  | ||||||
| 			expectedErrorMsg:      "kgo.OnGroupManageError", |  | ||||||
| 		}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, tt := range tests { |  | ||||||
| 		t.Run(tt.name, func(t *testing.T) { |  | ||||||
| 			log := &mockLogger{} |  | ||||||
| 			he := &hookEvent{log: log} |  | ||||||
| 			he.OnGroupManageError(tt.inputErr) |  | ||||||
| 			require.Equal(t, tt.expectedErrorIsCalled, log.errorIsCalled) |  | ||||||
| 			require.Equal(t, tt.expectedErrorMsg, log.errorMsg) |  | ||||||
| 		}) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestHookEvent_OnBrokerConnect(t *testing.T) { |  | ||||||
| 	tests := []struct { |  | ||||||
| 		name                  string |  | ||||||
| 		inputErr              error |  | ||||||
| 		expectedErrorIsCalled bool |  | ||||||
| 		expectedErrorMsg      string |  | ||||||
| 	}{ |  | ||||||
| 		{ |  | ||||||
| 			name:                  "error is nil", |  | ||||||
| 			inputErr:              nil, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context canceled", |  | ||||||
| 			inputErr:              context.Canceled, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context deadline exceeded", |  | ||||||
| 			inputErr:              context.DeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: deadline exceeded (os package)", |  | ||||||
| 			inputErr:              os.ErrDeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: EOF (io package)", |  | ||||||
| 			inputErr:              io.EOF, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: closed network connection (net package)", |  | ||||||
| 			inputErr:              net.ErrClosed, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "some error", |  | ||||||
| 			inputErr:              errors.New("some error"), |  | ||||||
| 			expectedErrorIsCalled: true, |  | ||||||
| 			expectedErrorMsg:      "kgo.OnBrokerConnect", |  | ||||||
| 		}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, tt := range tests { |  | ||||||
| 		t.Run(tt.name, func(t *testing.T) { |  | ||||||
| 			log := &mockLogger{} |  | ||||||
| 			he := &hookEvent{log: log} |  | ||||||
| 			he.OnBrokerConnect(kgo.BrokerMetadata{}, 0, nil, tt.inputErr) |  | ||||||
| 			require.Equal(t, tt.expectedErrorIsCalled, log.errorIsCalled) |  | ||||||
| 			require.Equal(t, tt.expectedErrorMsg, log.errorMsg) |  | ||||||
| 		}) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestHookEvent_OnBrokerWrite(t *testing.T) { |  | ||||||
| 	tests := []struct { |  | ||||||
| 		name                  string |  | ||||||
| 		inputErr              error |  | ||||||
| 		expectedErrorIsCalled bool |  | ||||||
| 		expectedErrorMsg      string |  | ||||||
| 	}{ |  | ||||||
| 		{ |  | ||||||
| 			name:                  "error is nil", |  | ||||||
| 			inputErr:              nil, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context canceled", |  | ||||||
| 			inputErr:              context.Canceled, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context deadline exceeded", |  | ||||||
| 			inputErr:              context.DeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: deadline exceeded (os package)", |  | ||||||
| 			inputErr:              os.ErrDeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: EOF (io package)", |  | ||||||
| 			inputErr:              io.EOF, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: closed network connection (net package)", |  | ||||||
| 			inputErr:              net.ErrClosed, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "some error", |  | ||||||
| 			inputErr:              errors.New("some error"), |  | ||||||
| 			expectedErrorIsCalled: true, |  | ||||||
| 			expectedErrorMsg:      "kgo.OnBrokerWrite", |  | ||||||
| 		}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, tt := range tests { |  | ||||||
| 		t.Run(tt.name, func(t *testing.T) { |  | ||||||
| 			log := &mockLogger{} |  | ||||||
| 			he := &hookEvent{log: log} |  | ||||||
| 			he.OnBrokerWrite(kgo.BrokerMetadata{}, 0, 0, 0, 0, tt.inputErr) |  | ||||||
| 			require.Equal(t, tt.expectedErrorIsCalled, log.errorIsCalled) |  | ||||||
| 			require.Equal(t, tt.expectedErrorMsg, log.errorMsg) |  | ||||||
| 		}) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestHookEvent_OnBrokerRead(t *testing.T) { |  | ||||||
| 	tests := []struct { |  | ||||||
| 		name                  string |  | ||||||
| 		inputErr              error |  | ||||||
| 		expectedErrorIsCalled bool |  | ||||||
| 		expectedErrorMsg      string |  | ||||||
| 	}{ |  | ||||||
| 		{ |  | ||||||
| 			name:                  "error is nil", |  | ||||||
| 			inputErr:              nil, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context canceled", |  | ||||||
| 			inputErr:              context.Canceled, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context deadline exceeded", |  | ||||||
| 			inputErr:              context.DeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: deadline exceeded (os package)", |  | ||||||
| 			inputErr:              os.ErrDeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: EOF (io package)", |  | ||||||
| 			inputErr:              io.EOF, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: closed network connection (net package)", |  | ||||||
| 			inputErr:              net.ErrClosed, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "some error", |  | ||||||
| 			inputErr:              errors.New("some error"), |  | ||||||
| 			expectedErrorIsCalled: true, |  | ||||||
| 			expectedErrorMsg:      "kgo.OnBrokerRead", |  | ||||||
| 		}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, tt := range tests { |  | ||||||
| 		t.Run(tt.name, func(t *testing.T) { |  | ||||||
| 			log := &mockLogger{} |  | ||||||
| 			he := &hookEvent{log: log} |  | ||||||
| 			he.OnBrokerRead(kgo.BrokerMetadata{}, 0, 0, 0, 0, tt.inputErr) |  | ||||||
| 			require.Equal(t, tt.expectedErrorIsCalled, log.errorIsCalled) |  | ||||||
| 			require.Equal(t, tt.expectedErrorMsg, log.errorMsg) |  | ||||||
| 		}) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestHookEvent_OnProduceRecordUnbuffered(t *testing.T) { |  | ||||||
| 	tests := []struct { |  | ||||||
| 		name                  string |  | ||||||
| 		inputErr              error |  | ||||||
| 		expectedErrorIsCalled bool |  | ||||||
| 		expectedErrorMsg      string |  | ||||||
| 	}{ |  | ||||||
| 		{ |  | ||||||
| 			name:                  "error is nil", |  | ||||||
| 			inputErr:              nil, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context canceled", |  | ||||||
| 			inputErr:              context.Canceled, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "context deadline exceeded", |  | ||||||
| 			inputErr:              context.DeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: deadline exceeded (os package)", |  | ||||||
| 			inputErr:              os.ErrDeadlineExceeded, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: EOF (io package)", |  | ||||||
| 			inputErr:              io.EOF, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "retryable error: closed network connection (net package)", |  | ||||||
| 			inputErr:              net.ErrClosed, |  | ||||||
| 			expectedErrorIsCalled: false, |  | ||||||
| 		}, |  | ||||||
| 		{ |  | ||||||
| 			name:                  "some error", |  | ||||||
| 			inputErr:              errors.New("some error"), |  | ||||||
| 			expectedErrorIsCalled: true, |  | ||||||
| 			expectedErrorMsg:      "kgo.OnProduceRecordUnbuffered", |  | ||||||
| 		}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, tt := range tests { |  | ||||||
| 		t.Run(tt.name, func(t *testing.T) { |  | ||||||
| 			log := &mockLogger{} |  | ||||||
| 			he := &hookEvent{log: log} |  | ||||||
| 			he.OnProduceRecordUnbuffered(&kgo.Record{}, tt.inputErr) |  | ||||||
| 			require.Equal(t, tt.expectedErrorIsCalled, log.errorIsCalled) |  | ||||||
| 			require.Equal(t, tt.expectedErrorMsg, log.errorMsg) |  | ||||||
| 		}) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Mocks |  | ||||||
|  |  | ||||||
| type mockLogger struct { |  | ||||||
| 	errorIsCalled bool |  | ||||||
| 	errorMsg      string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Init(...logger.Option) error { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Clone(...logger.Option) logger.Logger { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) V(logger.Level) bool { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Level(logger.Level) { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Options() logger.Options { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Fields(...interface{}) logger.Logger { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Info(context.Context, string, ...interface{}) { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Trace(context.Context, string, ...interface{}) { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Debug(context.Context, string, ...interface{}) { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Warn(context.Context, string, ...interface{}) { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Error(ctx context.Context, msg string, args ...interface{}) { |  | ||||||
| 	m.errorIsCalled = true |  | ||||||
| 	m.errorMsg = msg |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Fatal(context.Context, string, ...interface{}) { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Log(context.Context, logger.Level, string, ...interface{}) { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) Name() string { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *mockLogger) String() string { |  | ||||||
| 	panic("implement me") |  | ||||||
| } |  | ||||||
							
								
								
									
										314
									
								
								kgo.go
									
									
									
									
									
								
							
							
						
						
									
										314
									
								
								kgo.go
									
									
									
									
									
								
							| @@ -1,28 +1,21 @@ | |||||||
| // Package kgo provides a kafka broker using kgo | // Package kgo provides a kafka broker using kgo | ||||||
| package kgo | package kgo // import "go.unistack.org/micro-broker-kgo/v4" | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"errors" | 	"errors" | ||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"math/rand/v2" | 	"math/rand" | ||||||
| 	"strconv" |  | ||||||
| 	"strings" | 	"strings" | ||||||
| 	"sync" | 	"sync" | ||||||
| 	"sync/atomic" |  | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"github.com/google/uuid" |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kadm" |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" | 	"github.com/twmb/franz-go/pkg/kgo" | ||||||
| 	"github.com/twmb/franz-go/pkg/kmsg" | 	"github.com/twmb/franz-go/pkg/kmsg" | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/metadata" | 	id "go.unistack.org/micro/v4/util/id" | ||||||
| 	"go.unistack.org/micro/v3/semconv" | 	mrand "go.unistack.org/micro/v4/util/rand" | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| 	mjitter "go.unistack.org/micro/v3/util/jitter" |  | ||||||
| 	mrand "go.unistack.org/micro/v3/util/rand" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var _ broker.Broker = (*Broker)(nil) | var _ broker.Broker = (*Broker)(nil) | ||||||
| @@ -31,6 +24,7 @@ var ErrLostMessage = errors.New("message not marked for offsets commit and will | |||||||
|  |  | ||||||
| var DefaultRetryBackoffFn = func() func(int) time.Duration { | var DefaultRetryBackoffFn = func() func(int) time.Duration { | ||||||
| 	var rngMu sync.Mutex | 	var rngMu sync.Mutex | ||||||
|  | 	rng := rand.New(rand.NewSource(time.Now().UnixNano())) | ||||||
| 	return func(fails int) time.Duration { | 	return func(fails int) time.Duration { | ||||||
| 		const ( | 		const ( | ||||||
| 			min = 100 * time.Millisecond | 			min = 100 * time.Millisecond | ||||||
| @@ -46,7 +40,7 @@ var DefaultRetryBackoffFn = func() func(int) time.Duration { | |||||||
| 		backoff := min * time.Duration(1<<(fails-1)) | 		backoff := min * time.Duration(1<<(fails-1)) | ||||||
|  |  | ||||||
| 		rngMu.Lock() | 		rngMu.Lock() | ||||||
| 		jitter := 0.8 + 0.4*rand.Float64() | 		jitter := 0.8 + 0.4*rng.Float64() | ||||||
| 		rngMu.Unlock() | 		rngMu.Unlock() | ||||||
|  |  | ||||||
| 		backoff = time.Duration(float64(backoff) * jitter) | 		backoff = time.Duration(float64(backoff) * jitter) | ||||||
| @@ -60,29 +54,11 @@ var DefaultRetryBackoffFn = func() func(int) time.Duration { | |||||||
|  |  | ||||||
| type Broker struct { | type Broker struct { | ||||||
| 	c         *kgo.Client | 	c         *kgo.Client | ||||||
| 	connected *atomic.Uint32 |  | ||||||
|  |  | ||||||
| 	done chan struct{} |  | ||||||
|  |  | ||||||
| 	kopts     []kgo.Opt | 	kopts     []kgo.Opt | ||||||
| 	subs  []*Subscriber | 	connected bool | ||||||
|  | 	sync.RWMutex | ||||||
| 	opts broker.Options | 	opts broker.Options | ||||||
| 	mu   sync.RWMutex | 	subs []*subscriber | ||||||
|  |  | ||||||
| 	init bool |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *Broker) Live() bool { |  | ||||||
| 	return r.connected.Load() == 1 |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *Broker) Ready() bool { |  | ||||||
| 	return r.connected.Load() == 1 |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (r *Broker) Health() bool { |  | ||||||
| 	return r.connected.Load() == 1 |  | ||||||
| } | } | ||||||
|  |  | ||||||
| func (k *Broker) Address() string { | func (k *Broker) Address() string { | ||||||
| @@ -93,184 +69,66 @@ func (k *Broker) Name() string { | |||||||
| 	return k.opts.Name | 	return k.opts.Name | ||||||
| } | } | ||||||
|  |  | ||||||
| func (k *Broker) Client() *kgo.Client { | func (k *Broker) connect(ctx context.Context, opts ...kgo.Opt) (*kgo.Client, error) { | ||||||
| 	return k.c |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (k *Broker) connect(ctx context.Context, opts ...kgo.Opt) (*kgo.Client, *hookTracer, error) { |  | ||||||
| 	var c *kgo.Client | 	var c *kgo.Client | ||||||
| 	var err error | 	var err error | ||||||
|  |  | ||||||
| 	sp, _ := tracer.SpanFromContext(ctx) |  | ||||||
|  |  | ||||||
| 	clientID := "kgo" |  | ||||||
| 	group := "" |  | ||||||
| 	if k.opts.Context != nil { |  | ||||||
| 		if id, ok := k.opts.Context.Value(clientIDKey{}).(string); ok { |  | ||||||
| 			clientID = id |  | ||||||
| 		} |  | ||||||
| 		if id, ok := k.opts.Context.Value(groupKey{}).(string); ok { |  | ||||||
| 			group = id |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	var fatalOnError bool |  | ||||||
| 	if k.opts.Context != nil { |  | ||||||
| 		if v, ok := k.opts.Context.Value(fatalOnErrorKey{}).(bool); ok && v { |  | ||||||
| 			fatalOnError = v |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	htracer := &hookTracer{group: group, clientID: clientID, tracer: k.opts.Tracer} |  | ||||||
| 	opts = append(opts, |  | ||||||
| 		kgo.WithHooks(&hookMeter{meter: k.opts.Meter}), |  | ||||||
| 		kgo.WithHooks(htracer), |  | ||||||
| 		kgo.WithHooks(&hookEvent{log: k.opts.Logger, fatalOnError: fatalOnError, connected: k.connected}), |  | ||||||
| 	) |  | ||||||
|  |  | ||||||
| 	select { | 	select { | ||||||
| 	case <-ctx.Done(): | 	case <-ctx.Done(): | ||||||
| 		if ctx.Err() != nil { | 		return nil, ctx.Err() | ||||||
| 			if sp != nil { |  | ||||||
| 				sp.SetStatus(tracer.SpanStatusError, ctx.Err().Error()) |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
| 		return nil, nil, ctx.Err() |  | ||||||
| 	default: | 	default: | ||||||
| 		c, err = kgo.NewClient(opts...) | 		c, err = kgo.NewClient(opts...) | ||||||
| 		if err == nil { | 		if err == nil { | ||||||
| 			err = c.Ping(ctx) // check connectivity to cluster | 			err = c.Ping(ctx) // check connectivity to cluster | ||||||
| 		} | 		} | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			if sp != nil { | 			return nil, err | ||||||
| 				sp.SetStatus(tracer.SpanStatusError, err.Error()) |  | ||||||
| 			} |  | ||||||
| 			return nil, nil, err |  | ||||||
| 		} |  | ||||||
| 		k.connected.Store(1) |  | ||||||
|  |  | ||||||
| 		if fatalOnError { |  | ||||||
| 			go func() { |  | ||||||
| 				c := 3 |  | ||||||
| 				n := 0 |  | ||||||
| 				tc := mjitter.NewTicker(500*time.Millisecond, 1*time.Second) |  | ||||||
| 				defer tc.Stop() |  | ||||||
| 				for range tc.C { |  | ||||||
| 					if k.connected.Load() == 0 { |  | ||||||
| 						if n > c { |  | ||||||
| 							k.opts.Logger.Fatal(context.Background(), "broker fatal error") |  | ||||||
| 						} |  | ||||||
| 						n++ |  | ||||||
| 					} else { |  | ||||||
| 						n = 0 |  | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 			}() | 	return c, nil | ||||||
| 		} |  | ||||||
| 		return c, htracer, nil |  | ||||||
| 	} |  | ||||||
| } | } | ||||||
|  |  | ||||||
| func (k *Broker) Connect(ctx context.Context) error { | func (k *Broker) Connect(ctx context.Context) error { | ||||||
| 	if k.connected.Load() == 1 { | 	k.RLock() | ||||||
|  | 	if k.connected { | ||||||
|  | 		k.RUnlock() | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  | 	k.RUnlock() | ||||||
|  |  | ||||||
| 	nctx := k.opts.Context | 	nctx := k.opts.Context | ||||||
| 	if ctx != nil { | 	if ctx != nil { | ||||||
| 		nctx = ctx | 		nctx = ctx | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	c, _, err := k.connect(nctx, k.kopts...) | 	c, err := k.connect(nctx, k.kopts...) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return err | 		return err | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	k.mu.Lock() | 	k.Lock() | ||||||
| 	k.c = c | 	k.c = c | ||||||
| 	k.connected.Store(1) | 	k.connected = true | ||||||
| 	k.mu.Unlock() | 	k.Unlock() | ||||||
|  |  | ||||||
| 	exposeLag := false |  | ||||||
| 	if k.opts.Context != nil { |  | ||||||
| 		if v, ok := k.opts.Context.Value(exposeLagKey{}).(bool); ok && v { |  | ||||||
| 			exposeLag = v |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if exposeLag { |  | ||||||
| 		var mu sync.Mutex |  | ||||||
| 		var lastUpdate time.Time |  | ||||||
| 		type pl struct { |  | ||||||
| 			p string |  | ||||||
| 			l float64 |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		lag := make(map[string]map[string]pl) // topic => group => partition => lag |  | ||||||
| 		ac := kadm.NewClient(k.c) |  | ||||||
|  |  | ||||||
| 		updateStats := func() { |  | ||||||
| 			mu.Lock() |  | ||||||
| 			if time.Since(lastUpdate) < DefaultStatsInterval { |  | ||||||
| 				return |  | ||||||
| 			} |  | ||||||
| 			mu.Unlock() |  | ||||||
|  |  | ||||||
| 			k.mu.Lock() |  | ||||||
| 			groups := make([]string, 0, len(k.subs)) |  | ||||||
| 			for _, g := range k.subs { |  | ||||||
| 				groups = append(groups, g.opts.Group) |  | ||||||
| 			} |  | ||||||
| 			k.mu.Unlock() |  | ||||||
|  |  | ||||||
| 			dgls, err := ac.Lag(ctx, groups...) |  | ||||||
| 			if err != nil || !dgls.Ok() { |  | ||||||
| 				k.opts.Logger.Error(k.opts.Context, "kgo describe group lag error", err) |  | ||||||
| 				return |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			for gn, dgl := range dgls { |  | ||||||
| 				for tn, lmap := range dgl.Lag { |  | ||||||
| 					if _, ok := lag[tn]; !ok { |  | ||||||
| 						lag[tn] = make(map[string]pl) |  | ||||||
| 					} |  | ||||||
| 					for p, l := range lmap { |  | ||||||
| 						lag[tn][gn] = pl{p: strconv.Itoa(int(p)), l: float64(l.Lag)} |  | ||||||
| 					} |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		for tn, dg := range lag { |  | ||||||
| 			for gn, gl := range dg { |  | ||||||
| 				k.opts.Meter.Gauge(semconv.BrokerGroupLag, |  | ||||||
| 					func() float64 { updateStats(); return gl.l }, |  | ||||||
| 					"topic", tn, |  | ||||||
| 					"group", gn, |  | ||||||
| 					"partition", gl.p) |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (k *Broker) Disconnect(ctx context.Context) error { | func (k *Broker) Disconnect(ctx context.Context) error { | ||||||
| 	if k.connected.Load() == 0 { | 	k.RLock() | ||||||
|  | 	if !k.connected { | ||||||
|  | 		k.RUnlock() | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  | 	k.RUnlock() | ||||||
|  |  | ||||||
| 	nctx := k.opts.Context | 	nctx := k.opts.Context | ||||||
| 	if ctx != nil { | 	if ctx != nil { | ||||||
| 		nctx = ctx | 		nctx = ctx | ||||||
| 	} | 	} | ||||||
| 	var span tracer.Span |  | ||||||
| 	ctx, span = k.opts.Tracer.Start(ctx, "Disconnect") |  | ||||||
| 	defer span.Finish() |  | ||||||
|  |  | ||||||
| 	k.mu.Lock() | 	k.Lock() | ||||||
| 	defer k.mu.Unlock() | 	defer k.Unlock() | ||||||
| 	select { | 	select { | ||||||
| 	case <-nctx.Done(): | 	case <-nctx.Done(): | ||||||
| 		return nctx.Err() | 		return nctx.Err() | ||||||
| @@ -289,18 +147,13 @@ func (k *Broker) Disconnect(ctx context.Context) error { | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	k.connected.Store(0) | 	k.connected = false | ||||||
| 	close(k.done) |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (k *Broker) Init(opts ...broker.Option) error { | func (k *Broker) Init(opts ...broker.Option) error { | ||||||
| 	k.mu.Lock() | 	k.Lock() | ||||||
| 	defer k.mu.Unlock() | 	defer k.Unlock() | ||||||
|  |  | ||||||
| 	if len(opts) == 0 && k.init { |  | ||||||
| 		return nil |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| 		o(&k.opts) | 		o(&k.opts) | ||||||
| @@ -325,8 +178,6 @@ func (k *Broker) Init(opts ...broker.Option) error { | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	k.init = true |  | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -344,6 +195,22 @@ func (k *Broker) Publish(ctx context.Context, topic string, msg *broker.Message, | |||||||
| } | } | ||||||
|  |  | ||||||
| func (k *Broker) publish(ctx context.Context, msgs []*broker.Message, opts ...broker.PublishOption) error { | func (k *Broker) publish(ctx context.Context, msgs []*broker.Message, opts ...broker.PublishOption) error { | ||||||
|  | 	k.RLock() | ||||||
|  | 	ok := k.connected | ||||||
|  | 	k.RUnlock() | ||||||
|  |  | ||||||
|  | 	if !ok { | ||||||
|  | 		k.Lock() | ||||||
|  | 		c, err := k.connect(ctx, k.kopts...) | ||||||
|  | 		if err != nil { | ||||||
|  | 			k.Unlock() | ||||||
|  | 			return err | ||||||
|  | 		} | ||||||
|  | 		k.c = c | ||||||
|  | 		k.connected = true | ||||||
|  | 		k.Unlock() | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	options := broker.NewPublishOptions(opts...) | 	options := broker.NewPublishOptions(opts...) | ||||||
| 	records := make([]*kgo.Record, 0, len(msgs)) | 	records := make([]*kgo.Record, 0, len(msgs)) | ||||||
| 	var errs []string | 	var errs []string | ||||||
| @@ -362,14 +229,15 @@ func (k *Broker) publish(ctx context.Context, msgs []*broker.Message, opts ...br | |||||||
|  |  | ||||||
| 	for _, msg := range msgs { | 	for _, msg := range msgs { | ||||||
| 		rec := &kgo.Record{Context: ctx, Key: key} | 		rec := &kgo.Record{Context: ctx, Key: key} | ||||||
|  |  | ||||||
| 		rec.Topic, _ = msg.Header.Get(metadata.HeaderTopic) | 		rec.Topic, _ = msg.Header.Get(metadata.HeaderTopic) | ||||||
| 		msg.Header.Del(metadata.HeaderTopic) | 		k.opts.Meter.Counter(broker.PublishMessageInflight, "endpoint", rec.Topic).Inc() | ||||||
|  | 		if options.BodyOnly { | ||||||
| 		k.opts.Meter.Counter(semconv.PublishMessageInflight, "endpoint", rec.Topic, "topic", rec.Topic).Inc() |  | ||||||
| 		if options.BodyOnly || k.opts.Codec.String() == "noop" { |  | ||||||
| 			rec.Value = msg.Body | 			rec.Value = msg.Body | ||||||
| 			setHeaders(rec, msg.Header) | 		} else if k.opts.Codec.String() == "noop" { | ||||||
|  | 			rec.Value = msg.Body | ||||||
|  | 			for k, v := range msg.Header { | ||||||
|  | 				rec.Headers = append(rec.Headers, kgo.RecordHeader{Key: k, Value: []byte(v)}) | ||||||
|  | 			} | ||||||
| 		} else { | 		} else { | ||||||
| 			rec.Value, err = k.opts.Codec.Marshal(msg) | 			rec.Value, err = k.opts.Codec.Marshal(msg) | ||||||
| 			if err != nil { | 			if err != nil { | ||||||
| @@ -384,13 +252,13 @@ func (k *Broker) publish(ctx context.Context, msgs []*broker.Message, opts ...br | |||||||
| 		for _, rec := range records { | 		for _, rec := range records { | ||||||
| 			k.c.Produce(ctx, rec, func(r *kgo.Record, err error) { | 			k.c.Produce(ctx, rec, func(r *kgo.Record, err error) { | ||||||
| 				te := time.Since(ts) | 				te := time.Since(ts) | ||||||
| 				k.opts.Meter.Counter(semconv.PublishMessageInflight, "endpoint", rec.Topic, "topic", rec.Topic).Dec() | 				k.opts.Meter.Counter(broker.PublishMessageInflight, "endpoint", rec.Topic).Dec() | ||||||
| 				k.opts.Meter.Summary(semconv.PublishMessageLatencyMicroseconds, "endpoint", rec.Topic, "topic", rec.Topic).Update(te.Seconds()) | 				k.opts.Meter.Summary(broker.PublishMessageLatencyMicroseconds, "endpoint", r.Topic).Update(te.Seconds()) | ||||||
| 				k.opts.Meter.Histogram(semconv.PublishMessageDurationSeconds, "endpoint", rec.Topic, "topic", rec.Topic).Update(te.Seconds()) | 				k.opts.Meter.Histogram(broker.PublishMessageDurationSeconds, "endpoint", r.Topic).Update(te.Seconds()) | ||||||
| 				if err != nil { | 				if err != nil { | ||||||
| 					k.opts.Meter.Counter(semconv.PublishMessageTotal, "endpoint", rec.Topic, "topic", rec.Topic, "status", "failure").Inc() | 					k.opts.Meter.Counter(broker.PublishMessageTotal, "endpoint", r.Topic, "status", "failure").Inc() | ||||||
| 				} else { | 				} else { | ||||||
| 					k.opts.Meter.Counter(semconv.PublishMessageTotal, "endpoint", rec.Topic, "topic", rec.Topic, "status", "success").Inc() | 					k.opts.Meter.Counter(broker.PublishMessageTotal, "endpoint", r.Topic, "status", "success").Inc() | ||||||
| 				} | 				} | ||||||
| 				promise(r, err) | 				promise(r, err) | ||||||
| 			}) | 			}) | ||||||
| @@ -398,19 +266,17 @@ func (k *Broker) publish(ctx context.Context, msgs []*broker.Message, opts ...br | |||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
| 	ts := time.Now() | 	ts := time.Now() | ||||||
|  |  | ||||||
| 	results := k.c.ProduceSync(ctx, records...) | 	results := k.c.ProduceSync(ctx, records...) | ||||||
|  |  | ||||||
| 	te := time.Since(ts) | 	te := time.Since(ts) | ||||||
| 	for _, result := range results { | 	for _, result := range results { | ||||||
| 		k.opts.Meter.Summary(semconv.PublishMessageLatencyMicroseconds, "endpoint", result.Record.Topic, "topic", result.Record.Topic).Update(te.Seconds()) | 		k.opts.Meter.Summary(broker.PublishMessageLatencyMicroseconds, "endpoint", result.Record.Topic).Update(te.Seconds()) | ||||||
| 		k.opts.Meter.Histogram(semconv.PublishMessageDurationSeconds, "endpoint", result.Record.Topic, "topic", result.Record.Topic).Update(te.Seconds()) | 		k.opts.Meter.Histogram(broker.PublishMessageDurationSeconds, "endpoint", result.Record.Topic).Update(te.Seconds()) | ||||||
| 		k.opts.Meter.Counter(semconv.PublishMessageInflight, "endpoint", result.Record.Topic, "topic", result.Record.Topic).Dec() | 		k.opts.Meter.Counter(broker.PublishMessageInflight, "endpoint", result.Record.Topic).Dec() | ||||||
| 		if result.Err != nil { | 		if result.Err != nil { | ||||||
| 			k.opts.Meter.Counter(semconv.PublishMessageTotal, "endpoint", result.Record.Topic, "topic", result.Record.Topic, "status", "failure").Inc() | 			k.opts.Meter.Counter(broker.PublishMessageTotal, "endpoint", result.Record.Topic, "status", "failure").Inc() | ||||||
| 			errs = append(errs, result.Err.Error()) | 			errs = append(errs, result.Err.Error()) | ||||||
| 		} else { | 		} else { | ||||||
| 			k.opts.Meter.Counter(semconv.PublishMessageTotal, "endpoint", result.Record.Topic, "topic", result.Record.Topic, "status", "success").Inc() | 			k.opts.Meter.Counter(broker.PublishMessageTotal, "endpoint", result.Record.Topic, "status", "success").Inc() | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -421,23 +287,7 @@ func (k *Broker) publish(ctx context.Context, msgs []*broker.Message, opts ...br | |||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (k *Broker) TopicExists(ctx context.Context, topic string) error { | func (k *Broker) BatchSubscribe(ctx context.Context, topic string, handler broker.BatchHandler, opts ...broker.SubscribeOption) (broker.Subscriber, error) { | ||||||
| 	mdreq := kmsg.NewMetadataRequest() |  | ||||||
| 	mdreq.Topics = []kmsg.MetadataRequestTopic{ |  | ||||||
| 		{Topic: &topic}, |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	mdrsp, err := mdreq.RequestWith(ctx, k.c) |  | ||||||
| 	if err != nil { |  | ||||||
| 		return err |  | ||||||
| 	} else if mdrsp.Topics[0].ErrorCode != 0 { |  | ||||||
| 		return fmt.Errorf("topic %s not exists or permission error", topic) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return nil |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (k *Broker) BatchSubscribe(_ context.Context, _ string, _ broker.BatchHandler, _ ...broker.SubscribeOption) (broker.Subscriber, error) { |  | ||||||
| 	return nil, nil | 	return nil, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -445,11 +295,11 @@ func (k *Broker) Subscribe(ctx context.Context, topic string, handler broker.Han | |||||||
| 	options := broker.NewSubscribeOptions(opts...) | 	options := broker.NewSubscribeOptions(opts...) | ||||||
|  |  | ||||||
| 	if options.Group == "" { | 	if options.Group == "" { | ||||||
| 		uid, err := uuid.NewRandom() | 		uid, err := id.New() | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			return nil, err | 			return nil, err | ||||||
| 		} | 		} | ||||||
| 		options.Group = uid.String() | 		options.Group = uid | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	commitInterval := DefaultCommitInterval | 	commitInterval := DefaultCommitInterval | ||||||
| @@ -459,22 +309,13 @@ func (k *Broker) Subscribe(ctx context.Context, topic string, handler broker.Han | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	var fatalOnError bool | 	sub := &subscriber{ | ||||||
| 	if k.opts.Context != nil { |  | ||||||
| 		if v, ok := k.opts.Context.Value(fatalOnErrorKey{}).(bool); ok && v { |  | ||||||
| 			fatalOnError = v |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	sub := &Subscriber{ |  | ||||||
| 		topic:     topic, | 		topic:     topic, | ||||||
| 		opts:      options, | 		opts:      options, | ||||||
| 		handler:   handler, | 		handler:   handler, | ||||||
| 		kopts:     k.opts, | 		kopts:     k.opts, | ||||||
| 		consumers: make(map[tp]*consumer), | 		consumers: make(map[tp]*consumer), | ||||||
| 		done:      make(chan struct{}), | 		done:      make(chan struct{}), | ||||||
| 		fatalOnError: fatalOnError, |  | ||||||
| 		connected:    k.connected, |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	kopts := append(k.kopts, | 	kopts := append(k.kopts, | ||||||
| @@ -485,9 +326,7 @@ func (k *Broker) Subscribe(ctx context.Context, topic string, handler broker.Han | |||||||
| 		kgo.AutoCommitInterval(commitInterval), | 		kgo.AutoCommitInterval(commitInterval), | ||||||
| 		kgo.OnPartitionsAssigned(sub.assigned), | 		kgo.OnPartitionsAssigned(sub.assigned), | ||||||
| 		kgo.OnPartitionsRevoked(sub.revoked), | 		kgo.OnPartitionsRevoked(sub.revoked), | ||||||
| 		kgo.StopProducerOnDataLossDetected(), |  | ||||||
| 		kgo.OnPartitionsLost(sub.lost), | 		kgo.OnPartitionsLost(sub.lost), | ||||||
| 		kgo.AutoCommitCallback(sub.autocommit), |  | ||||||
| 		kgo.AutoCommitMarks(), | 		kgo.AutoCommitMarks(), | ||||||
| 	) | 	) | ||||||
|  |  | ||||||
| @@ -497,7 +336,7 @@ func (k *Broker) Subscribe(ctx context.Context, topic string, handler broker.Han | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	c, htracer, err := k.connect(ctx, kopts...) | 	c, err := k.connect(ctx, kopts...) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return nil, err | 		return nil, err | ||||||
| 	} | 	} | ||||||
| @@ -515,13 +354,11 @@ func (k *Broker) Subscribe(ctx context.Context, topic string, handler broker.Han | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	sub.c = c | 	sub.c = c | ||||||
| 	sub.htracer = htracer |  | ||||||
|  |  | ||||||
| 	go sub.poll(ctx) | 	go sub.poll(ctx) | ||||||
|  |  | ||||||
| 	k.mu.Lock() | 	k.Lock() | ||||||
| 	k.subs = append(k.subs, sub) | 	k.subs = append(k.subs, sub) | ||||||
| 	k.mu.Unlock() | 	k.Unlock() | ||||||
| 	return sub, nil | 	return sub, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -542,13 +379,14 @@ func NewBroker(opts ...broker.Option) *Broker { | |||||||
| 		kgo.DialTimeout(3 * time.Second), | 		kgo.DialTimeout(3 * time.Second), | ||||||
| 		kgo.DisableIdempotentWrite(), | 		kgo.DisableIdempotentWrite(), | ||||||
| 		kgo.ProducerBatchCompression(kgo.NoCompression()), | 		kgo.ProducerBatchCompression(kgo.NoCompression()), | ||||||
| 		kgo.WithLogger(&mlogger{l: options.Logger.Clone(logger.WithAddCallerSkipCount(2)), ctx: options.Context}), | 		kgo.WithLogger(&mlogger{l: options.Logger, ctx: options.Context}), | ||||||
|  | 		// kgo.WithLogger(kgo.BasicLogger(os.Stderr, kgo.LogLevelDebug, func() string { return time.Now().Format(time.StampMilli) })), | ||||||
|  | 		kgo.WithHooks(&metrics{meter: options.Meter}), | ||||||
| 		kgo.SeedBrokers(kaddrs...), | 		kgo.SeedBrokers(kaddrs...), | ||||||
| 		kgo.RetryBackoffFn(DefaultRetryBackoffFn), | 		kgo.RetryBackoffFn(DefaultRetryBackoffFn), | ||||||
| 		kgo.BlockRebalanceOnPoll(), | 		kgo.BlockRebalanceOnPoll(), | ||||||
| 		kgo.Balancers(kgo.CooperativeStickyBalancer()), | 		kgo.Balancers(kgo.CooperativeStickyBalancer()), | ||||||
| 		kgo.FetchIsolationLevel(kgo.ReadUncommitted()), | 		kgo.FetchIsolationLevel(kgo.ReadUncommitted()), | ||||||
| 		kgo.UnknownTopicRetries(1), |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if options.Context != nil { | 	if options.Context != nil { | ||||||
| @@ -558,9 +396,7 @@ func NewBroker(opts ...broker.Option) *Broker { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	return &Broker{ | 	return &Broker{ | ||||||
| 		connected: &atomic.Uint32{}, |  | ||||||
| 		opts:  options, | 		opts:  options, | ||||||
| 		kopts: kopts, | 		kopts: kopts, | ||||||
| 		done:      make(chan struct{}), |  | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										113
									
								
								kgo_test.go
									
									
									
									
									
								
							
							
						
						
									
										113
									
								
								kgo_test.go
									
									
									
									
									
								
							| @@ -2,6 +2,7 @@ package kgo_test | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  | 	"fmt" | ||||||
| 	"os" | 	"os" | ||||||
| 	"strings" | 	"strings" | ||||||
| 	"sync/atomic" | 	"sync/atomic" | ||||||
| @@ -9,18 +10,17 @@ import ( | |||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	kg "github.com/twmb/franz-go/pkg/kgo" | 	kg "github.com/twmb/franz-go/pkg/kgo" | ||||||
| 	kgo "go.unistack.org/micro-broker-kgo/v3" | 	kgo "go.unistack.org/micro-broker-kgo/v4" | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/logger/slog" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/metadata" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
| 	msgcnt   = int64(1200) | 	msgcnt   = int64(12000000) | ||||||
| 	group    = "38" | 	group    = "38" | ||||||
| 	prefill  = true | 	prefill  = false | ||||||
| 	loglevel = logger.DebugLevel | 	loglevel = logger.InfoLevel | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var bm = &broker.Message{ | var bm = &broker.Message{ | ||||||
| @@ -28,99 +28,7 @@ var bm = &broker.Message{ | |||||||
| 	Body:   []byte(`"body"`), | 	Body:   []byte(`"body"`), | ||||||
| } | } | ||||||
|  |  | ||||||
| func TestFail(t *testing.T) { |  | ||||||
| 	if tr := os.Getenv("INTEGRATION_TESTS"); len(tr) > 0 { |  | ||||||
| 		t.Skip() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	logger.DefaultLogger = slog.NewLogger() |  | ||||||
| 	if err := logger.DefaultLogger.Init(logger.WithLevel(loglevel)); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
| 	ctx := context.Background() |  | ||||||
|  |  | ||||||
| 	var addrs []string |  | ||||||
| 	if addr := os.Getenv("BROKER_ADDRS"); len(addr) == 0 { |  | ||||||
| 		addrs = []string{"127.0.0.1:9092"} |  | ||||||
| 	} else { |  | ||||||
| 		addrs = strings.Split(addr, ",") |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	b := kgo.NewBroker( |  | ||||||
| 		broker.Addrs(addrs...), |  | ||||||
| 		kgo.CommitInterval(5*time.Second), |  | ||||||
| 		kgo.Options(kg.ClientID("test"), kg.FetchMaxBytes(10*1024*1024), |  | ||||||
| 			kg.AllowAutoTopicCreation(), |  | ||||||
| 		), |  | ||||||
| 	) |  | ||||||
|  |  | ||||||
| 	t.Logf("broker init") |  | ||||||
| 	if err := b.Init(); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	t.Logf("broker connect") |  | ||||||
| 	if err := b.Connect(ctx); err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	defer func() { |  | ||||||
| 		t.Logf("broker disconnect") |  | ||||||
| 		if err := b.Disconnect(ctx); err != nil { |  | ||||||
| 			t.Fatal(err) |  | ||||||
| 		} |  | ||||||
| 	}() |  | ||||||
|  |  | ||||||
| 	t.Logf("broker health %v", b.Health()) |  | ||||||
| 	msgs := make([]*broker.Message, 0, msgcnt) |  | ||||||
| 	for i := int64(0); i < msgcnt; i++ { |  | ||||||
| 		msgs = append(msgs, bm) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	for _, msg := range msgs { |  | ||||||
| 		t.Logf("broker publish") |  | ||||||
| 		if err := b.Publish(ctx, "test", msg); err != nil { |  | ||||||
| 			t.Fatal(err) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	//	t.Skip() |  | ||||||
|  |  | ||||||
| 	idx := int64(0) |  | ||||||
| 	fn := func(msg broker.Event) error { |  | ||||||
| 		atomic.AddInt64(&idx, 1) |  | ||||||
| 		time.Sleep(500 * time.Millisecond) |  | ||||||
| 		t.Logf("ack") |  | ||||||
| 		return msg.Ack() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	sub, err := b.Subscribe(ctx, "test", fn, |  | ||||||
| 		broker.SubscribeAutoAck(true), |  | ||||||
| 		broker.SubscribeGroup(group), |  | ||||||
| 		broker.SubscribeBodyOnly(true)) |  | ||||||
| 	if err != nil { |  | ||||||
| 		t.Fatal(err) |  | ||||||
| 	} |  | ||||||
| 	defer func() { |  | ||||||
| 		if err := sub.Unsubscribe(ctx); err != nil { |  | ||||||
| 			t.Fatal(err) |  | ||||||
| 		} |  | ||||||
| 	}() |  | ||||||
|  |  | ||||||
| 	for { |  | ||||||
| 		t.Logf("health check") |  | ||||||
| 		if !b.Health() { |  | ||||||
| 			t.Logf("health works") |  | ||||||
| 			break |  | ||||||
| 		} |  | ||||||
| 		time.Sleep(1 * time.Second) |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func TestConnect(t *testing.T) { | func TestConnect(t *testing.T) { | ||||||
| 	if tr := os.Getenv("INTEGRATION_TESTS"); len(tr) > 0 { |  | ||||||
| 		t.Skip() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	var addrs []string | 	var addrs []string | ||||||
| 	ctx := context.TODO() | 	ctx := context.TODO() | ||||||
| 	b := kgo.NewBroker( | 	b := kgo.NewBroker( | ||||||
| @@ -142,7 +50,7 @@ func TestPubSub(t *testing.T) { | |||||||
| 		t.Skip() | 		t.Skip() | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := logger.DefaultLogger.Init(logger.WithLevel(loglevel)); err != nil { | 	if err := logger.DefaultLogger.Init(logger.WithLevel(loglevel), logger.WithCallerSkipCount(3)); err != nil { | ||||||
| 		t.Fatal(err) | 		t.Fatal(err) | ||||||
| 	} | 	} | ||||||
| 	ctx := context.Background() | 	ctx := context.Background() | ||||||
| @@ -159,7 +67,6 @@ func TestPubSub(t *testing.T) { | |||||||
| 		kgo.CommitInterval(5*time.Second), | 		kgo.CommitInterval(5*time.Second), | ||||||
| 		kgo.Options(kg.ClientID("test"), kg.FetchMaxBytes(10*1024*1024)), | 		kgo.Options(kg.ClientID("test"), kg.FetchMaxBytes(10*1024*1024)), | ||||||
| 	) | 	) | ||||||
|  |  | ||||||
| 	if err := b.Init(); err != nil { | 	if err := b.Init(); err != nil { | ||||||
| 		t.Fatal(err) | 		t.Fatal(err) | ||||||
| 	} | 	} | ||||||
| @@ -217,7 +124,7 @@ func TestPubSub(t *testing.T) { | |||||||
| 				if prc := atomic.LoadInt64(&idx); prc == msgcnt { | 				if prc := atomic.LoadInt64(&idx); prc == msgcnt { | ||||||
| 					close(done) | 					close(done) | ||||||
| 				} else { | 				} else { | ||||||
| 					t.Logf("processed %v\n", prc) | 					fmt.Printf("processed %v\n", prc) | ||||||
| 				} | 				} | ||||||
| 			case <-ticker.C: | 			case <-ticker.C: | ||||||
| 				close(done) | 				close(done) | ||||||
|   | |||||||
							
								
								
									
										14
									
								
								logger.go
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								logger.go
									
									
									
									
									
								
							| @@ -2,9 +2,10 @@ package kgo | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
|  | 	"fmt" | ||||||
|  |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" | 	"github.com/twmb/franz-go/pkg/kgo" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/logger" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type mlogger struct { | type mlogger struct { | ||||||
| @@ -28,8 +29,15 @@ func (l *mlogger) Log(lvl kgo.LogLevel, msg string, args ...interface{}) { | |||||||
| 	default: | 	default: | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
|  | 	if len(args) > 0 { | ||||||
| 	l.l.Log(l.ctx, mlvl, msg, args...) | 		fields := make(map[string]interface{}, int(len(args)/2)) | ||||||
|  | 		for i := 0; i <= len(args)/2; i += 2 { | ||||||
|  | 			fields[fmt.Sprintf("%v", args[i])] = args[i+1] | ||||||
|  | 		} | ||||||
|  | 		l.l.Fields(fields).Log(l.ctx, mlvl, msg) | ||||||
|  | 	} else { | ||||||
|  | 		l.l.Log(l.ctx, mlvl, msg) | ||||||
|  | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (l *mlogger) Level() kgo.LogLevel { | func (l *mlogger) Level() kgo.LogLevel { | ||||||
|   | |||||||
							
								
								
									
										120
									
								
								meter.go
									
									
									
									
									
								
							
							
						
						
									
										120
									
								
								meter.go
									
									
									
									
									
								
							| @@ -1,120 +0,0 @@ | |||||||
| package kgo |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"net" |  | ||||||
| 	"strconv" |  | ||||||
| 	"time" |  | ||||||
|  |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" |  | ||||||
| 	"go.unistack.org/micro/v3/meter" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type hookMeter struct { |  | ||||||
| 	meter meter.Meter |  | ||||||
| } |  | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	_ kgo.HookBrokerConnect    = &hookMeter{} |  | ||||||
| 	_ kgo.HookBrokerDisconnect = &hookMeter{} |  | ||||||
| 	// HookBrokerE2E |  | ||||||
| 	_ kgo.HookBrokerRead     = &hookMeter{} |  | ||||||
| 	_ kgo.HookBrokerThrottle = &hookMeter{} |  | ||||||
| 	_ kgo.HookBrokerWrite    = &hookMeter{} |  | ||||||
| 	_ kgo.HookFetchBatchRead = &hookMeter{} |  | ||||||
| 	// HookFetchRecordBuffered |  | ||||||
| 	// HookFetchRecordUnbuffered |  | ||||||
| 	_ kgo.HookGroupManageError = &hookMeter{} |  | ||||||
| 	// HookNewClient |  | ||||||
| 	_ kgo.HookProduceBatchWritten = &hookMeter{} |  | ||||||
| 	// HookProduceRecordBuffered |  | ||||||
| 	// HookProduceRecordPartitioned |  | ||||||
| 	// HookProduceRecordUnbuffered |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| const ( |  | ||||||
| 	metricBrokerConnects    = "micro_broker_connects_total" |  | ||||||
| 	metricBrokerDisconnects = "micro_broker_disconnects_total" |  | ||||||
|  |  | ||||||
| 	metricBrokerWriteErrors        = "micro_broker_write_errors_total" |  | ||||||
| 	metricBrokerWriteBytes         = "micro_broker_write_bytes_total" |  | ||||||
| 	metricBrokerWriteWaitLatencies = "micro_broker_write_wait_latencies" |  | ||||||
| 	metricBrokerWriteLatencies     = "micro_broker_write_latencies" |  | ||||||
|  |  | ||||||
| 	metricBrokerReadErrors        = "micro_broker_read_errors_total" |  | ||||||
| 	metricBrokerReadBytes         = "micro_broker_read_bytes_total" |  | ||||||
| 	metricBrokerReadWaitLatencies = "micro_broker_read_wait_latencies" |  | ||||||
| 	metricBrokerReadLatencies     = "micro_broker_read_latencies" |  | ||||||
|  |  | ||||||
| 	metricBrokerThrottleLatencies = "micro_broker_throttle_latencies" |  | ||||||
|  |  | ||||||
| 	metricBrokerProduceBytesCompressed   = "micro_broker_produce_bytes_compressed_total" |  | ||||||
| 	metricBrokerProduceBytesUncompressed = "micro_broker_produce_bytes_uncompressed_total" |  | ||||||
| 	metricBrokerFetchBytesCompressed     = "micro_broker_consume_bytes_compressed_total" |  | ||||||
| 	metricBrokerFetchBytesUncompressed   = "micro_broker_consume_bytes_uncompressed_total" |  | ||||||
|  |  | ||||||
| 	metricBrokerGroupErrors = "micro_broker_group_errors_total" |  | ||||||
|  |  | ||||||
| 	labelNode    = "node_id" |  | ||||||
| 	labelSuccess = "success" |  | ||||||
| 	labelFaulure = "failure" |  | ||||||
| 	labelStatus  = "status" |  | ||||||
| 	labelTopic   = "topic" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnGroupManageError(_ error) { |  | ||||||
| 	m.meter.Counter(metricBrokerGroupErrors).Inc() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnBrokerConnect(meta kgo.BrokerMetadata, _ time.Duration, _ net.Conn, err error) { |  | ||||||
| 	node := strconv.Itoa(int(meta.NodeID)) |  | ||||||
| 	if err != nil { |  | ||||||
| 		m.meter.Counter(metricBrokerConnects, labelNode, node, labelStatus, labelFaulure).Inc() |  | ||||||
| 		return |  | ||||||
| 	} |  | ||||||
| 	m.meter.Counter(metricBrokerConnects, labelNode, node, labelStatus, labelSuccess).Inc() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnBrokerDisconnect(meta kgo.BrokerMetadata, _ net.Conn) { |  | ||||||
| 	node := strconv.Itoa(int(meta.NodeID)) |  | ||||||
| 	m.meter.Counter(metricBrokerDisconnects, labelNode, node).Inc() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnBrokerWrite(meta kgo.BrokerMetadata, _ int16, bytesWritten int, writeWait, timeToWrite time.Duration, err error) { |  | ||||||
| 	node := strconv.Itoa(int(meta.NodeID)) |  | ||||||
| 	if err != nil { |  | ||||||
| 		m.meter.Counter(metricBrokerWriteErrors, labelNode, node).Inc() |  | ||||||
| 		return |  | ||||||
| 	} |  | ||||||
| 	m.meter.Counter(metricBrokerWriteBytes, labelNode, node).Add(bytesWritten) |  | ||||||
| 	m.meter.Histogram(metricBrokerWriteWaitLatencies, labelNode, node).Update(writeWait.Seconds()) |  | ||||||
| 	m.meter.Histogram(metricBrokerWriteLatencies, labelNode, node).Update(timeToWrite.Seconds()) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnBrokerRead(meta kgo.BrokerMetadata, _ int16, bytesRead int, readWait, timeToRead time.Duration, err error) { |  | ||||||
| 	node := strconv.Itoa(int(meta.NodeID)) |  | ||||||
| 	if err != nil { |  | ||||||
| 		m.meter.Counter(metricBrokerReadErrors, labelNode, node).Inc() |  | ||||||
| 		return |  | ||||||
| 	} |  | ||||||
| 	m.meter.Counter(metricBrokerReadBytes, labelNode, node).Add(bytesRead) |  | ||||||
|  |  | ||||||
| 	m.meter.Histogram(metricBrokerReadWaitLatencies, labelNode, node).Update(readWait.Seconds()) |  | ||||||
| 	m.meter.Histogram(metricBrokerReadLatencies, labelNode, node).Update(timeToRead.Seconds()) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnBrokerThrottle(meta kgo.BrokerMetadata, throttleInterval time.Duration, _ bool) { |  | ||||||
| 	node := strconv.Itoa(int(meta.NodeID)) |  | ||||||
| 	m.meter.Histogram(metricBrokerThrottleLatencies, labelNode, node).Update(throttleInterval.Seconds()) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnProduceBatchWritten(meta kgo.BrokerMetadata, topic string, _ int32, kmetrics kgo.ProduceBatchMetrics) { |  | ||||||
| 	node := strconv.Itoa(int(meta.NodeID)) |  | ||||||
| 	m.meter.Counter(metricBrokerProduceBytesUncompressed, labelNode, node, labelTopic, topic).Add(kmetrics.UncompressedBytes) |  | ||||||
| 	m.meter.Counter(metricBrokerProduceBytesCompressed, labelNode, node, labelTopic, topic).Add(kmetrics.CompressedBytes) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (m *hookMeter) OnFetchBatchRead(meta kgo.BrokerMetadata, topic string, _ int32, kmetrics kgo.FetchBatchMetrics) { |  | ||||||
| 	node := strconv.Itoa(int(meta.NodeID)) |  | ||||||
| 	m.meter.Counter(metricBrokerFetchBytesUncompressed, labelNode, node, labelTopic, topic).Add(kmetrics.UncompressedBytes) |  | ||||||
| 	m.meter.Counter(metricBrokerFetchBytesCompressed, labelNode, node, labelTopic, topic).Add(kmetrics.CompressedBytes) |  | ||||||
| } |  | ||||||
							
								
								
									
										148
									
								
								metrics.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										148
									
								
								metrics.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,148 @@ | |||||||
|  | package kgo | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"net" | ||||||
|  | 	"strconv" | ||||||
|  | 	"time" | ||||||
|  |  | ||||||
|  | 	"github.com/twmb/franz-go/pkg/kgo" | ||||||
|  | 	"go.unistack.org/micro/v4/meter" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | /* | ||||||
|  | 	func NewServerSubscriberWrapper(opts ...Option) server.SubscriberWrapper { | ||||||
|  | 		handler := &wrapper{ | ||||||
|  | 			opts: NewOptions(opts...), | ||||||
|  | 		} | ||||||
|  | 		return handler.SubscriberFunc | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	func (w *wrapper) SubscriberFunc(fn server.SubscriberFunc) server.SubscriberFunc { | ||||||
|  | 		return func(ctx context.Context, msg server.Message) error { | ||||||
|  | 			endpoint := msg.Topic() | ||||||
|  |  | ||||||
|  | 			labels := make([]string, 0, 4) | ||||||
|  | 			labels = append(labels, labelEndpoint, endpoint) | ||||||
|  |  | ||||||
|  | 			w.opts.Meter.Counter(SubscribeMessageInflight, labels...).Inc() | ||||||
|  | 			ts := time.Now() | ||||||
|  | 			err := fn(ctx, msg) | ||||||
|  | 			te := time.Since(ts) | ||||||
|  | 			w.opts.Meter.Counter(SubscribeMessageInflight, labels...).Dec() | ||||||
|  |  | ||||||
|  | 			w.opts.Meter.Summary(SubscribeMessageLatencyMicroseconds, labels...).Update(te.Seconds()) | ||||||
|  | 			w.opts.Meter.Histogram(SubscribeMessageDurationSeconds, labels...).Update(te.Seconds()) | ||||||
|  |  | ||||||
|  | 			if err == nil { | ||||||
|  | 				labels = append(labels, labelStatus, labelSuccess) | ||||||
|  | 			} else { | ||||||
|  | 				labels = append(labels, labelStatus, labelFailure) | ||||||
|  | 			} | ||||||
|  | 			w.opts.Meter.Counter(SubscribeMessageTotal, labels...).Inc() | ||||||
|  |  | ||||||
|  | 			return err | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | */ | ||||||
|  | type metrics struct { | ||||||
|  | 	meter meter.Meter | ||||||
|  | } | ||||||
|  |  | ||||||
|  | var ( | ||||||
|  | 	_ kgo.HookBrokerConnect       = &metrics{} | ||||||
|  | 	_ kgo.HookBrokerDisconnect    = &metrics{} | ||||||
|  | 	_ kgo.HookBrokerRead          = &metrics{} | ||||||
|  | 	_ kgo.HookBrokerThrottle      = &metrics{} | ||||||
|  | 	_ kgo.HookBrokerWrite         = &metrics{} | ||||||
|  | 	_ kgo.HookFetchBatchRead      = &metrics{} | ||||||
|  | 	_ kgo.HookProduceBatchWritten = &metrics{} | ||||||
|  | 	_ kgo.HookGroupManageError    = &metrics{} | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | const ( | ||||||
|  | 	metricBrokerConnects    = "broker_connects_total" | ||||||
|  | 	metricBrokerDisconnects = "broker_disconnects_total" | ||||||
|  |  | ||||||
|  | 	metricBrokerWriteErrors        = "broker_write_errors_total" | ||||||
|  | 	metricBrokerWriteBytes         = "broker_write_bytes_total" | ||||||
|  | 	metricBrokerWriteWaitLatencies = "broker_write_wait_latencies" | ||||||
|  | 	metricBrokerWriteLatencies     = "broker_write_latencies" | ||||||
|  |  | ||||||
|  | 	metricBrokerReadErrors        = "broker_read_errors_total" | ||||||
|  | 	metricBrokerReadBytes         = "broker_read_bytes_total" | ||||||
|  | 	metricBrokerReadWaitLatencies = "broker_read_wait_latencies" | ||||||
|  | 	metricBrokerReadLatencies     = "broker_read_latencies" | ||||||
|  |  | ||||||
|  | 	metricBrokerThrottleLatencies = "broker_throttle_latencies" | ||||||
|  |  | ||||||
|  | 	metricBrokerProduceBytesCompressed   = "broker_produce_bytes_compressed_total" | ||||||
|  | 	metricBrokerProduceBytesUncompressed = "broker_produce_bytes_uncompressed_total" | ||||||
|  | 	metricBrokerFetchBytesCompressed     = "broker_consume_bytes_compressed_total" | ||||||
|  | 	metricBrokerFetchBytesUncompressed   = "broker_consume_bytes_uncompressed_total" | ||||||
|  |  | ||||||
|  | 	metricBrokerGroupErrors = "broker_group_errors_total" | ||||||
|  |  | ||||||
|  | 	labelNode    = "node_id" | ||||||
|  | 	labelSuccess = "success" | ||||||
|  | 	labelFaulure = "failure" | ||||||
|  | 	labelStatus  = "status" | ||||||
|  | 	labelTopic   = "topic" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | func (m *metrics) OnGroupManageError(err error) { | ||||||
|  | 	m.meter.Counter(metricBrokerGroupErrors).Inc() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *metrics) OnBrokerConnect(meta kgo.BrokerMetadata, _ time.Duration, _ net.Conn, err error) { | ||||||
|  | 	node := strconv.Itoa(int(meta.NodeID)) | ||||||
|  | 	if err != nil { | ||||||
|  | 		m.meter.Counter(metricBrokerConnects, labelNode, node, labelStatus, labelFaulure).Inc() | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  | 	m.meter.Counter(metricBrokerConnects, labelNode, node, labelStatus, labelSuccess).Inc() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *metrics) OnBrokerDisconnect(meta kgo.BrokerMetadata, _ net.Conn) { | ||||||
|  | 	node := strconv.Itoa(int(meta.NodeID)) | ||||||
|  | 	m.meter.Counter(metricBrokerDisconnects, labelNode, node).Inc() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *metrics) OnBrokerWrite(meta kgo.BrokerMetadata, _ int16, bytesWritten int, writeWait, timeToWrite time.Duration, err error) { | ||||||
|  | 	node := strconv.Itoa(int(meta.NodeID)) | ||||||
|  | 	if err != nil { | ||||||
|  | 		m.meter.Counter(metricBrokerWriteErrors, labelNode, node).Inc() | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  | 	m.meter.Counter(metricBrokerWriteBytes, labelNode, node).Add(bytesWritten) | ||||||
|  | 	m.meter.Histogram(metricBrokerWriteWaitLatencies, labelNode, node).Update(writeWait.Seconds()) | ||||||
|  | 	m.meter.Histogram(metricBrokerWriteLatencies, labelNode, node).Update(timeToWrite.Seconds()) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *metrics) OnBrokerRead(meta kgo.BrokerMetadata, _ int16, bytesRead int, readWait, timeToRead time.Duration, err error) { | ||||||
|  | 	node := strconv.Itoa(int(meta.NodeID)) | ||||||
|  | 	if err != nil { | ||||||
|  | 		m.meter.Counter(metricBrokerReadErrors, labelNode, node).Inc() | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  | 	m.meter.Counter(metricBrokerReadBytes, labelNode, node).Add(bytesRead) | ||||||
|  |  | ||||||
|  | 	m.meter.Histogram(metricBrokerReadWaitLatencies, labelNode, node).Update(readWait.Seconds()) | ||||||
|  | 	m.meter.Histogram(metricBrokerReadLatencies, labelNode, node).Update(timeToRead.Seconds()) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *metrics) OnBrokerThrottle(meta kgo.BrokerMetadata, throttleInterval time.Duration, _ bool) { | ||||||
|  | 	node := strconv.Itoa(int(meta.NodeID)) | ||||||
|  | 	m.meter.Histogram(metricBrokerThrottleLatencies, labelNode, node).Update(throttleInterval.Seconds()) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *metrics) OnProduceBatchWritten(meta kgo.BrokerMetadata, topic string, _ int32, kmetrics kgo.ProduceBatchMetrics) { | ||||||
|  | 	node := strconv.Itoa(int(meta.NodeID)) | ||||||
|  | 	m.meter.Counter(metricBrokerProduceBytesUncompressed, labelNode, node, labelTopic, topic).Add(kmetrics.UncompressedBytes) | ||||||
|  | 	m.meter.Counter(metricBrokerProduceBytesCompressed, labelNode, node, labelTopic, topic).Add(kmetrics.CompressedBytes) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *metrics) OnFetchBatchRead(meta kgo.BrokerMetadata, topic string, _ int32, kmetrics kgo.FetchBatchMetrics) { | ||||||
|  | 	node := strconv.Itoa(int(meta.NodeID)) | ||||||
|  | 	m.meter.Counter(metricBrokerFetchBytesUncompressed, labelNode, node, labelTopic, topic).Add(kmetrics.UncompressedBytes) | ||||||
|  | 	m.meter.Counter(metricBrokerFetchBytesCompressed, labelNode, node, labelTopic, topic).Add(kmetrics.CompressedBytes) | ||||||
|  | } | ||||||
							
								
								
									
										49
									
								
								options.go
									
									
									
									
									
								
							
							
						
						
									
										49
									
								
								options.go
									
									
									
									
									
								
							| @@ -5,21 +5,12 @@ import ( | |||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" | 	"github.com/twmb/franz-go/pkg/kgo" | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/client" | 	"go.unistack.org/micro/v4/client" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( | // DefaultCommitInterval specifies how fast send commit offsets to kafka | ||||||
|  | var DefaultCommitInterval = 5 * time.Second | ||||||
| 	// DefaultCommitInterval specifies how fast send commit offsets to kafka |  | ||||||
| 	DefaultCommitInterval = 5 * time.Second |  | ||||||
|  |  | ||||||
| 	// DefaultStatsInterval specifies how fast check consumer lag |  | ||||||
| 	DefaultStatsInterval = 30 * time.Second |  | ||||||
|  |  | ||||||
| 	// DefaultSubscribeMaxInflight specifies how much messages keep inflight |  | ||||||
| 	DefaultSubscribeMaxInflight = 100 |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type subscribeContextKey struct{} | type subscribeContextKey struct{} | ||||||
|  |  | ||||||
| @@ -72,24 +63,6 @@ func SubscribeOptions(opts ...kgo.Opt) broker.SubscribeOption { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| type fatalOnErrorKey struct{} |  | ||||||
|  |  | ||||||
| func FatalOnError(b bool) broker.Option { |  | ||||||
| 	return broker.SetOption(fatalOnErrorKey{}, b) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type clientIDKey struct{} |  | ||||||
|  |  | ||||||
| func ClientID(id string) broker.Option { |  | ||||||
| 	return broker.SetOption(clientIDKey{}, id) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type groupKey struct{} |  | ||||||
|  |  | ||||||
| func Group(id string) broker.Option { |  | ||||||
| 	return broker.SetOption(groupKey{}, id) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type commitIntervalKey struct{} | type commitIntervalKey struct{} | ||||||
|  |  | ||||||
| // CommitInterval specifies interval to send commits | // CommitInterval specifies interval to send commits | ||||||
| @@ -97,6 +70,8 @@ func CommitInterval(td time.Duration) broker.Option { | |||||||
| 	return broker.SetOption(commitIntervalKey{}, td) | 	return broker.SetOption(commitIntervalKey{}, td) | ||||||
| } | } | ||||||
|  |  | ||||||
|  | var DefaultSubscribeMaxInflight = 10 | ||||||
|  |  | ||||||
| type subscribeMaxInflightKey struct{} | type subscribeMaxInflightKey struct{} | ||||||
|  |  | ||||||
| // SubscribeMaxInFlight max queued messages | // SubscribeMaxInFlight max queued messages | ||||||
| @@ -104,11 +79,6 @@ func SubscribeMaxInFlight(n int) broker.SubscribeOption { | |||||||
| 	return broker.SetSubscribeOption(subscribeMaxInflightKey{}, n) | 	return broker.SetSubscribeOption(subscribeMaxInflightKey{}, n) | ||||||
| } | } | ||||||
|  |  | ||||||
| // SubscribeMaxInFlight max queued messages |  | ||||||
| func SubscribeFatalOnError(b bool) broker.SubscribeOption { |  | ||||||
| 	return broker.SetSubscribeOption(fatalOnErrorKey{}, b) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| type publishPromiseKey struct{} | type publishPromiseKey struct{} | ||||||
|  |  | ||||||
| // PublishPromise set the kafka promise func for Produce | // PublishPromise set the kafka promise func for Produce | ||||||
| @@ -120,10 +90,3 @@ func PublishPromise(fn func(*kgo.Record, error)) broker.PublishOption { | |||||||
| func ClientPublishPromise(fn func(*kgo.Record, error)) client.PublishOption { | func ClientPublishPromise(fn func(*kgo.Record, error)) client.PublishOption { | ||||||
| 	return client.SetPublishOption(publishPromiseKey{}, fn) | 	return client.SetPublishOption(publishPromiseKey{}, fn) | ||||||
| } | } | ||||||
|  |  | ||||||
| type exposeLagKey struct{} |  | ||||||
|  |  | ||||||
| // ExposeLag enabled subscriber lag via [meter.Meter] |  | ||||||
| func ExposeLag(b bool) broker.Option { |  | ||||||
| 	return broker.SetOption(exposeLagKey{}, b) |  | ||||||
| } |  | ||||||
|   | |||||||
							
								
								
									
										227
									
								
								subscriber.go
									
									
									
									
									
								
							
							
						
						
									
										227
									
								
								subscriber.go
									
									
									
									
									
								
							| @@ -2,19 +2,13 @@ package kgo | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"fmt" |  | ||||||
| 	"strconv" |  | ||||||
| 	"sync" | 	"sync" | ||||||
| 	"sync/atomic" |  | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" | 	"github.com/twmb/franz-go/pkg/kgo" | ||||||
| 	"github.com/twmb/franz-go/pkg/kmsg" | 	"go.unistack.org/micro/v4/broker" | ||||||
| 	"go.unistack.org/micro/v3/broker" | 	"go.unistack.org/micro/v4/logger" | ||||||
| 	"go.unistack.org/micro/v3/logger" | 	"go.unistack.org/micro/v4/metadata" | ||||||
| 	"go.unistack.org/micro/v3/metadata" |  | ||||||
| 	"go.unistack.org/micro/v3/semconv" |  | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type tp struct { | type tp struct { | ||||||
| @@ -23,65 +17,46 @@ type tp struct { | |||||||
| } | } | ||||||
|  |  | ||||||
| type consumer struct { | type consumer struct { | ||||||
| 	topic string |  | ||||||
|  |  | ||||||
| 	c         *kgo.Client | 	c         *kgo.Client | ||||||
| 	htracer   *hookTracer | 	topic     string | ||||||
| 	connected *atomic.Uint32 | 	partition int32 | ||||||
|  | 	opts      broker.SubscribeOptions | ||||||
|  | 	kopts     broker.Options | ||||||
|  | 	handler   broker.Handler | ||||||
| 	quit      chan struct{} | 	quit      chan struct{} | ||||||
| 	done      chan struct{} | 	done      chan struct{} | ||||||
| 	recs      chan kgo.FetchTopicPartition | 	recs      chan kgo.FetchTopicPartition | ||||||
|  |  | ||||||
| 	handler broker.Handler |  | ||||||
|  |  | ||||||
| 	kopts broker.Options |  | ||||||
| 	opts  broker.SubscribeOptions |  | ||||||
|  |  | ||||||
| 	partition int32 |  | ||||||
| } | } | ||||||
|  |  | ||||||
| type Subscriber struct { | type subscriber struct { | ||||||
| 	topic string |  | ||||||
|  |  | ||||||
| 	consumers map[tp]*consumer |  | ||||||
|  |  | ||||||
| 	c         *kgo.Client | 	c         *kgo.Client | ||||||
| 	htracer   *hookTracer | 	topic     string | ||||||
| 	connected *atomic.Uint32 |  | ||||||
|  |  | ||||||
| 	handler broker.Handler |  | ||||||
|  |  | ||||||
| 	done chan struct{} |  | ||||||
|  |  | ||||||
| 	kopts broker.Options |  | ||||||
| 	opts      broker.SubscribeOptions | 	opts      broker.SubscribeOptions | ||||||
|  | 	kopts     broker.Options | ||||||
|  | 	handler   broker.Handler | ||||||
| 	closed    bool | 	closed    bool | ||||||
| 	fatalOnError bool | 	done      chan struct{} | ||||||
|  | 	consumers map[tp]*consumer | ||||||
| 	sync.RWMutex | 	sync.RWMutex | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) Client() *kgo.Client { | func (s *subscriber) Options() broker.SubscribeOptions { | ||||||
| 	return s.c |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (s *Subscriber) Options() broker.SubscribeOptions { |  | ||||||
| 	return s.opts | 	return s.opts | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) Topic() string { | func (s *subscriber) Topic() string { | ||||||
| 	return s.topic | 	return s.topic | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) Unsubscribe(ctx context.Context) error { | func (s *subscriber) Unsubscribe(ctx context.Context) error { | ||||||
| 	if s.closed { | 	if s.closed { | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  | 	select { | ||||||
|  | 	case <-ctx.Done(): | ||||||
|  | 		return ctx.Err() | ||||||
|  | 	default: | ||||||
| 		s.c.PauseFetchTopics(s.topic) | 		s.c.PauseFetchTopics(s.topic) | ||||||
| 	s.c.CloseAllowingRebalance() |  | ||||||
| 		kc := make(map[string][]int32) | 		kc := make(map[string][]int32) | ||||||
| 		for ctp := range s.consumers { | 		for ctp := range s.consumers { | ||||||
| 			kc[ctp.t] = append(kc[ctp.t], ctp.p) | 			kc[ctp.t] = append(kc[ctp.t], ctp.p) | ||||||
| @@ -89,26 +64,24 @@ func (s *Subscriber) Unsubscribe(ctx context.Context) error { | |||||||
| 		s.killConsumers(ctx, kc) | 		s.killConsumers(ctx, kc) | ||||||
| 		close(s.done) | 		close(s.done) | ||||||
| 		s.closed = true | 		s.closed = true | ||||||
| 	s.c.ResumeFetchTopics(s.topic) | 	} | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) poll(ctx context.Context) { | func (s *subscriber) poll(ctx context.Context) { | ||||||
| 	maxInflight := DefaultSubscribeMaxInflight | 	maxInflight := DefaultSubscribeMaxInflight | ||||||
|  |  | ||||||
| 	if s.opts.Context != nil { | 	if s.opts.Context != nil { | ||||||
| 		if n, ok := s.opts.Context.Value(subscribeMaxInflightKey{}).(int); n > 0 && ok { | 		if n, ok := s.opts.Context.Value(subscribeMaxInflightKey{}).(int); n > 0 && ok { | ||||||
| 			maxInflight = n | 			maxInflight = n | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	for { | 	for { | ||||||
| 		select { | 		select { | ||||||
| 		case <-ctx.Done(): | 		case <-ctx.Done(): | ||||||
| 			s.c.CloseAllowingRebalance() | 			s.c.CloseAllowingRebalance() | ||||||
| 			return | 			return | ||||||
| 		case <-s.done: | 		case <-s.done: | ||||||
|  | 			s.c.CloseAllowingRebalance() | ||||||
| 			return | 			return | ||||||
| 		default: | 		default: | ||||||
| 			fetches := s.c.PollRecords(ctx, maxInflight) | 			fetches := s.c.PollRecords(ctx, maxInflight) | ||||||
| @@ -117,91 +90,64 @@ func (s *Subscriber) poll(ctx context.Context) { | |||||||
| 				return | 				return | ||||||
| 			} | 			} | ||||||
| 			fetches.EachError(func(t string, p int32, err error) { | 			fetches.EachError(func(t string, p int32, err error) { | ||||||
| 				if kgo.IsRetryableBrokerErr(err) { | 				s.kopts.Logger.Fatalf(ctx, "[kgo] fetch topic %s partition %d err: %v", t, p, err) | ||||||
| 					s.kopts.Logger.Error(ctx, fmt.Sprintf("[kgo] fetch topic %s partition %d error", t, p), err) |  | ||||||
| 				} else { |  | ||||||
| 					s.kopts.Logger.Fatal(ctx, fmt.Sprintf("[kgo] fetch topic %s partition %d error", t, p), err) |  | ||||||
| 				} |  | ||||||
| 			}) | 			}) | ||||||
|  |  | ||||||
| 			fetches.EachPartition(func(p kgo.FetchTopicPartition) { | 			fetches.EachPartition(func(p kgo.FetchTopicPartition) { | ||||||
| 				tps := tp{p.Topic, p.Partition} | 				tp := tp{p.Topic, p.Partition} | ||||||
| 				s.consumers[tps].recs <- p | 				s.consumers[tp].recs <- p | ||||||
| 			}) | 			}) | ||||||
| 			s.c.AllowRebalance() | 			s.c.AllowRebalance() | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) killConsumers(ctx context.Context, lost map[string][]int32) { | func (s *subscriber) killConsumers(ctx context.Context, lost map[string][]int32) { | ||||||
| 	var wg sync.WaitGroup | 	var wg sync.WaitGroup | ||||||
| 	defer wg.Wait() | 	defer wg.Wait() | ||||||
|  |  | ||||||
| 	for topic, partitions := range lost { | 	for topic, partitions := range lost { | ||||||
| 		for _, partition := range partitions { | 		for _, partition := range partitions { | ||||||
| 			tps := tp{topic, partition} | 			tp := tp{topic, partition} | ||||||
| 			pc, ok := s.consumers[tps] | 			pc := s.consumers[tp] | ||||||
| 			if !ok { | 			delete(s.consumers, tp) | ||||||
| 				continue |  | ||||||
| 			} |  | ||||||
| 			delete(s.consumers, tps) |  | ||||||
| 			close(pc.quit) | 			close(pc.quit) | ||||||
| 			if s.kopts.Logger.V(logger.DebugLevel) { | 			s.kopts.Logger.Debugf(ctx, "[kgo] waiting for work to finish topic %s partition %d", topic, partition) | ||||||
| 				s.kopts.Logger.Debug(ctx, fmt.Sprintf("[kgo] waiting for work to finish topic %s partition %d", topic, partition)) |  | ||||||
| 			} |  | ||||||
| 			wg.Add(1) | 			wg.Add(1) | ||||||
| 			go func() { <-pc.done; wg.Done() }() | 			go func() { <-pc.done; wg.Done() }() | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) autocommit(_ *kgo.Client, _ *kmsg.OffsetCommitRequest, _ *kmsg.OffsetCommitResponse, err error) { | func (s *subscriber) lost(ctx context.Context, _ *kgo.Client, lost map[string][]int32) { | ||||||
| 	if err != nil { | 	s.kopts.Logger.Debugf(ctx, "[kgo] lost %#+v", lost) | ||||||
| 		//		s.connected.Store(0) |  | ||||||
| 		if s.fatalOnError { |  | ||||||
| 			s.kopts.Logger.Fatal(context.TODO(), "kgo.AutoCommitCallback error", err) |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func (s *Subscriber) lost(ctx context.Context, _ *kgo.Client, lost map[string][]int32) { |  | ||||||
| 	if s.kopts.Logger.V(logger.ErrorLevel) { |  | ||||||
| 		s.kopts.Logger.Error(ctx, fmt.Sprintf("[kgo] lost %#+v", lost)) |  | ||||||
| 	} |  | ||||||
| 	s.killConsumers(ctx, lost) | 	s.killConsumers(ctx, lost) | ||||||
| 	// s.connected.Store(0) |  | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) revoked(ctx context.Context, c *kgo.Client, revoked map[string][]int32) { | func (s *subscriber) revoked(ctx context.Context, c *kgo.Client, revoked map[string][]int32) { | ||||||
| 	if s.kopts.Logger.V(logger.DebugLevel) { | 	s.kopts.Logger.Debugf(ctx, "[kgo] revoked %#+v", revoked) | ||||||
| 		s.kopts.Logger.Debug(ctx, fmt.Sprintf("[kgo] revoked %#+v", revoked)) |  | ||||||
| 	} |  | ||||||
| 	s.killConsumers(ctx, revoked) | 	s.killConsumers(ctx, revoked) | ||||||
| 	if err := c.CommitMarkedOffsets(ctx); err != nil { | 	if err := c.CommitMarkedOffsets(ctx); err != nil { | ||||||
| 		s.kopts.Logger.Error(ctx, "[kgo] revoked CommitMarkedOffsets error", err) | 		s.kopts.Logger.Errorf(ctx, "[kgo] revoked CommitMarkedOffsets err: %v", err) | ||||||
| 		// s.connected.Store(0) |  | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (s *Subscriber) assigned(_ context.Context, c *kgo.Client, assigned map[string][]int32) { | func (s *subscriber) assigned(_ context.Context, c *kgo.Client, assigned map[string][]int32) { | ||||||
| 	for topic, partitions := range assigned { | 	for topic, partitions := range assigned { | ||||||
| 		for _, partition := range partitions { | 		for _, partition := range partitions { | ||||||
| 			pc := &consumer{ | 			pc := &consumer{ | ||||||
| 				c:         c, | 				c:         c, | ||||||
| 				topic:     topic, | 				topic:     topic, | ||||||
| 				partition: partition, | 				partition: partition, | ||||||
| 				htracer:   s.htracer, |  | ||||||
| 				quit:    make(chan struct{}), | 				quit:    make(chan struct{}), | ||||||
| 				done:    make(chan struct{}), | 				done:    make(chan struct{}), | ||||||
| 				recs:      make(chan kgo.FetchTopicPartition, 100), | 				recs:    make(chan kgo.FetchTopicPartition, 4), | ||||||
| 				handler: s.handler, | 				handler: s.handler, | ||||||
| 				kopts:   s.kopts, | 				kopts:   s.kopts, | ||||||
| 				opts:    s.opts, | 				opts:    s.opts, | ||||||
| 				connected: s.connected, |  | ||||||
| 			} | 			} | ||||||
| 			s.Lock() |  | ||||||
| 			s.consumers[tp{topic, partition}] = pc | 			s.consumers[tp{topic, partition}] = pc | ||||||
| 			s.Unlock() |  | ||||||
| 			go pc.consume() | 			go pc.consume() | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| @@ -209,10 +155,8 @@ func (s *Subscriber) assigned(_ context.Context, c *kgo.Client, assigned map[str | |||||||
|  |  | ||||||
| func (pc *consumer) consume() { | func (pc *consumer) consume() { | ||||||
| 	defer close(pc.done) | 	defer close(pc.done) | ||||||
| 	if pc.kopts.Logger.V(logger.DebugLevel) { | 	pc.kopts.Logger.Debugf(pc.kopts.Context, "starting, topic %s partition %d", pc.topic, pc.partition) | ||||||
| 		pc.kopts.Logger.Debug(pc.kopts.Context, fmt.Sprintf("starting, topic %s partition %d", pc.topic, pc.partition)) | 	defer pc.kopts.Logger.Debugf(pc.kopts.Context, "killing, topic %s partition %d", pc.topic, pc.partition) | ||||||
| 		defer pc.kopts.Logger.Debug(pc.kopts.Context, fmt.Sprintf("killing, topic %s partition %d", pc.topic, pc.partition)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	eh := pc.kopts.ErrorHandler | 	eh := pc.kopts.ErrorHandler | ||||||
| 	if pc.opts.ErrorHandler != nil { | 	if pc.opts.ErrorHandler != nil { | ||||||
| @@ -225,129 +169,86 @@ func (pc *consumer) consume() { | |||||||
| 			return | 			return | ||||||
| 		case p := <-pc.recs: | 		case p := <-pc.recs: | ||||||
| 			for _, record := range p.Records { | 			for _, record := range p.Records { | ||||||
| 				ctx, sp := pc.htracer.WithProcessSpan(record) |  | ||||||
| 				ts := time.Now() | 				ts := time.Now() | ||||||
| 				pc.kopts.Meter.Counter(semconv.SubscribeMessageInflight, "endpoint", record.Topic, "topic", record.Topic).Inc() | 				pc.kopts.Meter.Counter(broker.SubscribeMessageInflight, "endpoint", record.Topic).Inc() | ||||||
| 				p := eventPool.Get().(*event) | 				p := eventPool.Get().(*event) | ||||||
| 				p.msg.Header = nil | 				p.msg.Header = nil | ||||||
| 				p.msg.Body = nil | 				p.msg.Body = nil | ||||||
| 				p.topic = record.Topic | 				p.topic = record.Topic | ||||||
| 				p.err = nil | 				p.err = nil | ||||||
| 				p.ack = false | 				p.ack = false | ||||||
|  | 				if pc.kopts.Codec.String() == "noop" { | ||||||
| 					p.msg.Header = metadata.New(len(record.Headers)) | 					p.msg.Header = metadata.New(len(record.Headers)) | ||||||
| 				p.ctx = ctx |  | ||||||
| 					for _, hdr := range record.Headers { | 					for _, hdr := range record.Headers { | ||||||
| 						p.msg.Header.Set(hdr.Key, string(hdr.Value)) | 						p.msg.Header.Set(hdr.Key, string(hdr.Value)) | ||||||
| 					} | 					} | ||||||
| 				p.msg.Header.Set("Micro-Offset", strconv.FormatInt(record.Offset, 10)) |  | ||||||
| 				p.msg.Header.Set("Micro-Partition", strconv.FormatInt(int64(record.Partition), 10)) |  | ||||||
| 				p.msg.Header.Set("Micro-Topic", record.Topic) |  | ||||||
| 				p.msg.Header.Set("Micro-Key", string(record.Key)) |  | ||||||
| 				p.msg.Header.Set("Micro-Timestamp", strconv.FormatInt(record.Timestamp.Unix(), 10)) |  | ||||||
| 				if pc.kopts.Codec.String() == "noop" { |  | ||||||
| 					p.msg.Body = record.Value | 					p.msg.Body = record.Value | ||||||
| 				} else if pc.opts.BodyOnly { | 				} else if pc.opts.BodyOnly { | ||||||
| 					p.msg.Body = record.Value | 					p.msg.Body = record.Value | ||||||
| 				} else { | 				} else { | ||||||
| 					if sp != nil { | 					if err := pc.kopts.Codec.Unmarshal(record.Value, p.msg); err != nil { | ||||||
| 						sp.AddEvent("codec unmarshal start") | 						pc.kopts.Meter.Counter(broker.SubscribeMessageTotal, "endpoint", record.Topic, "status", "failure").Inc() | ||||||
| 					} |  | ||||||
| 					err := pc.kopts.Codec.Unmarshal(record.Value, p.msg) |  | ||||||
| 					if sp != nil { |  | ||||||
| 						sp.AddEvent("codec unmarshal stop") |  | ||||||
| 					} |  | ||||||
| 					if err != nil { |  | ||||||
| 						if sp != nil { |  | ||||||
| 							sp.SetStatus(tracer.SpanStatusError, err.Error()) |  | ||||||
| 						} |  | ||||||
| 						pc.kopts.Meter.Counter(semconv.SubscribeMessageTotal, "endpoint", record.Topic, "topic", record.Topic, "status", "failure").Inc() |  | ||||||
| 						p.err = err | 						p.err = err | ||||||
| 						p.msg.Body = record.Value | 						p.msg.Body = record.Value | ||||||
| 						if eh != nil { | 						if eh != nil { | ||||||
| 							_ = eh(p) | 							_ = eh(p) | ||||||
| 							pc.kopts.Meter.Counter(semconv.SubscribeMessageInflight, "endpoint", record.Topic, "topic", record.Topic).Dec() | 							pc.kopts.Meter.Counter(broker.SubscribeMessageInflight, "endpoint", record.Topic).Dec() | ||||||
| 							if p.ack { | 							if p.ack { | ||||||
| 								pc.c.MarkCommitRecords(record) | 								pc.c.MarkCommitRecords(record) | ||||||
| 							} else { | 							} else { | ||||||
| 								eventPool.Put(p) | 								eventPool.Put(p) | ||||||
| 								//								pc.connected.Store(0) | 								pc.kopts.Logger.Fatalf(pc.kopts.Context, "[kgo] ErrLostMessage wtf?") | ||||||
| 								pc.kopts.Logger.Fatal(pc.kopts.Context, "[kgo] ErrLostMessage wtf?") |  | ||||||
| 								return | 								return | ||||||
| 							} | 							} | ||||||
| 							eventPool.Put(p) | 							eventPool.Put(p) | ||||||
| 							te := time.Since(ts) | 							te := time.Since(ts) | ||||||
| 							pc.kopts.Meter.Summary(semconv.SubscribeMessageLatencyMicroseconds, "endpoint", record.Topic, "topic", record.Topic).Update(te.Seconds()) | 							pc.kopts.Meter.Summary(broker.SubscribeMessageLatencyMicroseconds, "endpoint", record.Topic).Update(te.Seconds()) | ||||||
| 							pc.kopts.Meter.Histogram(semconv.SubscribeMessageDurationSeconds, "endpoint", record.Topic, "topic", record.Topic).Update(te.Seconds()) | 							pc.kopts.Meter.Histogram(broker.SubscribeMessageDurationSeconds, "endpoint", record.Topic).Update(te.Seconds()) | ||||||
| 							continue | 							continue | ||||||
| 						} else { | 						} else { | ||||||
| 							pc.kopts.Logger.Error(pc.kopts.Context, "[kgo]: unmarshal error", err) | 							if pc.kopts.Logger.V(logger.ErrorLevel) { | ||||||
|  | 								pc.kopts.Logger.Errorf(pc.kopts.Context, "[kgo]: failed to unmarshal: %v", err) | ||||||
|  | 							} | ||||||
| 						} | 						} | ||||||
| 						te := time.Since(ts) | 						te := time.Since(ts) | ||||||
| 						pc.kopts.Meter.Counter(semconv.SubscribeMessageInflight, "endpoint", record.Topic, "topic", record.Topic).Dec() | 						pc.kopts.Meter.Counter(broker.SubscribeMessageInflight, "endpoint", record.Topic).Dec() | ||||||
| 						pc.kopts.Meter.Summary(semconv.SubscribeMessageLatencyMicroseconds, "endpoint", record.Topic, "topic", record.Topic).Update(te.Seconds()) | 						pc.kopts.Meter.Summary(broker.SubscribeMessageLatencyMicroseconds, "endpoint", record.Topic).Update(te.Seconds()) | ||||||
| 						pc.kopts.Meter.Histogram(semconv.SubscribeMessageDurationSeconds, "endpoint", record.Topic, "topic", record.Topic).Update(te.Seconds()) | 						pc.kopts.Meter.Histogram(broker.SubscribeMessageDurationSeconds, "endpoint", record.Topic).Update(te.Seconds()) | ||||||
| 						eventPool.Put(p) | 						eventPool.Put(p) | ||||||
| 						//						pc.connected.Store(0) | 						pc.kopts.Logger.Fatalf(pc.kopts.Context, "[kgo] Unmarshal err not handled wtf?") | ||||||
| 						pc.kopts.Logger.Fatal(pc.kopts.Context, "[kgo] Unmarshal err not handled wtf?") |  | ||||||
| 						if sp != nil { |  | ||||||
| 							sp.Finish() |  | ||||||
| 						} |  | ||||||
| 						return | 						return | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 				if sp != nil { |  | ||||||
| 					sp.AddEvent("handler start") |  | ||||||
| 				} |  | ||||||
| 				err := pc.handler(p) | 				err := pc.handler(p) | ||||||
| 				if sp != nil { |  | ||||||
| 					sp.AddEvent("handler stop") |  | ||||||
| 				} |  | ||||||
| 				if err == nil { | 				if err == nil { | ||||||
| 					pc.kopts.Meter.Counter(semconv.SubscribeMessageTotal, "endpoint", record.Topic, "topic", record.Topic, "status", "success").Inc() | 					pc.kopts.Meter.Counter(broker.SubscribeMessageTotal, "endpoint", record.Topic, "status", "success").Inc() | ||||||
| 				} else { | 				} else { | ||||||
| 					if sp != nil { | 					pc.kopts.Meter.Counter(broker.SubscribeMessageTotal, "endpoint", record.Topic, "status", "failure").Inc() | ||||||
| 						sp.SetStatus(tracer.SpanStatusError, err.Error()) |  | ||||||
| 				} | 				} | ||||||
| 					pc.kopts.Meter.Counter(semconv.SubscribeMessageTotal, "endpoint", record.Topic, "topic", record.Topic, "status", "failure").Inc() | 				pc.kopts.Meter.Counter(broker.SubscribeMessageInflight, "endpoint", record.Topic).Dec() | ||||||
| 				} |  | ||||||
| 				pc.kopts.Meter.Counter(semconv.SubscribeMessageInflight, "endpoint", record.Topic, "topic", record.Topic).Dec() |  | ||||||
| 				if err == nil && pc.opts.AutoAck { | 				if err == nil && pc.opts.AutoAck { | ||||||
| 					p.ack = true | 					p.ack = true | ||||||
| 				} else if err != nil { | 				} else if err != nil { | ||||||
| 					p.err = err | 					p.err = err | ||||||
| 					if eh != nil { | 					if eh != nil { | ||||||
| 						if sp != nil { |  | ||||||
| 							sp.AddEvent("error handler start") |  | ||||||
| 						} |  | ||||||
| 						_ = eh(p) | 						_ = eh(p) | ||||||
| 						if sp != nil { |  | ||||||
| 							sp.AddEvent("error handler stop") |  | ||||||
| 						} |  | ||||||
| 					} else { | 					} else { | ||||||
| 						if pc.kopts.Logger.V(logger.ErrorLevel) { | 						if pc.kopts.Logger.V(logger.ErrorLevel) { | ||||||
| 							pc.kopts.Logger.Error(pc.kopts.Context, "[kgo]: subscriber error", err) | 							pc.kopts.Logger.Errorf(pc.kopts.Context, "[kgo]: subscriber error: %v", err) | ||||||
| 						} | 						} | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 				te := time.Since(ts) | 				te := time.Since(ts) | ||||||
| 				pc.kopts.Meter.Summary(semconv.SubscribeMessageLatencyMicroseconds, "endpoint", record.Topic, "topic", record.Topic).Update(te.Seconds()) | 				pc.kopts.Meter.Summary(broker.SubscribeMessageLatencyMicroseconds, "endpoint", record.Topic).Update(te.Seconds()) | ||||||
| 				pc.kopts.Meter.Histogram(semconv.SubscribeMessageDurationSeconds, "endpoint", record.Topic, "topic", record.Topic).Update(te.Seconds()) | 				pc.kopts.Meter.Histogram(broker.SubscribeMessageDurationSeconds, "endpoint", record.Topic).Update(te.Seconds()) | ||||||
| 				if p.ack { | 				if p.ack { | ||||||
| 					eventPool.Put(p) | 					eventPool.Put(p) | ||||||
| 					pc.c.MarkCommitRecords(record) | 					pc.c.MarkCommitRecords(record) | ||||||
| 				} else { | 				} else { | ||||||
| 					eventPool.Put(p) | 					eventPool.Put(p) | ||||||
| 					//					pc.connected.Store(0) | 					pc.kopts.Logger.Fatalf(pc.kopts.Context, "[kgo] ErrLostMessage wtf?") | ||||||
| 					pc.kopts.Logger.Fatal(pc.kopts.Context, "[kgo] ErrLostMessage wtf?") |  | ||||||
| 					if sp != nil { |  | ||||||
| 						sp.SetStatus(tracer.SpanStatusError, "ErrLostMessage") |  | ||||||
| 						sp.Finish() |  | ||||||
| 					} |  | ||||||
| 					return | 					return | ||||||
| 				} | 				} | ||||||
| 				if sp != nil { |  | ||||||
| 					sp.Finish() |  | ||||||
| 				} |  | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|   | |||||||
							
								
								
									
										223
									
								
								tracer.go
									
									
									
									
									
								
							
							
						
						
									
										223
									
								
								tracer.go
									
									
									
									
									
								
							| @@ -1,223 +0,0 @@ | |||||||
| package kgo |  | ||||||
|  |  | ||||||
| import ( |  | ||||||
| 	"context" |  | ||||||
| 	"unicode/utf8" |  | ||||||
|  |  | ||||||
| 	"github.com/twmb/franz-go/pkg/kgo" |  | ||||||
| 	semconv "go.opentelemetry.io/otel/semconv/v1.18.0" |  | ||||||
| 	"go.unistack.org/micro/v3/metadata" |  | ||||||
| 	"go.unistack.org/micro/v3/tracer" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| type hookTracer struct { |  | ||||||
| 	tracer   tracer.Tracer |  | ||||||
| 	clientID string |  | ||||||
| 	group    string |  | ||||||
| } |  | ||||||
|  |  | ||||||
| var messagingSystem = semconv.MessagingSystemKey.String("kafka") |  | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	_ kgo.HookProduceRecordBuffered   = (*hookTracer)(nil) |  | ||||||
| 	_ kgo.HookProduceRecordUnbuffered = (*hookTracer)(nil) |  | ||||||
| 	_ kgo.HookFetchRecordBuffered     = (*hookTracer)(nil) |  | ||||||
| 	_ kgo.HookFetchRecordUnbuffered   = (*hookTracer)(nil) |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| // OnProduceRecordBuffered starts a new span for the "publish" operation on a |  | ||||||
| // buffered record. |  | ||||||
| // |  | ||||||
| // It sets span options and injects the span context into record and updates |  | ||||||
| // the record's context, so it can be ended in the OnProduceRecordUnbuffered |  | ||||||
| // hook. |  | ||||||
| func (m *hookTracer) OnProduceRecordBuffered(r *kgo.Record) { |  | ||||||
| 	if !m.tracer.Enabled() { |  | ||||||
| 		return |  | ||||||
| 	} |  | ||||||
| 	// Set up span options. |  | ||||||
| 	attrs := []interface{}{ |  | ||||||
| 		messagingSystem, |  | ||||||
| 		semconv.MessagingDestinationKindTopic, |  | ||||||
| 		semconv.MessagingDestinationName(r.Topic), |  | ||||||
| 		semconv.MessagingOperationPublish, |  | ||||||
| 	} |  | ||||||
| 	attrs = maybeKeyAttr(attrs, r) |  | ||||||
| 	if m.clientID != "" { |  | ||||||
| 		attrs = append(attrs, semconv.MessagingKafkaClientIDKey.String(m.clientID)) |  | ||||||
| 	} |  | ||||||
| 	opts := []tracer.SpanOption{ |  | ||||||
| 		tracer.WithSpanLabels(attrs...), |  | ||||||
| 		tracer.WithSpanKind(tracer.SpanKindProducer), |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if r.Context == nil { |  | ||||||
| 		r.Context = context.Background() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	omd, ok := metadata.FromOutgoingContext(r.Context) |  | ||||||
| 	if !ok { |  | ||||||
| 		omd = metadata.New(len(r.Headers)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	md := metadata.Copy(omd) |  | ||||||
| 	for _, h := range r.Headers { |  | ||||||
| 		md.Set(h.Key, string(h.Value)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if !ok { |  | ||||||
| 		r.Context, _ = m.tracer.Start(metadata.NewOutgoingContext(r.Context, md), "sdk.broker", opts...) |  | ||||||
| 	} else { |  | ||||||
| 		r.Context, _ = m.tracer.Start(r.Context, "sdk.broker", opts...) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	setHeaders(r, omd, metadata.HeaderContentType) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // OnProduceRecordUnbuffered continues and ends the "publish" span for an |  | ||||||
| // unbuffered record. |  | ||||||
| // |  | ||||||
| // It sets attributes with values unset when producing and records any error |  | ||||||
| // that occurred during the publish operation. |  | ||||||
| func (m *hookTracer) OnProduceRecordUnbuffered(r *kgo.Record, err error) { |  | ||||||
| 	if !m.tracer.Enabled() { |  | ||||||
| 		return |  | ||||||
| 	} |  | ||||||
| 	if span, ok := tracer.SpanFromContext(r.Context); ok { |  | ||||||
| 		span.AddLabels( |  | ||||||
| 			semconv.MessagingKafkaDestinationPartition(int(r.Partition)), |  | ||||||
| 		) |  | ||||||
| 		if err != nil { |  | ||||||
| 			span.SetStatus(tracer.SpanStatusError, err.Error()) |  | ||||||
| 		} |  | ||||||
| 		span.Finish() |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // OnFetchRecordBuffered starts a new span for the "receive" operation on a |  | ||||||
| // buffered record. |  | ||||||
| // |  | ||||||
| // It sets the span options and extracts the span context from the record, |  | ||||||
| // updates the record's context to ensure it can be ended in the |  | ||||||
| // OnFetchRecordUnbuffered hook and can be used in downstream consumer |  | ||||||
| // processing. |  | ||||||
| func (m *hookTracer) OnFetchRecordBuffered(r *kgo.Record) { |  | ||||||
| 	if !m.tracer.Enabled() { |  | ||||||
| 		return |  | ||||||
| 	} |  | ||||||
| 	// Set up the span options. |  | ||||||
| 	attrs := []interface{}{ |  | ||||||
| 		messagingSystem, |  | ||||||
| 		semconv.MessagingSourceKindTopic, |  | ||||||
| 		semconv.MessagingSourceName(r.Topic), |  | ||||||
| 		semconv.MessagingOperationReceive, |  | ||||||
| 		semconv.MessagingKafkaSourcePartition(int(r.Partition)), |  | ||||||
| 	} |  | ||||||
| 	attrs = maybeKeyAttr(attrs, r) |  | ||||||
| 	if m.clientID != "" { |  | ||||||
| 		attrs = append(attrs, semconv.MessagingKafkaClientIDKey.String(m.clientID)) |  | ||||||
| 	} |  | ||||||
| 	if m.group != "" { |  | ||||||
| 		attrs = append(attrs, semconv.MessagingKafkaConsumerGroupKey.String(m.group)) |  | ||||||
| 	} |  | ||||||
| 	opts := []tracer.SpanOption{ |  | ||||||
| 		tracer.WithSpanLabels(attrs...), |  | ||||||
| 		tracer.WithSpanKind(tracer.SpanKindConsumer), |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if r.Context == nil { |  | ||||||
| 		r.Context = context.Background() |  | ||||||
| 	} |  | ||||||
| 	omd, ok := metadata.FromIncomingContext(r.Context) |  | ||||||
| 	if !ok { |  | ||||||
| 		omd = metadata.New(len(r.Headers)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	md := metadata.Copy(omd) |  | ||||||
| 	for _, h := range r.Headers { |  | ||||||
| 		md.Set(h.Key, string(h.Value)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if !ok { |  | ||||||
| 		r.Context, _ = m.tracer.Start(metadata.NewIncomingContext(r.Context, md), "sdk.broker", opts...) |  | ||||||
| 	} else { |  | ||||||
| 		r.Context, _ = m.tracer.Start(r.Context, "sdk.broker", opts...) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	setHeaders(r, omd, metadata.HeaderContentType) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // OnFetchRecordUnbuffered continues and ends the "receive" span for an |  | ||||||
| // unbuffered record. |  | ||||||
| func (m *hookTracer) OnFetchRecordUnbuffered(r *kgo.Record, _ bool) { |  | ||||||
| 	if !m.tracer.Enabled() { |  | ||||||
| 		return |  | ||||||
| 	} |  | ||||||
| 	span, _ := tracer.SpanFromContext(r.Context) |  | ||||||
| 	span.Finish() |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // WithProcessSpan starts a new span for the "process" operation on a consumer |  | ||||||
| // record. |  | ||||||
| // |  | ||||||
| // It sets up the span options. The user's application code is responsible for |  | ||||||
| // ending the span. |  | ||||||
| // |  | ||||||
| // This should only ever be called within a polling loop of a consumed record and |  | ||||||
| // not a record which has been created for producing, so call this at the start of each |  | ||||||
| // iteration of your processing for the record. |  | ||||||
| func (m *hookTracer) WithProcessSpan(r *kgo.Record) (context.Context, tracer.Span) { |  | ||||||
| 	if r.Context == nil { |  | ||||||
| 		r.Context = context.Background() |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if !m.tracer.Enabled() { |  | ||||||
| 		return r.Context, nil |  | ||||||
| 	} |  | ||||||
| 	// Set up the span options. |  | ||||||
| 	attrs := []interface{}{ |  | ||||||
| 		messagingSystem, |  | ||||||
| 		semconv.MessagingSourceKindTopic, |  | ||||||
| 		semconv.MessagingSourceName(r.Topic), |  | ||||||
| 		semconv.MessagingOperationProcess, |  | ||||||
| 		semconv.MessagingKafkaSourcePartition(int(r.Partition)), |  | ||||||
| 		semconv.MessagingKafkaMessageOffset(int(r.Offset)), |  | ||||||
| 	} |  | ||||||
| 	attrs = maybeKeyAttr(attrs, r) |  | ||||||
| 	if m.clientID != "" { |  | ||||||
| 		attrs = append(attrs, semconv.MessagingKafkaClientIDKey.String(m.clientID)) |  | ||||||
| 	} |  | ||||||
| 	if m.group != "" { |  | ||||||
| 		attrs = append(attrs, semconv.MessagingKafkaConsumerGroupKey.String(m.group)) |  | ||||||
| 	} |  | ||||||
| 	opts := []tracer.SpanOption{ |  | ||||||
| 		tracer.WithSpanLabels(attrs...), |  | ||||||
| 		tracer.WithSpanKind(tracer.SpanKindConsumer), |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if r.Context == nil { |  | ||||||
| 		r.Context = context.Background() |  | ||||||
| 	} |  | ||||||
| 	md, ok := metadata.FromIncomingContext(r.Context) |  | ||||||
| 	if !ok { |  | ||||||
| 		md = metadata.New(len(r.Headers)) |  | ||||||
| 	} |  | ||||||
| 	for _, h := range r.Headers { |  | ||||||
| 		md.Set(h.Key, string(h.Value)) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// Start a new span using the provided context and options. |  | ||||||
| 	return m.tracer.Start(r.Context, "sdk.broker", opts...) |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func maybeKeyAttr(attrs []interface{}, r *kgo.Record) []interface{} { |  | ||||||
| 	if r.Key == nil { |  | ||||||
| 		return attrs |  | ||||||
| 	} |  | ||||||
| 	var keykey string |  | ||||||
| 	if !utf8.Valid(r.Key) { |  | ||||||
| 		return attrs |  | ||||||
| 	} |  | ||||||
| 	keykey = string(r.Key) |  | ||||||
| 	return append(attrs, semconv.MessagingKafkaMessageKeyKey.String(keykey)) |  | ||||||
| } |  | ||||||
		Reference in New Issue
	
	Block a user