일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- node.js
- query
- elasticsearch
- PYTHON
- windows
- venv
- Crontab
- ELK
- json
- 7.7.1
- filebeat
- ubuntu
- elastic
- OPCUA
- path.data
- grok
- configure
- Tutorial
- DSL
- package.json
- devtools
- airflow
- dense_vector
- framework
- typescript
- kibana
- KoA
- Data Engineering
- CSV
- logstash
- Today
- Total
목록전체 글 (47)
Gibbs Kim's playground
AWS CLI는 AWS의 다양한 기능을 명령어를 통해 실행할 수 있게 하는 기능이다.(공식문서 참조: LINK) 설치 순서는 다음과 같다.1. Windows용 AWS CLI 설치프로그램 (MSI 64bit) 다운로드 및 실행> https://awscli.amazonaws.com/AWSCLIV2.msi 또는 msiexec 명령어를 통해 설치 프로그램을 실행할 수도 있다.$ msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi 2. 설치된 버전 확인$ aws --versionaws-cli/2.17.22 Python/3.11.9 Windows/10 exe/AMD64AWS 공식문서: LINK
# Test Environment## OS: Windows 11 Pro## Python version # 3.12 # 3.10## Python Install spot: Microsoft Store 기존 웹서핑에서 언급하는 방식으로 venv를 통한 특정 파이썬 버전이 설치되지 않아 다른 방법으로 수행한 내용을 기록한다. 1. 타겟 python 폴더로 이동 (target: 3.10)$ cd C:\Users\testUser\AppData\Local\Microsoft\WindowApps\PythonSoftwareFoundation.Python.3.10_qef5dg# {user_name} == testUser# {id_pattern} == qef5dg 2. venv 커맨드 실행하여 특정 버전의 virtual..
Python script를 통해 DAGs를 등록하는 예제(LINK)를 수행하다가 python 내부에서 class로 구조를 구성하면 어떨까 테스트 해보았다. #yolo_inference example from https://da2so.tistory.com/40from datetime import datetimefrom pathlib import Pathfrom airflow import DAGfrom airflow.operators.python import PythonOperatorfrom airflow.operators.bash import BashOperatorclass DAGinstance: def __init__(self, args) -> None: self.dag_id = arg..