Apache-Phoenix | origin/4.9-HBase-1.2 | Build Successful

2016-12-09 Thread Apache Jenkins Server
origin/4.9-HBase-1.2 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/origin/4.9-HBase-1.2

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.9/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.9/lastCompletedBuild/testReport/

Changes
No changes


Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


Apache-Phoenix | origin/4.9-HBase-1.2 | Build Successful

2016-12-09 Thread Apache Jenkins Server
origin/4.9-HBase-1.2 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/origin/4.9-HBase-1.2

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.9/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.9/lastCompletedBuild/testReport/

Changes
[tdsilva] PHOENIX-3522 Altering the mutability of a parent table does not



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


Apache-Phoenix | origin/4.9-HBase-1.1 | Build Successful

2016-12-09 Thread Apache Jenkins Server
origin/4.9-HBase-1.1 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/origin/4.9-HBase-1.1

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.9/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.9/lastCompletedBuild/testReport/

Changes
[tdsilva] PHOENIX-3522 Altering the mutability of a parent table does not



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


svn commit: r1773494 - /phoenix/site/publish/views.html

2016-12-09 Thread jamestaylor
Author: jamestaylor
Date: Sat Dec 10 00:22:32 2016
New Revision: 1773494

URL: http://svn.apache.org/viewvc?rev=1773494=rev
Log:
Update limitations section of views

Modified:
phoenix/site/publish/views.html

