This file contains hidden or 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
| #!/bin/bash | |
| set -e | |
| cat <<EOT >> /etc/docker/daemon.json | |
| { | |
| "bip": "172.31.0.1/16", | |
| "default-address-pools": | |
| [ | |
| {"base":"172.32.0.0/16","size":24} | |
| ] |
This file contains hidden or 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
| #!/usr/bin/env zx | |
| let token = process.env.GITHUB_TOKEN; | |
| let branchName = process.env.GITHUB_HEAD_REF; | |
| let pullNumber = process.env.PULL_NUMBER; | |
| let apiUrl = process.env.GITHUB_API_URL; | |
| let repo = process.env.GITHUB_REPOSITORY; | |
| let issuePrefix = process.env.ISSUE_PREFIX | |
| let allowFailure = process.env.ALLOW_FAILURE |
This file contains hidden or 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
| service: | |
| enabled: true | |
| type: LoadBalancer | |
| # Additional annotations (e.g. for cloud provider specific config) | |
| annotations: | |
| load-balancer.hetzner.cloud/location: nbg1 | |
| # ensure that the load balancer communicates via private network | |
| load-balancer.hetzner.cloud/use-private-ip: "true" | |
| # ensures that the load balancer is not removed | |
| load-balancer.hetzner.cloud/name: "traefik" |
This file contains hidden or 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
| // ################### | |
| // #### React hook ###### | |
| // ################### | |
| import { useEffect, useRef, useState } from 'react'; | |
| /* eslint-disable global-require */ | |
| const Places = typeof window !== 'undefined' && require('places.js'); | |
| export default function useAlgoliaPlaces({ options, events }) { |
This file contains hidden or 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
| func (c *CommandBus) HandleCommand(cmd Command) { | |
| events := c.CommandHandler.HandleCommand(cmd) | |
| c.stan.Publish("eventstore.events", events) | |
| } |
This file contains hidden or 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
| id | last_processed_event_id | processor_name | |
| +--------------------+----------------------------+-----------------+ | |
| 517800172974768129 | 01DXRWAVGFZ46AV38EA2CYXFQJ | reactor | |
| 517800173095550977 | 01DXRWAVGFZ46AV38EA2CYXFQJ | order-projector |
This file contains hidden or 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
| sub, err := sc.Subscribe("eventstore.events", func(m *stan.Msg) { | |
| // check if event was already processed | |
| if p.tracker.IsDuplicateOperation(p.name, event.ID) { | |
| log.WithFields(eventLogFields).WithFields(subLogFields).Trace("duplicate") | |
| if err := m.Ack(); err != nil { | |
| log.WithFields(eventLogFields).WithFields(subLogFields).WithError(err).Error("ack duplicate event") | |
| } | |
| return | |
| } | |
This file contains hidden or 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
| id | version | data | timestamp | |
| +----+---------+----------------------------------------------------------------+---------------------+ | |
| 1 | 1 | {"PositionID": "Auftragsfreigabe", "PositionOrderID": "A1212"} | 1578079632531167629 | |
| 1 | 2 | {"PositionID": "Abteilung A", "PositionOrderID": "A1213"} | 1578079669618870080 |
This file contains hidden or 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
| sub, err := sc.Subscribe("eventstore.events", func(m *stan.Msg) { | |
| // TODO check if event was already processed | |
| stan.PublishAsync("eventstore.events.order-projection", m.Data) | |
| stan.PublishAsync("eventstore.events.order-reactor", m.Data) | |
| // TODO track event as processed | |
| // ack message | |
| if err := m.Ack(); err != nil { | |
| log.WithFields(eventLogFields).WithFields(r.baseLogFields).WithError(err).Error("ack event") |
This file contains hidden or 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
| sub, err := sc.Subscribe("eventstore.events", func(m *stan.Msg) { | |
| fmt.Printf("Received a message: %s\n", string(m.Data)) | |
| // your code | |
| if err := m.Ack(); err != nil { | |
| // event is redelivered | |
| return | |
| } | |
| }, | |
| stan.maxInFlight(1), | |
| stan.AckWait("30s"), |
NewerOlder