Github user doanduyhai commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/706#issuecomment-183683883
  
    Thanks @felixcheung 
    
    So I had a look into the log file, below is some extract:
    
    ```
    DEBUG [17:21:08,728][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE KEYSPACE IF NOT EXISTS zeppelin WITH REPLICATION = 
{'class':'SimpleStrategy', 'replication_factor':1} AND DURABLE_WRITES=false; 
    DEBUG [17:21:08,751][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE TABLE IF NOT EXISTS zeppelin.artists( name text PRIMARY KEY, born 
text, died text, country text, gender text, type text, styles list<text> ); 
    DEBUG [17:21:10,068][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE TABLE IF NOT EXISTS zeppelin.ts( key text PRIMARY KEY, val text ); 
    DEBUG [17:21:11,292][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE TABLE IF NOT EXISTS zeppelin.prepared( key text PRIMARY KEY, val text 
); 
    DEBUG [17:21:12,929][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE TYPE IF NOT EXISTS zeppelin.address( street_number int, street_name 
text, zip_code int, country text, extra_info list<text>, phone_numbers 
map<text,bigint> ); 
    DEBUG [17:21:16,426][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE TABLE IF NOT EXISTS zeppelin.users( login text, firstname text, 
lastname text, age int, deceased boolean, last_update timestamp, addresses 
frozen<address>, location frozen<tuple<text,bigint,text>>, PRIMARY KEY(login) 
); 
    DEBUG [17:21:17,848][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE KEYSPACE IF NOT EXISTS samples WITH REPLICATION = 
{'class':'SimpleStrategy', 'replication_factor':1} AND DURABLE_WRITES=false; 
    DEBUG [17:21:18,994][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE KEYSPACE IF NOT EXISTS live_data WITH REPLICATION = 
{'class':'SimpleStrategy', 'replication_factor':1} AND DURABLE_WRITES=false; 
    DEBUG [17:21:20,127][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE TYPE IF NOT EXISTS live_data.address ( number int, street text, zip 
int, city text, country text ); 
    DEBUG [17:21:21,903][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE TABLE IF NOT EXISTS live_data.complex_table( pk1 uuid, pk2 int, 
my_static1 text static, my_static2 text static, clustering1 timestamp, 
clustering2 int, clustering3 text, indexed1 text, indexed2 int, simple double, 
my_list list<text>, my_udt_list frozen<list<address>>, my_udt frozen<address>, 
my_map map<int,text>, key_indexed_map map<int,text>, entries_indexed_map 
map<int,text>, PRIMARY KEY((pk1,pk2),clustering1, clustering2, clustering3) ) 
WITH CLUSTERING ORDER BY (clustering1 DESC, clustering2 ASC, clustering3 DESC); 
    DEBUG [17:21:23,138][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE INDEX IF NOT EXISTS pk2idx ON live_data.complex_table(pk2); 
    DEBUG [17:21:24,490][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE INDEX IF NOT EXISTS clustering2idx ON 
live_data.complex_table(clustering2); 
    DEBUG [17:21:25,783][] ACHILLES_DDL_SCRIPT@:executeScript           SCRIPT 
: CREATE INDEX IF NOT EXISTS idx1 ON live_data.complex_table(indexed1); 
    ```
    
    If you look at the timestamp, it took more than 7 secondes to create a few 
tables in the embedded Cassandra. It means that the embedded Cassandra server 
was busy because not enough system resources. I guess the Travis CI server was 
quite busy when we launched the test.
    
    There is really nothing to do other than retry


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to