forked from apache/parquet-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request apache#1 from Parquet/master
update
- Loading branch information
Showing
157 changed files
with
7,473 additions
and
2,054 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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Who's using Parquet? | ||
====== | ||
(in alphabetical order) | ||
|
||
## Cloudera Impala | ||
|
||
<blockquote class="twitter-tweet"><p>We shipped Impala 0.7 (<a href="http://t.co/wxuV0wYShk">http://t.co/wxuV0wYShk</a>) - a whole ton of great new features including DDL, Parquet support and partitioned joins!</p>— Henry Robinson (@HenryR) <a href="https://twitter.com/HenryR/statuses/324222874011451392">April 16, 2013</a></blockquote> | ||
|
||
## Criteo | ||
|
||
<blockquote class="twitter-tweet"><p>Parquet: Efficient Columnar Storage for Apache <a href="https://twitter.com/search?q=%23Hadoop&src=hash">#Hadoop</a> <a href="http://t.co/He1xyv6NC3">http://t.co/He1xyv6NC3</a> via <a href="https://twitter.com/cloudera">@cloudera</a> - <a href="https://twitter.com/search?q=%23Criteo&src=hash">#Criteo</a> R&D very happy to contribute!</p>— Julien SIMON (@julsimon) <a href="https://twitter.com/julsimon/statuses/312114074911666177">March 14, 2013</a></blockquote> | ||
|
||
## Salesforce.com | ||
|
||
<blockquote class="twitter-tweet"><p>"<a href="https://twitter.com/ParquetFormat">@ParquetFormat</a> at <a href="http://t.co/lro7m7quuc">Salesforce.com</a>" <a href="http://t.co/IFskqF0FP3">http://t.co/IFskqF0FP3</a> via <a href="https://twitter.com/cloudera">@cloudera</a></p>— Twitter Open Source (@TwitterOSS) <a href="https://twitter.com/TwitterOSS/statuses/392734610116726784">October 22, 2013</a></blockquote> | ||
|
||
## Stripe | ||
|
||
<blockquote class="twitter-tweet"><p>We're moving basically all of our archival data at <a href="https://twitter.com/stripe">@stripe</a> into <a href="https://twitter.com/ParquetFormat">@ParquetFormat</a>, and I'm super pleased with how well it's working out.</p>— Avi Bryant (@avibryant) <a href="https://twitter.com/avibryant/statuses/391339949250715648">October 18, 2013</a></blockquote> | ||
|
||
|
||
<blockquote class="twitter-tweet"><p>Converting some data to Parquet on the Twitter clusters. I'm seeing a 28% space saving thanks to the compressibility of the column layout.</p>— Julien Le Dem (@J_) <a href="https://twitter.com/J_/statuses/315844725611581441">March 24, 2013</a></blockquote> | ||
|
||
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
echo "github username:" >&2 | ||
read username >&2 | ||
echo "github password:" >&2 | ||
read -s password >&2 | ||
|
||
curl -f -u $username:$password -s "https://api.github.com" > /dev/null | ||
if [ $? == 0 ] | ||
then | ||
echo "login successful" >&2 | ||
else | ||
echo "login failed" >&2 | ||
curl -u $username:$password -s "https://api.github.com" | ||
exit 1 | ||
fi | ||
|
||
echo "# Parquet #" | ||
|
||
git log | grep -E "Merge pull request|prepare release" | while read l | ||
do | ||
release=`echo $l | grep "\[maven-release-plugin\] prepare release" | cut -d "-" -f 4` | ||
PR=`echo $l| grep -E -o "Merge pull request #[^ ]*" | cut -d "#" -f 2` | ||
# echo $l | ||
if [ -n "$release" ] | ||
then | ||
echo | ||
echo "### Version $release ###" | ||
fi | ||
if [ -n "$PR" ] | ||
then | ||
JSON=`curl -u $username:$password -s https://api.github.com/repos/Parquet/parquet-mr/pulls/$PR | tr "\n" " "` | ||
DESC_RAW=$(echo $JSON | grep -Po '"title":.*?[^\\]",' | cut -d "\"" -f 4- | head -n 1 | sed -e "s/\\\\//g") | ||
DESC=$(echo ${DESC_RAW%\",}) | ||
echo "* ISSUE [$PR](https://github.com/Parquet/parquet-mr/pull/$PR): ${DESC}" | ||
fi | ||
done | ||
|
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.