You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ra...@apache.org on 2016/08/14 02:52:59 UTC

[1/2] incubator-carbondata git commit: add carbon logo

Repository: incubator-carbondata
Updated Branches:
  refs/heads/master ef9f3287e -> d545910c0


add carbon logo

add carbon logo

add carbon logo

add carbon logo

add carbon logo

add carbon logo

add carbon logo


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/0fdb53a1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/0fdb53a1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/0fdb53a1

Branch: refs/heads/master
Commit: 0fdb53a156ed70145dea14377aeab53026339192
Parents: ef9f328
Author: chenliang613 <ch...@apache.org>
Authored: Wed Aug 3 20:55:20 2016 +0800
Committer: ravipesala <ra...@gmail.com>
Committed: Sun Aug 14 08:20:37 2016 +0530

----------------------------------------------------------------------
 README.md                                       |   9 ++-
 ...Building-CarbonData-And-IDE-Configuartion.md |  73 +++++++++++++++++++
 ...stalling-CarbonData-And-IDE-Configuartion.md |  73 -------------------
 docs/images/format/CarbonData_logo.png          | Bin 0 -> 10971 bytes
 4 files changed, 78 insertions(+), 77 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/0fdb53a1/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 0b6535b..bb8468a 100644
--- a/README.md
+++ b/README.md
@@ -17,9 +17,10 @@
     under the License.
 -->
 
-# Apache CarbonData
-CarbonData is a new Apache Hadoop native file format for faster 
-interactive query using advanced columnar storage, index, compression 
+<img src="/docs/images/format/CarbonData_logo.png" width="200" height="40">
+
+Apache CarbonData is a new big data file format for faster
+interactive query using advanced columnar storage, index, compression
 and encoding techniques to improve computing efficiency, in turn it will 
 help speedup queries an order of magnitude faster over PetaBytes of data. 
 