Modified: phoenix/site/publish/views.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/views.html?rev=1773494=1773493=1773494=diff
==
--- phoenix/site/publish/views.html (original)
+++ phoenix/site/publish/views.html Sat Dec 10 00:22:32 2016
@@ -208,7 +208,7 @@ VALUES('John Doe', CURRENT_DATE(), NEXT
   An INDEX over a VIEW is only maintained if the updates are made through 
the VIEW. Updates made through the underlying TABLE or the parent VIEW will not 
be reflected in the index (https://issues.apache.org/jira/browse/PHOENIX-1499;>PHOENIX-1499).
 
   A primary key column may not be added to a VIEW when its base table has 
a primary key constraint that ends with a variable length column (https://issues.apache.org/jira/browse/PHOENIX-2157;>PHOENIX-2157).
 
   A VIEW may be defined over only a single table through a simple SELECT * 
query. You may not create a VIEW over multiple, joined tables nor over 
aggregations (https://issues.apache.org/jira/browse/PHOENIX-1505;>PHOENIX-1505, https://issues.apache.org/jira/browse/PHOENIX-1506;>PHOENIX-1506).
 
-  When a column is added to a VIEW, the new column will not be added to 
any child VIEWs (PHOENIX-2054). 
+  When a column is added to a VIEW, the new column will not be 
automatically added to any child VIEWs (https://issues.apache.org/jira/browse/PHOENIX-2054;>PHOENIX-2054). 
The workaround is to manually add the column to the child VIEWs. 
   All columns must be projected into a VIEW when it’s created (i.e. only 
CREATE VIEW … AS SELECT * is supported). Note, however, you may drop non 
primary key columns inherited from the base table in a VIEW after it is created 
through the ALTER VIEW command. Providing a subset of columns and or 
expressions in the SELECT clause will be supported in a future release (https://issues.apache.org/jira/browse/PHOENIX-1507;>PHOENIX-1507).
 
   
 




svn commit: r1773493 - /phoenix/site/source/src/site/markdown/views.md

2016-12-09 Thread jamestaylor
Author: jamestaylor
Date: Sat Dec 10 00:22:12 2016
New Revision: 1773493

URL: http://svn.apache.org/viewvc?rev=1773493=rev
Log:
Update limitations section of views

Modified:
phoenix/site/source/src/site/markdown/views.md

Modified: phoenix/site/source/src/site/markdown/views.md
URL: 
http://svn.apache.org/viewvc/phoenix/site/source/src/site/markdown/views.md?rev=1773493=1773492=1773493=diff
==
--- phoenix/site/source/src/site/markdown/views.md (original)
+++ phoenix/site/source/src/site/markdown/views.md Sat Dec 10 00:22:12 2016
@@ -49,6 +49,6 @@ Views have the following restrictions:
 1. An INDEX over a VIEW is only maintained if the updates are made through the 
VIEW. Updates made through the underlying TABLE or the parent VIEW will not be 
reflected in the index 
([PHOENIX-1499](https://issues.apache.org/jira/browse/PHOENIX-1499)).
 3. A primary key column may not be added to a VIEW when its base table has a 
primary key constraint that ends with a variable length column 
([PHOENIX-2157](https://issues.apache.org/jira/browse/PHOENIX-2157)).
 4. A VIEW may be defined over only a single table through a simple SELECT * 
query. You may not create a VIEW over multiple, joined tables nor over 
aggregations 
([PHOENIX-1505](https://issues.apache.org/jira/browse/PHOENIX-1505), 
[PHOENIX-1506](https://issues.apache.org/jira/browse/PHOENIX-1506)). 
-5. When a column is added to a VIEW, the new column will not be added to any 
child VIEWs (PHOENIX-2054).
+5. When a column is added to a VIEW, the new column will not be automatically 
added to any child VIEWs 
([PHOENIX-2054](https://issues.apache.org/jira/browse/PHOENIX-2054)). The 
workaround is to manually add the column to the child VIEWs.
 6. All columns must be projected into a VIEW when it's created (i.e. only 
CREATE VIEW ... AS SELECT * is supported). Note, however, you may drop non 
primary key columns inherited from the base table in a VIEW after it is created 
through the ALTER VIEW command. Providing a subset of columns and or 
expressions in the SELECT clause will be supported in a future release 
([PHOENIX-1507](https://issues.apache.org/jira/browse/PHOENIX-1507)).
 




svn commit: r1773492 - in /phoenix/site: publish/ publish/language/ source/src/site/markdown/

2016-12-09 Thread jamestaylor
Author: jamestaylor
Date: Sat Dec 10 00:18:20 2016
New Revision: 1773492

URL: http://svn.apache.org/viewvc?rev=1773492=rev
Log:
Update limitations section of views

Modified:
phoenix/site/publish/Phoenix-in-15-minutes-or-less.html
phoenix/site/publish/array_type.html
phoenix/site/publish/building_website.html
phoenix/site/publish/bulk_dataload.html
phoenix/site/publish/download.html
phoenix/site/publish/dynamic_columns.html
phoenix/site/publish/faq.html
phoenix/site/publish/flume.html
phoenix/site/publish/hive_storage_handler.html
phoenix/site/publish/installation.html
phoenix/site/publish/issues.html
phoenix/site/publish/joins.html
phoenix/site/publish/language/datatypes.html
phoenix/site/publish/language/functions.html
phoenix/site/publish/language/index.html
phoenix/site/publish/mailing_list.html
phoenix/site/publish/metrics.html
phoenix/site/publish/news.html
phoenix/site/publish/paged.html
phoenix/site/publish/phoenix_mr.html
phoenix/site/publish/phoenix_on_emr.html
phoenix/site/publish/phoenix_orm.html
phoenix/site/publish/phoenix_python.html
phoenix/site/publish/phoenix_spark.html
phoenix/site/publish/pig_integration.html
phoenix/site/publish/recent.html
phoenix/site/publish/release.html
phoenix/site/publish/release_notes.html
phoenix/site/publish/resources.html
phoenix/site/publish/roadmap.html
phoenix/site/publish/salted.html
phoenix/site/publish/secondary_indexing.html
phoenix/site/publish/skip_scan.html
phoenix/site/publish/source.html
phoenix/site/publish/team.html
phoenix/site/publish/tracing.html
phoenix/site/publish/udf.html
phoenix/site/publish/update_statistics.html
phoenix/site/publish/upgrading.html
phoenix/site/publish/views.html
phoenix/site/source/src/site/markdown/views.md

Modified: phoenix/site/publish/Phoenix-in-15-minutes-or-less.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/Phoenix-in-15-minutes-or-less.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/Phoenix-in-15-minutes-or-less.html (original)
+++ phoenix/site/publish/Phoenix-in-15-minutes-or-less.html Sat Dec 10 00:18:20 
2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/array_type.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/array_type.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/array_type.html (original)
+++ phoenix/site/publish/array_type.html Sat Dec 10 00:18:20 2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/building_website.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/building_website.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/building_website.html (original)
+++ phoenix/site/publish/building_website.html Sat Dec 10 00:18:20 2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/bulk_dataload.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/bulk_dataload.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/bulk_dataload.html (original)
+++ phoenix/site/publish/bulk_dataload.html Sat Dec 10 00:18:20 2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/download.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/download.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/download.html (original)
+++ phoenix/site/publish/download.html Sat Dec 10 00:18:20 2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/dynamic_columns.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/dynamic_columns.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/dynamic_columns.html (original)
+++ phoenix/site/publish/dynamic_columns.html Sat Dec 10 00:18:20 2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/faq.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/faq.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/faq.html (original)
+++ phoenix/site/publish/faq.html Sat Dec 10 00:18:20 2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/flume.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/flume.html?rev=1773492=1773491=1773492=diff
==
--- phoenix/site/publish/flume.html (original)
+++ phoenix/site/publish/flume.html Sat Dec 10 00:18:20 2016
@@ -1,7 +1,7 @@
 
 
 
 

Modified: 

Apache-Phoenix | 4.x-HBase-0.98 | Build Successful

2016-12-09 Thread Apache Jenkins Server
4.x-HBase-0.98 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/4.x-HBase-0.98

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.x-HBase-0.98/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.x-HBase-0.98/lastCompletedBuild/testReport/

Changes
[tdsilva] PHOENIX-3522 Altering the mutability of a parent table does not



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


Apache Phoenix - Timeout crawler - Build https://builds.apache.org/job/Phoenix-master/1510/

2016-12-09 Thread Apache Jenkins Server
[...truncated 113 lines...]
Looking at the log, list of test(s) that timed-out:

Build:
https://builds.apache.org/job/Phoenix-master/1510/


Affected test class(es):
Set(['org.apache.phoenix.hive.HivePhoenixStoreIT'])


Build step 'Execute shell' marked build as failure
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any