[jira] [Updated] (SPARK-4820) Spark build encounters File name too long on some encrypted filesystems

2015-03-17 Thread Sean Owen (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-4820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sean Owen updated SPARK-4820:
-
Component/s: (was: Build)
 Documentation
   Assignee: Theodore Vasiloudis
 Issue Type: Improvement  (was: Bug)

 Spark build encounters File name too long on some encrypted filesystems
 -

 Key: SPARK-4820
 URL: https://issues.apache.org/jira/browse/SPARK-4820
 Project: Spark
  Issue Type: Improvement
  Components: Documentation
Reporter: Patrick Wendell
Assignee: Theodore Vasiloudis
Priority: Minor
 Fix For: 1.4.0


 This was reported by Luchesar Cekov on github along with a proposed fix. The 
 fix has some potential downstream issues (it will modify the classnames) so 
 until we understand better how many users are affected we aren't going to 
 merge it. However, I'd like to include the issue and workaround here. If you 
 encounter this issue please comment on the JIRA so we can assess the 
 frequency.
 The issue produces this error:
 {code}
 [error] == Expanded type of tree ==
 [error] 
 [error] ConstantType(value = Constant(Throwable))
 [error] 
 [error] uncaught exception during compilation: java.io.IOException
 [error] File name too long
 [error] two errors found
 {code}
 The workaround is in maven under the compile options add: 
 {code}
 +  arg-Xmax-classfile-name/arg
 +  arg128/arg
 {code}
 In SBT add:
 {code}
 +scalacOptions in Compile ++= Seq(-Xmax-classfile-name, 128),
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-4820) Spark build encounters File name too long on some encrypted filesystems

2015-03-13 Thread Sean Owen (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-4820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sean Owen updated SPARK-4820:
-
Priority: Minor  (was: Major)

Yes, it is not resolved. I am not sure it is worth modifying the build for 
this, as there are few people develop Spark, fewer still who work on encrypted 
file systems, and those who do can modify it this way. The issue is that it 
changes the output of the build just because the source env was different, and 
I worry that this introduces important but subtle problems in the resulting 
assembly.

 Spark build encounters File name too long on some encrypted filesystems
 -

 Key: SPARK-4820
 URL: https://issues.apache.org/jira/browse/SPARK-4820
 Project: Spark
  Issue Type: Bug
  Components: Build
Reporter: Patrick Wendell
Priority: Minor

 This was reported by Luchesar Cekov on github along with a proposed fix. The 
 fix has some potential downstream issues (it will modify the classnames) so 
 until we understand better how many users are affected we aren't going to 
 merge it. However, I'd like to include the issue and workaround here. If you 
 encounter this issue please comment on the JIRA so we can assess the 
 frequency.
 The issue produces this error:
 {code}
 [error] == Expanded type of tree ==
 [error] 
 [error] ConstantType(value = Constant(Throwable))
 [error] 
 [error] uncaught exception during compilation: java.io.IOException
 [error] File name too long
 [error] two errors found
 {code}
 The workaround is in maven under the compile options add: 
 {code}
 +  arg-Xmax-classfile-name/arg
 +  arg128/arg
 {code}
 In SBT add:
 {code}
 +scalacOptions in Compile ++= Seq(-Xmax-classfile-name, 128),
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-4820) Spark build encounters File name too long on some encrypted filesystems

2015-02-07 Thread Sean Owen (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-4820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sean Owen updated SPARK-4820:
-
Component/s: Build

 Spark build encounters File name too long on some encrypted filesystems
 -

 Key: SPARK-4820
 URL: https://issues.apache.org/jira/browse/SPARK-4820
 Project: Spark
  Issue Type: Bug
  Components: Build
Reporter: Patrick Wendell

 This was reported by Luchesar Cekov on github along with a proposed fix. The 
 fix has some potential downstream issues (it will modify the classnames) so 
 until we understand better how many users are affected we aren't going to 
 merge it. However, I'd like to include the issue and workaround here. If you 
 encounter this issue please comment on the JIRA so we can assess the 
 frequency.
 The issue produces this error:
 {code}
 [error] == Expanded type of tree ==
 [error] 
 [error] ConstantType(value = Constant(Throwable))
 [error] 
 [error] uncaught exception during compilation: java.io.IOException
 [error] File name too long
 [error] two errors found
 {code}
 The workaround is in maven under the compile options add: 
 {code}
 +  arg-Xmax-classfile-name/arg
 +  arg128/arg
 {code}
 In SBT add:
 {code}
 +scalacOptions in Compile ++= Seq(-Xmax-classfile-name, 128),
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-4820) Spark build encounters File name too long on some encrypted filesystems

2014-12-10 Thread Patrick Wendell (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-4820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Patrick Wendell updated SPARK-4820:
---
Description: 
This was reported by Luchesar Cekov on github along with a proposed fix. The 
fix has some potential downstream issues (it will modify the classnames) so 
until we understand better how many users are affected we aren't going to merge 
it. However, I'd like to include the issue and workaround here. If you 
encounter this issue please comment on the JIRA so we can assess the frequency.

The issue produces this error:
{code}
[error] == Expanded type of tree ==
[error] 
[error] ConstantType(value = Constant(Throwable))
[error] 
[error] uncaught exception during compilation: java.io.IOException
[error] File name too long
[error] two errors found
{code}

The workaround is in maven under the compile options add: 

{code}
+  arg-Xmax-classfile-name/arg
+  arg128/arg
{code}

In SBT add:

{code}
+scalacOptions in Compile ++= Seq(-Xmax-classfile-name, 128),
{code}


  was:
This was reported by Luchesar Cekov on github along with a proposed fix. The 
fix has some potential downstream issues (it will modify the classnames) so 
until we understand better how many users are affected we aren't going to merge 
it. However, I'd like to include the issue and workaround here.

The issue produces this error:
{code}
[error] == Expanded type of tree ==
[error] 
[error] ConstantType(value = Constant(Throwable))
[error] 
[error] uncaught exception during compilation: java.io.IOException
[error] File name too long
[error] two errors found
{code}

The workaround is in maven under the compile options add: 

{code}
+  arg-Xmax-classfile-name/arg
+  arg128/arg
{code}

In SBT add:

{code}
+scalacOptions in Compile ++= Seq(-Xmax-classfile-name, 128),
{code}



 Spark build encounters File name too long on some encrypted filesystems
 -

 Key: SPARK-4820
 URL: https://issues.apache.org/jira/browse/SPARK-4820
 Project: Spark
  Issue Type: Bug
Reporter: Patrick Wendell

 This was reported by Luchesar Cekov on github along with a proposed fix. The 
 fix has some potential downstream issues (it will modify the classnames) so 
 until we understand better how many users are affected we aren't going to 
 merge it. However, I'd like to include the issue and workaround here. If you 
 encounter this issue please comment on the JIRA so we can assess the 
 frequency.
 The issue produces this error:
 {code}
 [error] == Expanded type of tree ==
 [error] 
 [error] ConstantType(value = Constant(Throwable))
 [error] 
 [error] uncaught exception during compilation: java.io.IOException
 [error] File name too long
 [error] two errors found
 {code}
 The workaround is in maven under the compile options add: 
 {code}
 +  arg-Xmax-classfile-name/arg
 +  arg128/arg
 {code}
 In SBT add:
 {code}
 +scalacOptions in Compile ++= Seq(-Xmax-classfile-name, 128),
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org