zeppelin.interpreter.output.limit = 102400000 zeppelin.websocket.max.text.message.size = 102400000 https://stackoverflow.com/questions/45796163/zepplin-truncated-output-with-self-defined-sql-interpreter Zepplin: truncated output with self defined sql interpreter I use Zeppelin 0.7.2 and created for testing purposes an own "interpreter" for directly querying a sql database using jdbc. If I use th..
alter 'tablename', {NAME=> 'cf'} https://stackoverflow.com/questions/29291305/how-to-add-new-column-family-to-an-existing-hbase-table How to add new column family to an existing HBase table? I created a table by create 'tablename', 'columnfamily1' Now is it possible to add another column family 'columnfamily2'? What is the method? stackoverflow.com
public static T get(List list, int i) { try { return list.get(i); } catch (Exception e) { return null; } } public static List add(List list, T item) { if(item == null) { return list; } list.add(item); return list; } public static String get(Map map, String k) { String v = map.get(k); return v == null ? "" : v; }
private Object o; public List magicalListGetter(Class klazz) { List list = new ArrayList(); list.add(klazz.cast(o)); try { list.add(klazz.getConstructor().newInstance()); } return list; } https://stackoverflow.com/questions/17840483/how-to-have-java-method-return-generic-list-of-any-type How to have Java method return generic list of any type? I would like to write a method that would return a j..
alter 'table_name', {NAME => 'family_name', METHOD => 'delete'} https://stackoverflow.com/questions/18763982/deleting-columns-in-hbase Deleting Columns in HBase In HBase, calling DeleteColumn() method i.e., essentially a schema change to a column family or deleting column families will result in downtime of HBase Cluster? stackoverflow.com
Lists.partition(java.util.List, int) https://stackoverflow.com/questions/12026885/is-there-a-common-java-utility-to-break-a-list-into-batches Is there a common Java utility to break a list into batches? I wrote myself a utility to break a list into batches of given size. I just wanted to know if there is already any apache commons util for this. public static List
(jenkins_url)/safeRestart - Allows all running jobs to complete. New jobs will remain in the queue to run after the restart is complete. (jenkins_url)/restart - Forces a restart without waiting for builds to complete. https://imitursa.tistory.com/2902 Jenkins : 재시작하기 웹페이지에서 Jenkins 를 재기동하고 싶을 때는 아래 url 을 이용하면 된다. (jenkins_url)/safeRestart - Allows all running jobs to complete. New jobs will rema..
관리 테이블 관리되는 테이블은 hi.metastore아래에 저장됩니다. warehouse.dir경로 속성, 기본적으로 와 유사한 폴더 경로/user/hive/warehouse/databasename.db/tablename/. 기본 위치는 다음에 의해 재정의될 수 있습니다.location테이블 생성 중 속성. 관리되는 테이블 또는 파티션이 삭제되면 해당 테이블 또는 파티션과 연결된 데이터 및 메타 데이터가 삭제됩니다. PURGE옵션을 지정하지 않으면 데이터가 정의된 기간 동안 휴지통 폴더로 이동됩니다. Hive가 테이블의 수명 주기를 관리해야 하거나 임시 테이블을 생성할 때 관리되는 테이블을 사용하십시오. 외부 테이블 외부 테이블은 외부 파일의 메타 데이터/스키마를 설명합니다. 외부 테이블 파일은 하이브 ..
import re regex = re.compile( r'^(?:http|ftp)s?://' # http:// or https:// r'(?:(?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?\.)+(?:[A-Z]{2,6}\.?|[A-Z0-9-]{2,}\.?)|' #domain... r'localhost|' #localhost... r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})' # ...or ip r'(?::\d+)?' # optional port r'(?:/?|[/?]\S+)$', re.IGNORECASE) print(re.match(regex, "http://www.example.com") is not None) # True print(re.match(reg..
import urllib.request with urllib.request.urlopen('http://www.google.com') as response: info = response.info() print(info.get_content_type()) # -> text/html print(info.get_content_maintype()) # -> text print(info.get_content_subtype()) # -> html https://stackoverflow.com/questions/12474406/python-how-to-get-the-content-type-of-an-url
import signal signal.alarm(10) https://stackoverflow.com/questions/492519/timeout-on-a-function-call Timeout on a function call I'm calling a function in Python which I know may stall and force me to restart the script. How do I call the function or what do I wrap it in so that if it takes longer than 5 seconds the script stackoverflow.com
# requirements.txt flask flask_restplus werkzeug==0.16.0 # -*- coding: utf-8 -*- from __future__ import unicode_literals import os from flask import Flask from flask_restplus import Api, Resource, fields from argparse import ArgumentParser app = Flask(__name__) api = Api( app, version='1.0', title='Bot API', description='A bot API', ) app = Flask(__name__) port = os.getenv('PORT', 80) debug = Tr..
INSERT OVERWRITE TABLE ${db.table} PARTITION (dt) SELECT /*+ REPARTITION(1)*/ a, b, c, dt FROM ${db.table} https://gyuhoonk.github.io/hive-merge-query Merge Files in HDFS HDFS에서 작은 용량의 파일들을 합쳐보자 Blocks in HDFS 데이터는 HDFS 상에서 Block이라는 단위로 저장됩니다. 일반적으로 하나의 Block에 128MB를 저장합니다. 따라서 Block Size, 128MB를 넘는 데이터는 여 gyuhoonk.github.io https://stackoverflow.com/questions/57950721/how-to-merge-small-files-c..
https://corikachu.github.io/articles/python/python-slack-bot-slacker [Python] Slacker를 이용한 Slack Bot 만들기 | Corikachu 개발 커뮤니티 GDG SSU 내부 슬랙에서 운영하고 있는 봇이 어떻게 만들어 졌는지 간단하게 확인해 봅시다. corikachu.github.io from slacker import Slacker from const import * from utils.string_utils import StringUtils class Slack: def __init__(self): pass @staticmethod def send(message, token, channel): if token is None: toke..
https://dnight.tistory.com/entry/Jenkins-Slack-%EC%95%8C%EB%A6%BC-%EC%97%B0%EB%8F%99 Jenkins + Slack 알림 연동 Jenkins 에서 빌드후 Slack에서 알림을 받을수 있도록 연동하도록 하겠습니다. 1. Slack에서 Jenkins에서 알림을 받을 채널을 하나 만들어 줍니다. 2.채널을 만든후 Slack 좌측 탭의 App 의 + 버튼을 클릭합� dnight.tistory.com https://phoby.github.io/slack-jenkins-notification/ Jenkins 빌드 실행 결과를 Slack 알림으로 받기 많은 개발자 분들이 개발하는 과정에서 테스트, 빌드, 배포를 자동화하는데 Jenkins를 사용하고 있습..
https://www.it-swarm.dev/ko/python/pythonpath%EC%97%90-%EC%98%81%EA%B5%AC%EC%A0%81%EC%9C%BC%EB%A1%9C-%EB%94%94%EB%A0%89%ED%86%A0%EB%A6%AC%EB%A5%BC-%EC%B6%94%EA%B0%80-%ED%95%98%EC%8B%9C%EA%B2%A0%EC%8A%B5%EB%8B%88%EA%B9%8C/969040692/ python — PYTHONPATH에 영구적으로 디렉토리를 추가 하시겠습니까? PYTHONPATH 환경 변수에 새 디렉토리를 추가해야합니다.이 디렉토리는 이전 내용의 콜론으로 구분됩니다. 유닉스의 어떤 형태로든, 여러분이 사용하고있는 쉘 (좋아하는 쉘에 따라 .profile 또는 무�� www.i..
https://askubuntu.com/questions/272637/i-have-a-problem-when-using-export-command I have a problem when using "export" command When I put sudo "export PROXY_LOCAL_NET_IP=10.113.35.108" I get the following error: sudo: export: command not found What should I do to resolve this problem? askubuntu.com
message.replace("\\n","\n") https://stackoverflow.com/questions/37195607/slack-api-using-n-for-new-lines-does-not-work-in-chat-postmessage-golang Slack API Using \n for new lines does not work in chat.postMessage (golang) I'm using the Slack web API to post messages to a channel in Go. I'm trying to support multi-line messages in the text field. According to the documentation simply adding a \n ..
@Component public class LoggerFilter implements Filter { private static final Logger LOGGER = LoggerFactory.getLogger(LoggerFilter.class); @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletRequest req = (HttpServletRequest) request; String ip = req.getHeader(HttpHeaders.X_FORWARDED_FOR); ip = ip =..
https://goni9071.tistory.com/380 spring boot - FilterRegistrationBean multiple filters spring boot 사용시 필터 여러개 적용하는 방법입니다. 아래 코드와 같이 FilterRegistrationBean Bean을 여러개 등록하면 됩니다. @Configuration public class WebMvcConfig extends WebMvcConfigurerAdapter {.. goni9071.tistory.com
git rm -f *.xxx git commit -a -m 'al xxx files removed' git push https://stackoverflow.com/questions/26021040/remove-pyc-files-from-git-remote-repository Remove .pyc files from Git remote repository Accidentally, I have pushed the .pyc files to the master repository. Now I want to delete them but I can´t do it. Is there any way to remove them directly from the Bitbucket site? stackoverflow.com
https://stackoverflow.com/questions/21431091/can-i-just-kill-mongod-to-stop-mongo/52091192#52091192 Can I just kill mongod to stop mongo? I am very new at Mongo. I am running mongod as described here in Mac OS X. I am running two mongod processes from the command line. If I need to stop the mongod processes I just execute kill
sudo chmod -R 777 /usr/local/mysql sudo chmod -R 777 /usr/local/mysql/data https://m.blog.naver.com/PostView.nhn?blogId=playhoos&logNo=221505255355&proxyReferer=https:%2F%2Fwww.google.com%2F mysql The server quit without updating PID file 에러 해결방법 * MAC 기준msql 서버 실행 시 The server quit without updating PID file 해당 에러가 발생할 경우... blog.naver.com
https://spark.apache.org/docs/2.3.0/api/sql/index.html Functions - Spark SQL, Built-in Functions Spark SQL, Built-in Functions Docs » Functions ! ! expr - Logical not. % expr1 % expr2 - Returns the remainder after expr1/expr2. Examples: > SELECT 2 % 1.8; 0.2 > SELECT MOD(2, 1.8); 0.2 & expr1 & expr2 - Returns the result of bitwise AND of expr1 and spark.apache.org
- Total
- Today
- Yesterday
- wlw
- follower
- 팔로워 수 세기
- Kluge
- 메디파크 내과 전문의 의학박사 김영수
- 테슬라 리퍼럴 코드
- 테슬라 레퍼럴 코드 확인
- 김달
- 테슬라 리퍼럴 코드 생성
- 할인
- COUNT
- 테슬라 크레딧 사용
- 클루지
- 테슬라
- 테슬라 레퍼럴
- 연애학개론
- 테슬라 추천
- Bot
- 유투브
- 책그림
- 테슬라 레퍼럴 적용 확인
- 인스타그램
- 개리마커스
- 어떻게 능력을 보여줄 것인가?
- 모델 Y 레퍼럴
- 테슬라 리퍼럴 코드 혜택
- 모델y
- 레퍼럴
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |