-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Misc fixes and performance improvements
- quote table names in all store DDL/DML/query strings to allow for special characters and keywords in table names - add retries in Utils.mapExecutors to correct cases where partitions may not get routed to all executors due to unavailable cores for long - use a separate MemoryOwner object instead of Tuple2 for better and more efficient hash - commented out execution memory acquire for COMPRESS/DECOMPRESS that cause frequent LME for some reason (needs to be looked further) and instead use store memory for all causes - use a single "addValue" operation when adding/subtracting from memory object pool instead of two operations of lookup and update as done by previous "addTo" method - changed TrieMap to ConcurrentHashMap in SnappyContext static executor tracker map - renamed SparkConnectorRDDHelper to SmartConnectorRDDHelper - correct scalastyle errors in TPCH_Queries, TPCH_Memsql, QueryExecutionJob - add JDODataStoreException to expected exception strings to correct occasional failures in quickstart precheckin
- Loading branch information
Sumedh Wale
committed
Feb 27, 2018
1 parent
57fba0e
commit 1cf9817
Showing
51 changed files
with
546 additions
and
452 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -286,3 +286,5 @@ case $cmd in | |
curl -X DELETE ${jobServerURL} $CURL_OPTS ${securePart} | ||
;; | ||
esac | ||
|
||
echo |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.