Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,18 @@
<version>${hyracks.version}</version>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-http</artifactId>
<version>${hyracks.fullstack.version}</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.6.Final</version>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>algebricks-compiler</artifactId>
Expand Down Expand Up @@ -670,6 +682,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<hyracks.version>0.2.17-incubating</hyracks.version>
<hyracks.fullstack.version>0.3.1</hyracks.fullstack.version>
<hyracks.version>0.3.0</hyracks.version>
<apache-rat-plugin.version>0.11</apache-rat-plugin.version>
</properties>
Expand All @@ -680,5 +694,6 @@
<module>vxquery-cli</module>
<module>vxquery-xtest</module>
<module>vxquery-benchmark</module>
<module>vxquery-rest</module>
</modules>
</project>
35 changes: 20 additions & 15 deletions src/site/apt/user_query.apt
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,26 @@ vxq "path-to"\test.xq
Command line options for all systems.

----------------------------------------
-O N : Optimization Level. Default: Full Optimization
-available-processors N : Number of available processors. (default java's available processors)
-client-net-ip-address VAL : IP Address of the ClusterController
-client-net-port N : Port of the ClusterController (default 1098)
-compileonly : Compile the query and stop
-frame-size N : Frame size in bytes. (default 65536)
-local-node-controllers N : Number of local node controllers (default 1)
-repeatexec N : Number of times to repeat execution
-showast : Show abstract syntax tree
-showoet : Show optimized expression tree
-showquery : Show query string
-showrp : Show Runtime plan
-showtet : Show translated expression tree
-timing : Produce timing information
-hdfs-conf VAL : The folder containing the HDFS configuration files
-O N : Optimization Level. (default: Full Optimization)
-available-processors N : Number of available processors. (default: java's available processors)
-buffer-size N : Disk read buffer size in bytes.
-compileonly : Compile the query and stop.
-frame-size N : Frame size in bytes. (default: 65,536)
-hdfs-conf VAL : Directory path to Hadoop configuration files
-join-hash-size N : Join hash size in bytes. (default: 67,108,864)
-local-node-controllers N : Number of local node controllers. (default: 1)
-maximum-data-size N : Maximum possible data size in bytes. (default: 150,323,855,000)
-repeatexec N : Number of times to repeat execution.
-rest-ip-address VAL : IP Address of the REST Server.
-rest-port N : Port of REST Server.
-result-file VAL : File path to save the query result.
-showast : Show abstract syntax tree.
-showoet : Show optimized expression tree.
-showquery : Show query string.
-showrp : Show Runtime plan.
-showtet : Show translated expression tree.
-timing : Produce timing information.
-timing-ignore-queries N : Ignore the first X number of quereies.
----------------------------------------

* Java Options
Expand Down
64 changes: 3 additions & 61 deletions vxquery-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -61,12 +62,6 @@
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
</plugin>
-->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
Expand All @@ -82,64 +77,11 @@
<dependencies>
<dependency>
<groupId>org.apache.vxquery</groupId>
<artifactId>apache-vxquery-core</artifactId>
<artifactId>apache-vxquery-rest</artifactId>
<version>0.7-SNAPSHOT</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-api</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-client</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-control-cc</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-control-nc</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>algebricks-common</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>algebricks-core</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-control-common</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-dataflow-std</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-hdfs-core</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hyracks</groupId>
<artifactId>hyracks-hdfs-2.x</artifactId>
</dependency>
</dependencies>



<reporting>
<plugins>
<plugin>
Expand Down
Loading