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
--- | |
Language: Cpp | |
# BasedOnStyle: LLVM | |
AccessModifierOffset: -2 | |
AlignAfterOpenBracket: Align | |
AlignArrayOfStructures: None | |
AlignConsecutiveAssignments: | |
Enabled: false | |
AcrossEmptyLines: false | |
AcrossComments: false |
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
>> ATTEMPT 1/1 | |
2024-07-14 08:08:51 [46mplatform[0m > Cloud storage job log path: /workspace/924/0/logs.log | |
2024-07-14 08:09:04 [32mINFO[m i.m.r.Micronaut(start):101 - Startup completed in 2249ms. Server Running: http://orchestrator-repl-job-924-attempt-0:9000 | |
2024-07-14 08:09:05 [46mreplication-orchestrator[0m > Writing async status INITIALIZING for KubePodInfo[namespace=production-hm-airbyte, name=orchestrator-repl-job-924-attempt-0, mainContainerInfo=KubeContainerInfo[image=airbyte/container-orchestrator:0.63.6, pullPolicy=IfNotPresent]]... | |
2024-07-14 08:08:51 [46mplatform[0m > Executing worker wrapper. Airbyte version: 0.63.6 | |
2024-07-14 08:08:51 [46mplatform[0m > Creating orchestrator-repl-job-924-attempt-0 for attempt number: 0 | |
2024-07-14 08:08:51 [46mplatform[0m > Successfully deleted all running pods for the connection! | |
2024-07-14 08:08:56 [46mplatform[0m > Waiting for pod to be running... | |
2024-07-14 08:08:58 [46mplatform[0m > Pod production-hm-airbyte/orchestrator-repl-job-924-attempt- |
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
>> ATTEMPT 1/1 | |
2024-07-14 07:46:41 [46mplatform[0m > Cloud storage job log path: /workspace/923/0/logs.log | |
2024-07-14 07:47:20 [32mINFO[m i.m.r.Micronaut(start):101 - Startup completed in 2263ms. Server Running: http://orchestrator-repl-job-923-attempt-0:9000 | |
2024-07-14 07:47:22 [46mreplication-orchestrator[0m > Writing async status INITIALIZING for KubePodInfo[namespace=production-hm-airbyte, name=orchestrator-repl-job-923-attempt-0, mainContainerInfo=KubeContainerInfo[image=airbyte/container-orchestrator:0.63.6, pullPolicy=IfNotPresent]]... | |
2024-07-14 07:46:41 [46mplatform[0m > Executing worker wrapper. Airbyte version: 0.63.6 | |
2024-07-14 07:46:41 [46mplatform[0m > | |
2024-07-14 07:46:41 [46mplatform[0m > Using default value for environment variable SIDECAR_KUBE_CPU_LIMIT: '2.0' | |
2024-07-14 07:46:41 [46mplatform[0m > ----- START CHECK ----- | |
2024-07-14 07:46:41 [46mplatform[0m > Using default value for environment variable SOCAT_KUBE_CPU_LIMIT: '2.0' |
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
```sh | |
[Worker-0b87c1d131f888840] No sanity checks script found. Ignoring. | |
[Worker-0b87c1d131f888840] Waiting for resolving bootstrap servers address ... | |
[Worker-0b87c1d131f888840] Successfully resolved bootstrap servers address. | |
[Worker-0b87c1d131f888840] Starting MSK Connect... | |
[Worker-0b87c1d131f888840] [2024-07-10 20:45:15,092] INFO WorkerInfo values: | |
[Worker-0b87c1d131f888840] jvm.args = JVM_ARGS | |
[Worker-0b87c1d131f888840] jvm.spec = Amazon.com Inc., OpenJDK 64-Bit Server VM, 11.0.22, 11.0.22+7-LTS | |
[Worker-0b87c1d131f888840] jvm.classpath = CLASSPATH | |
[Worker-0b87c1d131f888840] os.spec = Linux, amd64, 5.10.215-203.850.amzn2.x86_64 |
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
{"label":"code lines","message":"219.5k","schemaVersion":1,"color":"blue","labelColor":"gray"} |
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
#if defined(ESP32) | |
#include <WiFiMulti.h> | |
WiFiMulti wifiMulti; | |
#define DEVICE "ESP32" | |
#elif defined(ESP8266) | |
#include <ESP8266WiFiMulti.h> | |
ESP8266WiFiMulti wifiMulti; | |
#define DEVICE "ESP8266" | |
#endif |
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": "io.confluent.connect.elasticsearch.ElasticsearchSinkConnector", | |
"error_count": 3, | |
"groups": [ | |
"Common", | |
"Transforms", | |
"Predicates", | |
"Error Handling", | |
"Transforms: unwrap", | |
"Transforms: key", |
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
version: "3.8" | |
services: | |
# When scaling the opal-server to multiple nodes and/or multiple workers, we use | |
# a *broadcast* channel to sync between all the instances of opal-server. | |
# Under the hood, this channel is implemented by encode/broadcaster (see link below). | |
# At the moment, the broadcast channel can be either: postgresdb, redis or kafka. | |
# The format of the broadcaster URI string (the one we pass to opal server as `OPAL_BROADCAST_URI`) is specified here: | |
# https://github.com/encode/broadcaster#available-backends | |
broadcast_channel: | |
image: postgres:alpine |
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
""" | |
you may run this example with uvicorn, by using this command: | |
uvicorn opalogger:app --reload | |
""" | |
import gzip | |
from typing import Callable, List | |
from fastapi import Body, FastAPI, Request, Response |
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
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository | |
$ git ls-files | xargs wc -l |
NewerOlder