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
osboxes deploy # ./deploy.sh | |
** Starting zipkin-cassandra | |
9fc184535addcaaaa55de0df11241c3e9c806c174986ef8142e4282f12198367 | |
** Starting zipkin-collector | |
ad7ac5b12f80463044b65e75b88fe36e245c98dacc0c9b46eeeee3310061d480 | |
2015/03/24 05:48:01 Error response from daemon: Cannot start container ad7ac5b12f80463044b65e75b88fe36e245c98dacc0c9b46eeeee3310061d480: Cannot link to a non running container: /zipkin-cassandra AS /zipkin-collector/db | |
** Starting zipkin-query | |
2ff7e1cb21a7198685be229a84f242a59028e11363cf2d8853bbe821075f08bd | |
2015/03/24 05:48:03 Error response from daemon: Cannot start container 2ff7e1cb21a7198685be229a84f242a59028e11363cf2d8853bbe821075f08bd: Cannot link to a non running container: /zipkin-cassandra AS /zipkin-query/db | |
** Starting zipkin-web |
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
DROP TABLE REVIVE_AD_VIS; | |
CREATE EXTERNAL TABLE REVIVE_AD_VIS ( hour String, bannerid STRING, campaignid STRING, zoneid STRING, count STRING ) | |
row format | |
delimited fields terminated by ',' | |
lines terminated by '\n' | |
STORED | |
AS TEXTFILE LOCATION 's3n://EMRresult/OutputFolder'; | |
INSERT OVERWRITE TABLE REVIVE_AD_VIS | |
SELECT |
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
/** | |
* same as SimpleChunkProcessor except otherwise shown | |
*/ | |
public class ConcurrentChunkProcessor<I, O> implements ChunkProcessor<I>, InitializingBean { | |
// ... | |
// example of parallel processing using Executor service, better create this by Spring and inject if available or | |
// use the same TaskExecutor from the Context | |
private static final int THREADPOOL_TIMEOUT_IN_SECONDS = 1; |
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
if(!$user = $this->db->get("user",array("api"=>"?"),array("limit"=>1),array($key))) return $this->api_build(array("error"=>1,"msg"=>"A valid API key is required to use this service.")); | |
$this->userid = $user->id; | |
$this->customDomain = $user->domain; | |
// Check Request type | |
if(!isset($_GET["url"]) && !isset($_GET["short"])) return $this->api_build(array("error"=>1,"msg"=>"Please enter a valid URL.")); | |
// Check if shorten request is made | |
if(isset($_GET["url"])){ | |
$array = array(); |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration debug="false"> | |
<!-- if-then-else form --> | |
<if condition='property("profile").contains("PROD")'> | |
<then> | |
<property name="LOGGER_LEVEL" value="INFO" /> | |
<property name="CONSOLE_LOGGER_LEVEL" value="WARN" /> | |
</then> | |
<else> | |
<property name="LOGGER_LEVEL" value="INFO" /> |
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
public class UserRequiredAnnotationInterceptor extends HandlerInterceptorAdapter | |
{ | |
@Override | |
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception | |
{ | |
if (handler == null) | |
{ | |
return true; | |
} |
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
public class UserRequiredAnnotationInterceptor extends HandlerInterceptorAdapter | |
{ | |
@Override | |
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception | |
{ | |
if (handler == null) | |
{ | |
return true; | |
} |
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
package com.bemobi.wap.config; | |
import java.util.Properties; | |
import javax.persistence.EntityManagerFactory; | |
import javax.sql.DataSource; | |
import org.hibernate.ejb.HibernatePersistence; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; |
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
For<IRepository<TipoServico>>().Use<Repository<TipoServico>>(); |