Skip to content

Commit

Permalink
feat: add configuration of Kafka consumer groups via environment vari…
Browse files Browse the repository at this point in the history
…able
  • Loading branch information
Masterchen09 committed Feb 25, 2024
1 parent 081806b commit 1eeb094
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/config/executor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: "ingestion_executor"
name: ${DATAHUB_ACTIONS_INGESTION_EXECUTOR_CONSUMER_GROUP_ID:-ingestion_executor}
source:
type: "kafka"
config:
Expand Down
2 changes: 1 addition & 1 deletion docker/config/slack_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: datahub_slack_action
name: ${DATAHUB_ACTIONS_SLACK_CONSUMER_GROUP_ID:-datahub_slack_action}
enabled: ${DATAHUB_ACTIONS_SLACK_ENABLED:-false}
source:
type: "kafka"
Expand Down
2 changes: 1 addition & 1 deletion docker/config/teams_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: datahub_teams_action
name: ${DATAHUB_ACTIONS_TEAMS_CONSUMER_GROUP_ID:-datahub_teams_action}
enabled: ${DATAHUB_ACTIONS_TEAMS_ENABLED:-false}
source:
type: "kafka"
Expand Down

0 comments on commit 1eeb094

Please sign in to comment.