DB (7) 썸네일형 리스트형 [ELK Stack] Elasicsearch, Logstash, Kibana, Beats 알아보기 ELK Stack? ELK란 3가지 오픈소스 소프트웨어 Elasticsearch, Logstash, Kibana의 조합을 의미합니다. Elasticsearch는 검색을 위해 단독으로 사용되기도 하며, ELK Stack으로 사용되기도 합니다. 2015년에 Beats의 도입으로 ELK Stack(Elastic Stack)이라고 불리고 있습니다. ELK Stack은 데이터 수집 및 분석 툴로서 높은 확장성과 뛰어난 이식성을 가지고 있어 여러 툴과도 연동이 가능합니다. 1) Elastic Search : Apache Lucene(아파치 루씬) 기반의 분산형 RESTful 검색 및 분석 엔진입니다. 일반적인 쓰임은 많은 양의 데이터를 색인해서 전문검색과 실시간 통계를 실행하는 것입니다. 역인덱스(Inverted .. [SQLAlchemy] 참조키 연결 posts = db.relationship('Post', backref='author', lazy=True)객체에 삽입되는 가상 필드 이름입니다. 즉, 게시물을 `post`라는 변수에 저장했다고 한다면 이 게시물을 작성한 게시자를 `post.author`을 이용해 접근할 수 있음https://beomi.github.io/2017/10/20/DB-To-SQLAlchemy-Model/기존 DB를 Flask-SQLAlchemy ORM Model로 사용하기 - Beomi's Tech blog본 게시글에서는 MySQL/Sqlite을 예제로 하고있지만, Flask-SQLAlchemy가 지원하는 다른 DB에서도 사용 가능합니다. 들어가며 Flask로 웹 개발 진행 시 SQLAlchemy(Flask-SQLAlchemy.. [SQLAlchemy] INSERT 중복방지, join 사용 직접 쿼리 작성하고 싶을 때https://stackoverflow.com/questions/17972020/how-to-execute-raw-sql-in-flask-sqlalchemy-appHow to execute raw SQL in Flask-SQLAlchemy appHow do you execute raw SQL in SQLAlchemy? I have a python web app that runs on flask and interfaces to the database through SQLAlchemy. I need a way to run the raw SQL. The query involves multiplestackoverflow.com INSERT IGNORE def insert_act(tem.. 참조키 설정 오류(Cannot add or update a child row) 해결방법 the FOREIGN KEY clause is specified in the child table. ... Cannot add or update a child row: a foreign key constraint fails essentially means that, you are trying to add a row to your Ordrelinje table for which no matching row (OrderID) is present in Ordre table. You must first insert the row to your Ordre table.2 foreign key에 값을 삽입하거나 수정하려할 때, fk가 참조하는 primary key 외의 값을 사용하면 생기는 오류이다. 위 오.. [DB]Import data from Excel into MySQL using Python 1. Create table on my_schema database 2. 데이터 삽입(INSERT) Cursor Object 가져오기: cursor = db.cursor() SQL 실행하기: cursor.execute(SQL) 실행 mysql 서버에 확정 반영하기: db.commit() app.py 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 tumbler = xlrd.open_workbook("data/Tumbler_Factory_revision.xlsx") sheet = tumbler.sheet_by_name("ANALYSIS") database = MySQLdb.connect (host="localhost", use.. [MongoDB] Error at connecting to MongoDb Atlas Server *** It looks like this is a MongoDB Atlas cluster. Please ensure that your IP whitelist allows connections from your network. I was able to solve it by adding my white-listing my IP address under Clusters -> security -> IP Whitelist. Instead of clicking my current ip address, just search what's my ip on google and paste that instead. I have had this issue connecting to a MongoDB Atlas cluster. I.. [Nodejs/MongoDb] MongoDb 연결해서 데이터 불러오기 1. cmd 창에서 DB 생성 (1) MongoDB 접속 mongo "mongodb+srv://몽고디비주소" --username 아이디 mongodb+srv://아이디:비번@몽고디비주소?retryWrites=true&w=majority (2) 데이터 추가 db.콜렉션이름.insert([{.insert([{키1:"내용1", 키2:"내용2"~~~}, {키1:"내용1", 키2:"내용2"~~~}]) (3) 데이터 조회 db.콜렉션이름.find() 2. MongoDB에 저장된 데이터를 확인 3. NodeJs에서 MongoDB에 저장된 데이터 연결 위 데이터를 불러와 사용하려면 아래 코드를 사용하면 됩니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 .. 이전 1 다음