Hi, I've been trying to set up my development environment using docker by following the following instructions: https://cwiki. apache.org/confluence/display/IMPALA/Docker+for+Impala+Developers I'm able to get to the step where you run `source ~/Impala/bin/bootsrap_development.sh`. Everything runs fine until I get to this part: Loading TPC-DS data (logging to /home/impdev/Impala/logs/data_ loading/load-tpcds.log)...
That hangs for about 30 minutes and then prints the following (Also attached) before hanging again indefinitely until I quit out. I've tried multiple times and even deleted the docker image and started over. Any ideas? FAILED (Took: 26 min 21 sec) 'load-data tpch core' failed. Tail of log: INVALIDATE METADATA tpch_kudu.nation (invalidate-tpch-core-impala-generated.sql): INVALIDATE METADATA tpch_kudu.region (invalidate-tpch-core-impala-generated.sql): INVALIDATE METADATA tpch_kudu.orders (invalidate-tpch-core-impala-generated.sql): INVALIDATE METADATA tpch_kudu.customer (invalidate-tpch-core-impala-generated.sql): (load-tpch-core-impala-generated-parquet-none-none.sql): INSERT OVERWRITE TABLE tpch_parquet.lineitem SELECT * FROM tpch.lineitem (load-tpch-core-impala-generated-kudu-none-none.sql): INSERT INTO TABLE tpch_kudu.lineitem SELECT * FROM tpch.lineitem (load-tpch-core-impala-generated-parquet-none-none.sql): INSERT OVERWRITE TABLE tpch_parquet.part SELECT * FROM tpch.part (load-tpch-core-impala-generated-parquet-none-none.sql): INSERT OVERWRITE TABLE tpch_parquet.partsupp SELECT * FROM tpch.partsupp Data Loading from Impala failed with error: ImpalaBeeswaxException: Query aborted:Kudu error(s) reported, first error: Timed out: Failed to write batch of 23532 ops to tablet 3b2c6a27489d43028912a69ca7be8b71 after 4 attempt(s): GetTableLocations { table: 'impala::tpch_kudu.lineitem', partition-key: (HASH (l_orderkey): 1), attempt: 1 } failed: GetTableLocations RPC to 127.0.0.1:7051 timed out after 10.000s (SENT) Error in Kudu table 'impala::tpch_kudu.lineitem': Timed out: Failed to write batch of 23532 ops to tablet 3b2c6a27489d43028912a69ca7be8b71 after 4 attempt(s): GetTableLocations { table: 'impala::tpch_kudu.lineitem', partition-key: (HASH (l_orderkey): 1), attempt: 1 } failed: GetTableLocations RPC to 127.0.0.1:7051 timed out after 10.000s (SENT) (1 of 23532 similar) Traceback (most recent call last): (load-tpch-core-impala-generated-parquet-none-none.sql): INSERT OVERWRITE TABLE tpch_parquet.supplier SELECT * FROM tpch.supplier File "/home/impdev/Impala/bin/load-data.py", line 179, in exec_impala_query_from_file result = impala_client.execute(query) File "/home/impdev/Impala/tests/beeswax/impala_beeswax.py", line 173, in execute handle = self.__execute_query(query_string.strip(), user=user) File "/home/impdev/Impala/tests/beeswax/impala_beeswax.py", line 341, in __execute_query self.wait_for_completion(handle) File "/home/impdev/Impala/tests/beeswax/impala_beeswax.py", line 361, in wait_for_completion raise ImpalaBeeswaxException("Query aborted:" + error_log, None) ImpalaBeeswaxException: ImpalaBeeswaxException: Query aborted:Kudu error(s) reported, first error: Timed out: Failed to write batch of 23532 ops to tablet 3b2c6a27489d43028912a69ca7be8b71 after 4 attempt(s): GetTableLocations { table: 'impala::tpch_kudu.lineitem', partition-key: (HASH (l_orderkey): 1), attempt: 1 } failed: GetTableLocations RPC to 127.0.0.1:7051 timed out after 10.000s (SENT) Error in Kudu table 'impala::tpch_kudu.lineitem': Timed out: Failed to write batch of 23532 ops to tablet 3b2c6a27489d43028912a69ca7be8b71 after 4 attempt(s): GetTableLocations { table: 'impala::tpch_kudu.lineitem', partition-key: (HASH (l_orderkey): 1), attempt: 1 } failed: GetTableLocations RPC to 127.0.0.1:7051 timed out after 10.000s (SENT) (1 of 23532 similar) Thanks, Joe Koshakow