When set enable-table-across-nodes = true
and write-key-threshold
large than 0, there may be a risk of span loss, causing the changefeed stucks.
#14301
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Assign to Bugs and Questions | |
on: | |
issues: | |
types: [labeled] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
assign_bug_project: | |
runs-on: ubuntu-latest | |
name: Assign to Bugs and Questions Project | |
steps: | |
- name: Run issues assignment to project Question and Bug Reports Kanban | |
uses: srggrs/[email protected] | |
if: | | |
contains(github.event.issue.labels.*.name, 'type/bug') | |
with: | |
project: 'https://github.com/pingcap/tiflow/projects/13' | |
column_name: 'Need Triage' |