2013. 6. 2. 15:45 Test
'전체 글'에 해당되는 글 120건
- 2013.06.02 CodeConverter.exe
- 2013.01.03 데이터 시각화 도구들 모음
- 2012.12.22 Convert MySQL Queries to MongoDB Syntax
- 2012.07.03 Hadoop and Vertica: The Data Analytics Platform at Twitter
- 2012.06.17 Open APIs: What's Hot, What's Not?
- 2012.05.02 Tomcat in Production
- 2012.05.02 ubuntu java google protocol buffer install & example
- 2012.05.02 ubuntu 32bit? 64bit? dpkg -s libc6 | grep Arch
2013. 1. 3. 23:01 Big Data/InfoGraphic
데이터 시각화 도구들 모음
2012. 12. 22. 08:26 DataBase/MongoDB
Convert MySQL Queries to MongoDB Syntax
2012. 7. 3. 22:26 Big Data/Hadoop
Hadoop and Vertica: The Data Analytics Platform at Twitter
2012. 6. 17. 07:33 Architecture/OpenAPI
Open APIs: What's Hot, What's Not?
2012. 5. 2. 19:41 Web Server/Tomcat
Tomcat in Production
20 Tips for Using Tomcat in Production
http://digitalsanctum.com/2007/08/18/20-tips-for-using-tomcat-in-production/
누가 한글로 번역해놨네요...끙;; http://starplaying.tistory.com/290
multi-core setting?
http://stackoverflow.com/questions/3734229/how-to-configure-tomcat-to-use-more-than-1-cpu => 로그가 bottlenect이 될 수 있다.
http://kldp.org/node/108682 => thread pool size 늘려주라고..
http://www.mail-archive.com/users@tomcat.apache.org/msg52007.html => 자바는 멀티코어는 JVM에서 담당하고 64비트 컴퓨터에서 각 프로세스마다 많은 양의 virtual space가 필요하니 java heap spaces를 크게 주라고...
결국은 자바는 원래 멀티코어로 돌아가는거고 뭔가 bottlnect이 되는거가 있어서 1 cpu만 사용하는 것처럼 보이는 것일 듯! 잘 튜닝하면 됨.
아파치에서 톰캣을 부하 분산되도록 구성하는 방법
2012. 5. 2. 18:27 Programming/GPB
ubuntu java google protocol buffer install & example
GPB download: http://code.google.com/p/protobuf/downloads/list
sudo apt-get install g++
tar xvfz protobuf-2.4.1.tar.gz
./configure
make
sudo make install
protoc use:
protoc -I=$SRC_DIR --java_out=$DST_DIR $SRC_DIR/addressbook.proto
sudo apt-get install maven2
cd protobuf-2.4.1/java
mvn install
mvn package
add project :
protobuf-2.4.1/java/target/protobuf-java-2.4.1.jar
example:
https://developers.google.com/protocol-buffers/docs/javatutorial
2012. 5. 2. 17:58 OS/Linux