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 | |
if [ -z "$1" ]; then | |
echo "Error: labal app name is not specified." | |
exit 1 | |
fi | |
if [ -z "$2" ]; then | |
echo "Error : zone is not specified." |
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
version: '3.8' | |
services: | |
prometheus: | |
image: prom/prometheus:v2.40.7 | |
command: | |
- --web.enable-remote-write-receiver | |
- --enable-feature=native-histograms | |
- --config.file=/etc/prometheus/prometheus.yml | |
ports: |
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
address: tcp://clickhouse:9000 |
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
version: "3" | |
services: | |
clickhouse: | |
image: yandex/clickhouse-server:21 | |
ports: | |
- "8123:8123" | |
- "9000:9000" | |
- "9009:9009" | |
- "9363:9363" |
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
receivers: | |
otlp: | |
protocols: | |
grpc: | |
exporters: | |
logging: | |
zipkin: | |
endpoint: "http://zipkin-all-in-one:9411/api/v2/spans" |
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
version: "3" | |
services: | |
tempo: | |
image: grafana/tempo:latest | |
command: [ "-config.file=/etc/tempo.yaml" ] | |
volumes: | |
- ./tempo-s3.yaml:/etc/tempo.yaml | |
- ./tempo-data:/tmp/tempo | |
ports: |
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
개별 배포 파이프라인에 원격 Jenkins Webhook 수행 | |
#매개변수 JOB 구성 | |
String Parameter | |
appName | |
fizz-download-service | |
String Parameter | |
FEATURE | |
fizz.v2.V2Reporter#testFileFeature |
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
%spark | |
import okhttp3.Call | |
import okhttp3.MediaType | |
import okhttp3.MultipartBody | |
import okhttp3.OkHttpClient | |
import okhttp3.Request | |
import okhttp3.RequestBody | |
import okhttp3.Response |
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
import org.apache.spark.ml.{Pipeline, PipelineModel} | |
import org.apache.spark.ml.classification.{RandomForestClassificationModel, RandomForestClassifier, NaiveBayes} | |
import org.apache.spark.ml.evaluation.MulticlassClassificationEvaluator | |
import org.apache.spark.ml.feature.{StringIndexer, HashingTF, VectorIndexer, StopWordsRemover, NGram, Word2Vec, CountVectorizer, IDF} | |
import org.apache.spark.ml.tuning.{CrossValidator, CrossValidatorModel, ParamGridBuilder} | |
import org.apache.spark.sql.Encoders | |
import com.johnsnowlabs.nlp.pretrained.PretrainedPipeline | |
import com.johnsnowlabs.nlp.SparkNLP | |
import com.johnsnowlabs.nlp.annotator._ | |
import com.johnsnowlabs.nlp.base._ |