@@ -59,7 +60,7 @@ This guide document introduce [how to contribute to CarbonData](https://cwiki.ap
 ### Contact us
 To get involved in CarbonData:
 
-* We discuss design and implementation issues on [dev@carbondata.incubator.apache.org](mailto:dev@carbondata.incubator.apache.org) Join by emailing [dev-subscribe@carbondata.incubator.apache.org](mailto:dev-subscribe@carbondata.incubator.apache.org)
+* First join by emailing [dev-subscribe@carbondata.incubator.apache.org](mailto:dev-subscribe@carbondata.incubator.apache.org),then discuss design and implementation issues on [dev@carbondata.incubator.apache.org](mailto:dev@carbondata.incubator.apache.org)
 * Report issues on [Jira](https://issues.apache.org/jira/browse/CARBONDATA).
 
 ## About

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/0fdb53a1/docs/Building-CarbonData-And-IDE-Configuartion.md
----------------------------------------------------------------------
diff --git a/docs/Building-CarbonData-And-IDE-Configuartion.md b/docs/Building-CarbonData-And-IDE-Configuartion.md
new file mode 100644
index 0000000..941bcc3
--- /dev/null
+++ b/docs/Building-CarbonData-And-IDE-Configuartion.md
@@ -0,0 +1,73 @@
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+### Building CarbonData
+Prerequisites for building CarbonData:
+* Unix-like environment (Linux, Mac OS X)
+* [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
+* [Apache Maven (we recommend version 3.3 or later)](https://maven.apache.org/download.cgi)
+* [Java 7 or 8](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
+* Scala 2.10
+* [Apache Thrift 0.9.3](https://thrift.apache.org/download)
+
+I. Clone CarbonData
+```
+$ git clone https://github.com/apache/incubator-carbondata.git
+```
+II. Build the project 
+* Build without test.By default carbon takes Spark 1.5.2 to build the project
+```
+$ mvn -DskipTests clean package 
+```
+* Build with different spark versions
+```
+$ mvn -DskipTests -Pspark-1.5 -Dspark.version=1.5.0 clean package
+$ mvn -DskipTests -Pspark-1.5 -Dspark.version=1.5.1 clean package
+$ mvn -DskipTests -Pspark-1.5 -Dspark.version=1.5.2 clean package
+ 
+$ mvn -DskipTests -Pspark-1.6 -Dspark.version=1.6.0 clean package
+$ mvn -DskipTests -Pspark-1.6 -Dspark.version=1.6.1 clean package
+$ mvn -DskipTests -Pspark-1.6 -Dspark.version=1.6.2 clean package
+```
+* Build the assembly jar which includes Spark and Hadoop jars
+```
+$ mvn clean -DskipTests -Pinclude-all package
+```
+* Build with test
+```
+$ mvn clean package
+```
+
+### Developing CarbonData
+The CarbonData committers use IntelliJ IDEA and Eclipse IDE to develop.
+
+#### IntelliJ IDEA
+* Download IntelliJ at https://www.jetbrains.com/idea/ and install the Scala plug-in for IntelliJ at http://plugins.jetbrains.com/plugin/?id=1347
+* Go to "File -> Import Project", locate the CarbonData source directory, and select "Maven Project".
+* In the Import Wizard, select "Import Maven projects automatically" and leave other settings at their default. 
+* Leave other settings at their default and you should be able to start your development.
+* When you run the scala test, sometimes you will get out of memory exception. You can increase your VM memory usage by the following setting, for example:
+```
+-XX:MaxPermSize=512m -Xmx3072m
+```
+You can also make those setting to be the default by setting to the "Defaults -> ScalaTest".
+
+#### Eclipse
+* Download the Scala IDE (preferred) or install the scala plugin to Eclipse.
+* Import the CarbonData Maven projects ("File" -> "Import" -> "Maven" -> "Existing Maven Projects" -> locate the CarbonData source directory).

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/0fdb53a1/docs/Installing-CarbonData-And-IDE-Configuartion.md
----------------------------------------------------------------------
diff --git a/docs/Installing-CarbonData-And-IDE-Configuartion.md b/docs/Installing-CarbonData-And-IDE-Configuartion.md
deleted file mode 100644
index 941bcc3..0000000
--- a/docs/Installing-CarbonData-And-IDE-Configuartion.md
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-### Building CarbonData
-Prerequisites for building CarbonData:
-* Unix-like environment (Linux, Mac OS X)
-* [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
-* [Apache Maven (we recommend version 3.3 or later)](https://maven.apache.org/download.cgi)
-* [Java 7 or 8](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
-* Scala 2.10
-* [Apache Thrift 0.9.3](https://thrift.apache.org/download)
-
-I. Clone CarbonData
-```
-$ git clone https://github.com/apache/incubator-carbondata.git
-```
-II. Build the project 
-* Build without test.By default carbon takes Spark 1.5.2 to build the project
-```
-$ mvn -DskipTests clean package 
-```
-* Build with different spark versions
-```
-$ mvn -DskipTests -Pspark-1.5 -Dspark.version=1.5.0 clean package
-$ mvn -DskipTests -Pspark-1.5 -Dspark.version=1.5.1 clean package
-$ mvn -DskipTests -Pspark-1.5 -Dspark.version=1.5.2 clean package
- 
-$ mvn -DskipTests -Pspark-1.6 -Dspark.version=1.6.0 clean package
-$ mvn -DskipTests -Pspark-1.6 -Dspark.version=1.6.1 clean package
-$ mvn -DskipTests -Pspark-1.6 -Dspark.version=1.6.2 clean package
-```
-* Build the assembly jar which includes Spark and Hadoop jars
-```
-$ mvn clean -DskipTests -Pinclude-all package
-```
-* Build with test
-```
-$ mvn clean package
-```
-
-### Developing CarbonData
-The CarbonData committers use IntelliJ IDEA and Eclipse IDE to develop.
-
-#### IntelliJ IDEA
-* Download IntelliJ at https://www.jetbrains.com/idea/ and install the Scala plug-in for IntelliJ at http://plugins.jetbrains.com/plugin/?id=1347
-* Go to "File -> Import Project", locate the CarbonData source directory, and select "Maven Project".
-* In the Import Wizard, select "Import Maven projects automatically" and leave other settings at their default. 
-* Leave other settings at their default and you should be able to start your development.
-* When you run the scala test, sometimes you will get out of memory exception. You can increase your VM memory usage by the following setting, for example:
-```
--XX:MaxPermSize=512m -Xmx3072m
-```
-You can also make those setting to be the default by setting to the "Defaults -> ScalaTest".
-
-#### Eclipse
-* Download the Scala IDE (preferred) or install the scala plugin to Eclipse.
-* Import the CarbonData Maven projects ("File" -> "Import" -> "Maven" -> "Existing Maven Projects" -> locate the CarbonData source directory).

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/0fdb53a1/docs/images/format/CarbonData_logo.png
----------------------------------------------------------------------
diff --git a/docs/images/format/CarbonData_logo.png b/docs/images/format/CarbonData_logo.png
new file mode 100644
index 0000000..bc09b23
Binary files /dev/null and b/docs/images/format/CarbonData_logo.png differ


[2/2] incubator-carbondata git commit: Add CarbonData logo and refine readme This closes #59

Posted by ra...@apache.org.
Add CarbonData logo and refine readme This closes #59


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/d545910c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/d545910c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/d545910c

Branch: refs/heads/master
Commit: d545910c0ba23261fa17f38f546ebb512a670f88
Parents: ef9f328 0fdb53a
Author: ravipesala <ra...@gmail.com>
Authored: Sun Aug 14 08:22:12 2016 +0530
Committer: ravipesala <ra...@gmail.com>
Committed: Sun Aug 14 08:22:12 2016 +0530

----------------------------------------------------------------------
 README.md                                       |   9 ++-
 ...Building-CarbonData-And-IDE-Configuartion.md |  73 +++++++++++++++++++
 ...stalling-CarbonData-And-IDE-Configuartion.md |  73 -------------------
 docs/images/format/CarbonData_logo.png          | Bin 0 -> 10971 bytes
 4 files changed, 78 insertions(+), 77 deletions(-)
----------------------------------------------------------------------