[jira] [Updated] (SQOOP-3329) Remove Kite dependency from the Sqoop project

2018-07-17 Thread Szabolcs Vasas (JIRA)


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

Szabolcs Vasas updated SQOOP-3329:
--
Attachment: SQOOP-3329.patch

> Remove Kite dependency from the Sqoop project
> -
>
> Key: SQOOP-3329
> URL: https://issues.apache.org/jira/browse/SQOOP-3329
> Project: Sqoop
>  Issue Type: Sub-task
>Affects Versions: 1.4.7
>Reporter: Szabolcs Vasas
>Assignee: Szabolcs Vasas
>Priority: Major
> Attachments: SQOOP-3329.patch
>
>
> Now that we have an alternative solution for reading and writing Parquet 
> files we can remove the Kite dependency and the classes using Kite from the 
> Sqoop project.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


Re: Review Request 66300: Upgrade to Hadoop 3.0.0

2018-07-17 Thread daniel voros

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/66300/#review206151
---



I've been working on the failure of 
`TestHiveMiniCluster#testInsertedRowCanBeReadFromTable[KerberosAuthenticationConfiguration]`
 and wanted to give an update.

I think this is the meaningful part of the quite verbose logs:

```
java.lang.Exception: 
org.apache.hadoop.mapreduce.task.reduce.Shuffle$ShuffleError: error in shuffle 
in localfetcher#1
at 
org.apache.hadoop.mapred.LocalJobRunner$Job.runTasks(LocalJobRunner.java:492)
at 
org.apache.hadoop.mapred.LocalJobRunner$Job.run(LocalJobRunner.java:559)
Caused by: org.apache.hadoop.mapreduce.task.reduce.Shuffle$ShuffleError: error 
in shuffle in localfetcher#1
at org.apache.hadoop.mapreduce.task.reduce.Shuffle.run(Shuffle.java:134)
at org.apache.hadoop.mapred.ReduceTask.run(ReduceTask.java:377)
at 
org.apache.hadoop.mapred.LocalJobRunner$Job$ReduceTaskRunnable.run(LocalJobRunner.java:347)
at 
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.ExceptionInInitializerError
at org.apache.hadoop.mapred.SpillRecord.(SpillRecord.java:71)
at org.apache.hadoop.mapred.SpillRecord.(SpillRecord.java:62)
at org.apache.hadoop.mapred.SpillRecord.(SpillRecord.java:57)
at 
org.apache.hadoop.mapreduce.task.reduce.LocalFetcher.copyMapOutput(LocalFetcher.java:125)
at 
org.apache.hadoop.mapreduce.task.reduce.LocalFetcher.doCopy(LocalFetcher.java:103)
at 
org.apache.hadoop.mapreduce.task.reduce.LocalFetcher.run(LocalFetcher.java:86)
Caused by: java.lang.RuntimeException: Secure IO is not possible without native 
code extensions.
at org.apache.hadoop.io.SecureIOUtils.(SecureIOUtils.java:71)
... 6 more
```

This is happening in MR's shuffle phase. I was trying to find out how tests in 
Hive don't run into this and found out that Secure MR is not supported there. 
See here: 
https://github.com/apache/hive/blob/dceeefbdf5e4f6fea83cb6ca5c11fbac10e77677/itests/util/src/main/java/org/apache/hive/jdbc/miniHS2/MiniHS2.java#L178-L180

I'm trying to get Tez working with our MiniHiveCluster, but did not succeed 
yet. The kerberos ticket is not picked up for some reason:

```
java.io.IOException: org.apache.hadoop.security.AccessControlException: Client 
cannot authenticate via:[TOKEN, KERBEROS]
at org.apache.hadoop.ipc.Client$Connection$1.run(Client.java:755)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAs(Subject.java:422)
at 
org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1682)
at 
org.apache.hadoop.ipc.Client$Connection.handleSaslConnectionFailure(Client.java:718)
at 
org.apache.hadoop.ipc.Client$Connection.setupIOstreams(Client.java:811)
at org.apache.hadoop.ipc.Client$Connection.access$3500(Client.java:409)
at org.apache.hadoop.ipc.Client.getConnection(Client.java:1552)
at org.apache.hadoop.ipc.Client.call(Client.java:1383)
at org.apache.hadoop.ipc.Client.call(Client.java:1347)
at 
org.apache.hadoop.ipc.ProtobufRpcEngine$Invoker.invoke(ProtobufRpcEngine.java:228)
at 
org.apache.hadoop.ipc.ProtobufRpcEngine$Invoker.invoke(ProtobufRpcEngine.java:116)
at com.sun.proxy.$Proxy81.getAMStatus(Unknown Source)
at 
org.apache.tez.client.TezClient.getAppMasterStatus(TezClient.java:772)
at org.apache.tez.client.TezClient.waitTillReady(TezClient.java:909)
at org.apache.tez.client.TezClient.waitTillReady(TezClient.java:880)
at 
org.apache.hadoop.hive.ql.exec.tez.TezSessionState.startSessionAndContainers(TezSessionState.java:434)
at 
org.apache.hadoop.hive.ql.exec.tez.TezSessionState.openInternal(TezSessionState.java:360)
at 
org.apache.hadoop.hive.ql.exec.tez.TezSessionPoolSession.openInternal(TezSessionPoolSession.java:124)
at 
org.apache.hadoop.hive.ql.exec.tez.TezSessionState.open(TezSessionState.java:237)
at 
org.apache.hadoop.hive.ql.exec.tez.TezTask.ensureSessionHasResources(TezTask.java:364)
at org.apache.hadoop.hive.ql.exec.tez.TezTask.execute(TezTask.java:191)
at org.apache.hadoop.hive.ql.exec.Task.executeTask(Task.java:205)
at 
org.apache.hadoop.hive.ql.exec.TaskRunner.runSequential(TaskRunner.java:97)
at org.apache.hadoop.hive.ql.Driver.launchTask(Driver.java:2479)
at org.apache.hadoop.hive.ql.Driver.execute(Driver.java:2150)
  

Re: Review Request 67929: Remove Kite dependency from the Sqoop project

2018-07-17 Thread Fero Szabo via Review Board

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/67929/#review206150
---


Ship it!




A long-awaited patch! :)

(Anyway, you could link the review to the Jira as well.)

- Fero Szabo


On July 16, 2018, 3:56 p.m., Szabolcs Vasas wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/67929/
> ---
> 
> (Updated July 16, 2018, 3:56 p.m.)
> 
> 
> Review request for Sqoop.
> 
> 
> Bugs: SQOOP-3329
> https://issues.apache.org/jira/browse/SQOOP-3329
> 
> 
> Repository: sqoop-trunk
> 
> 
> Description
> ---
> 
> - Removed kitesdk dependency from ivy.xml
> - Removed Kite Dataset API based Parquet import implementation
> - Since Parquet library was a transitive dependency of the Kite SDK I added 
> org.apache.parquet.avro-parquet 1.9 as a direct dependency
> - In this dependency the parquet package has changed to org.apache.parquet so 
> I needed to make changes in several classes according to this
> - Removed all the Parquet related test cases from TestHiveImport. These 
> scenarios are already covered in TestHiveServer2ParquetImport.
> - Modified the documentation to reflect these changes.
> 
> 
> Diffs
> -
> 
>   ivy.xml 1f587f3eb 
>   ivy/libraries.properties 565a8bf50 
>   src/docs/user/hive-notes.txt af97d94b3 
>   src/docs/user/import.txt a2c16d956 
>   src/java/org/apache/sqoop/SqoopOptions.java cc1b75281 
>   src/java/org/apache/sqoop/avro/AvroUtil.java 1663b1d1a 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/ParquetJobConfiguratorImplementation.java
>  050c85488 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/hadoop/HadoopParquetExportJobConfigurator.java
>  2180cc20e 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/hadoop/HadoopParquetImportJobConfigurator.java
>  90b910a34 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/hadoop/HadoopParquetMergeJobConfigurator.java
>  66ebc5b80 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteMergeParquetReducer.java 
> 02816d77f 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetExportJobConfigurator.java
>  6ebc5a31b 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetExportMapper.java 
> 122ff3fc9 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetImportJobConfigurator.java
>  7e179a27d 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetImportMapper.java 
> 0a91e4a20 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetJobConfiguratorFactory.java
>  bd07c09f4 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetMergeJobConfigurator.java
>  ed045cd14 
>   src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetUtils.java 
> a4768c932 
>   src/java/org/apache/sqoop/tool/BaseSqoopTool.java 87fc5e987 
>   src/test/org/apache/sqoop/TestMerge.java 2b3280a5a 
>   src/test/org/apache/sqoop/TestParquetExport.java 0fab1880c 
>   src/test/org/apache/sqoop/TestParquetImport.java b1488e8af 
>   src/test/org/apache/sqoop/TestParquetIncrementalImportMerge.java adad0cc11 
>   src/test/org/apache/sqoop/hive/TestHiveImport.java 436f0e512 
>   src/test/org/apache/sqoop/hive/TestHiveServer2ParquetImport.java b55179a4f 
>   src/test/org/apache/sqoop/tool/TestBaseSqoopTool.java dbda8b7f4 
>   src/test/org/apache/sqoop/util/ParquetReader.java f1c2fe10a 
> 
> 
> Diff: https://reviews.apache.org/r/67929/diff/1/
> 
> 
> Testing
> ---
> 
> Ran unit and third party tests.
> 
> 
> Thanks,
> 
> Szabolcs Vasas
> 
>



Re: Review Request 67929: Remove Kite dependency from the Sqoop project

2018-07-17 Thread Boglarka Egyed

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/67929/#review206148
---


Ship it!




Hi Szabolcs,

We have reached a great milestone with this patch! :)

Thanks for all your effort on removing the Kite dependency and enabling to use 
Parquet for reading/writing parquet!

Your patch looks good, unit and 3rd party tests passed.

Thanks,
Bogi

- Boglarka Egyed


On July 16, 2018, 3:56 p.m., Szabolcs Vasas wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/67929/
> ---
> 
> (Updated July 16, 2018, 3:56 p.m.)
> 
> 
> Review request for Sqoop.
> 
> 
> Bugs: SQOOP-3329
> https://issues.apache.org/jira/browse/SQOOP-3329
> 
> 
> Repository: sqoop-trunk
> 
> 
> Description
> ---
> 
> - Removed kitesdk dependency from ivy.xml
> - Removed Kite Dataset API based Parquet import implementation
> - Since Parquet library was a transitive dependency of the Kite SDK I added 
> org.apache.parquet.avro-parquet 1.9 as a direct dependency
> - In this dependency the parquet package has changed to org.apache.parquet so 
> I needed to make changes in several classes according to this
> - Removed all the Parquet related test cases from TestHiveImport. These 
> scenarios are already covered in TestHiveServer2ParquetImport.
> - Modified the documentation to reflect these changes.
> 
> 
> Diffs
> -
> 
>   ivy.xml 1f587f3eb 
>   ivy/libraries.properties 565a8bf50 
>   src/docs/user/hive-notes.txt af97d94b3 
>   src/docs/user/import.txt a2c16d956 
>   src/java/org/apache/sqoop/SqoopOptions.java cc1b75281 
>   src/java/org/apache/sqoop/avro/AvroUtil.java 1663b1d1a 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/ParquetJobConfiguratorImplementation.java
>  050c85488 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/hadoop/HadoopParquetExportJobConfigurator.java
>  2180cc20e 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/hadoop/HadoopParquetImportJobConfigurator.java
>  90b910a34 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/hadoop/HadoopParquetMergeJobConfigurator.java
>  66ebc5b80 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteMergeParquetReducer.java 
> 02816d77f 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetExportJobConfigurator.java
>  6ebc5a31b 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetExportMapper.java 
> 122ff3fc9 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetImportJobConfigurator.java
>  7e179a27d 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetImportMapper.java 
> 0a91e4a20 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetJobConfiguratorFactory.java
>  bd07c09f4 
>   
> src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetMergeJobConfigurator.java
>  ed045cd14 
>   src/java/org/apache/sqoop/mapreduce/parquet/kite/KiteParquetUtils.java 
> a4768c932 
>   src/java/org/apache/sqoop/tool/BaseSqoopTool.java 87fc5e987 
>   src/test/org/apache/sqoop/TestMerge.java 2b3280a5a 
>   src/test/org/apache/sqoop/TestParquetExport.java 0fab1880c 
>   src/test/org/apache/sqoop/TestParquetImport.java b1488e8af 
>   src/test/org/apache/sqoop/TestParquetIncrementalImportMerge.java adad0cc11 
>   src/test/org/apache/sqoop/hive/TestHiveImport.java 436f0e512 
>   src/test/org/apache/sqoop/hive/TestHiveServer2ParquetImport.java b55179a4f 
>   src/test/org/apache/sqoop/tool/TestBaseSqoopTool.java dbda8b7f4 
>   src/test/org/apache/sqoop/util/ParquetReader.java f1c2fe10a 
> 
> 
> Diff: https://reviews.apache.org/r/67929/diff/1/
> 
> 
> Testing
> ---
> 
> Ran unit and third party tests.
> 
> 
> Thanks,
> 
> Szabolcs Vasas
> 
>



[jira] [Deleted] (SQOOP-3342) rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order by updated DESC

2018-07-17 Thread Mark Thomas (JIRA)


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

Mark Thomas deleted SQOOP-3342:
---


> rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order 
> by updated DESC
> -
>
> Key: SQOOP-3342
> URL: https://issues.apache.org/jira/browse/SQOOP-3342
> Project: Sqoop
>  Issue Type: New Feature
>Reporter: Mohamedvolt 
>Priority: Major
>
> rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order 
> by updated DESC



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Deleted] (SQOOP-3340) Mohamedvolt

2018-07-17 Thread Mark Thomas (JIRA)


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

Mark Thomas deleted SQOOP-3340:
---


> Mohamedvolt
> ---
>
> Key: SQOOP-3340
> URL: https://issues.apache.org/jira/browse/SQOOP-3340
> Project: Sqoop
>  Issue Type: Bug
> Environment: 
> formated.bather:_Resubmeesonhttps://api.hipchat.com/sign_in?d=%2Fusers%2Fauthorize%3Fredirect_uri%3Dhttps%3A%2F%2Fissues.apache.org%2Fjira%2Frest%2Fhipchat%2Fintegration%2Flatest%2Foauth2%2Fcomplete%26response_type%3Dcode%26scope%3Dadmin_group%2Bview_group%2Bmanage_rooms%26client_id%3D1e4caa2b-674c-4401-9a6a-dd9245f5190c%26state%3Da36f2ebd1f2e04c76ae66e5869508fa6d19f8bf7
>Reporter: Mohamedvolt 
>Priority: Minor
>  Labels: inbox
>
> release.bat all data
> http://www.w3.org/2005/Atom; 
> xmlns:atlassian="http://streams.atlassian.com/syndication/general/1.0;>https://issues.apache.org/jira/activity?maxResults=10streams=user+IS+mohamedvoltos_authType=basictitle=undefined  
> href="https://issues.apache.org/jira/activity?maxResults=10streams=user+IS+mohamedvoltos_authType=basictitle=undefined;
>  rel="self" /> type="text">undefined+2018-07-09T22:55:00.214Z3b515deb-9c05-3575-992e-07c19ddeb26ffisheyehttps://fisheye.apache.orghttps://issues.apache.org/jira/plugins/servlet/applinks/oauth/login-dance/authorize?applicationLinkID=3b515deb-9c05-3575-992e-07c19ddeb26fredirectUrl=https%3A%2F%2Fissues.apache.org%2Fjira%2Fplugins%2Fservlet%2Fstreams%2Fapplinks%2Foauth%2Fcompletion%3FapplinkId%3D3b515deb-9c05-3575-992e-07c19ddeb26f782e50b8-e425-3e98-ad61-834beb7b94abApache
>  Software 
> Foundationhttps://cwiki.apache.org/confluencehttps://issues.apache.org/jira/plugins/servlet/applinks/oauth/login-dance/authorize?applicationLinkID=782e50b8-e425-3e98-ad61-834beb7b94abredirectUrl=https%3A%2F%2Fissues.apache.org%2Fjira%2Fplugins%2Fservlet%2Fstreams%2Fapplinks%2Foauth%2Fcompletion%3FapplinkId%3D782e50b8-e425-3e98-ad61-834beb7b94ab  
> xmlns:activity="http://activitystrea.ms/spec/1.0/;>urn:uuid:9ac2d919-baf6-32f4-aaf3-f0267dd45272  type="html">a 
> href="https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt;
>  class="activity-item-user activity-item-author">Mohamedvolt /a> changed 
> the Labels to 'inbox' on a 
> href="https://issues.apache.org/jira/browse/SQOOP-3340;>SQOOP-3340 - 
> Mohamedvolt/a>  xmlns:usr="http://streams.atlassian.com/syndication/username/1.0;>Mohamedvolt
>  
> https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt  xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> href="https://issues.apache.org/jira/secure/useravatar?ownerId=mohamedvoltavatarId=36137s=16;
>  media:height="16" media:width="16" /> xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> href="https://issues.apache.org/jira/secure/useravatar?ownerId=mohamedvoltavatarId=36137s=48;
>  media:height="48" media:width="48" 
> />mohamedvolthttp://activitystrea.ms/schema/1.0/person2018-07-09T22:54:28.107Z2018-07-09T22:54:28.107Z  href="https://issues.apache.org/jira/browse/SQOOP-3340; rel="alternate" 
> /> href="https://issues.apache.org/jira/secure/viewavatar?size=xsmallavatarId=21133avatarType=issuetype;
>  rel="http://streams.atlassian.com/syndication/icon; title="Bug" /> href="https://issues.apache.org/jira/s/7lkp9w/76005/1c78b578e5c0e813799ab2baea47b6f7/1.0/_/download/resources/jira.webresources:global-static/wiki-renderer.css;
>  rel="http://streams.atlassian.com/syndication/css; /> href="https://issues.apache.org/jira/plugins/servlet/streamscomments/issues/SQOOP-3340;
>  rel="http://streams.atlassian.com/syndication/reply-to; /> uri="https://issues.apache.org/jira; 
> />com.atlassian.jirahttp://activitystrea.ms/schema/1.0/updateurn:uuid:d75de89f-7af8-3cde-a23a-c5eedd06e45e  type="text">SQOOP-3340 type="text">Mohamedvolt href="https://issues.apache.org/jira/browse/SQOOP-3340; 
> />http://streams.atlassian.com/syndication/types/issue+  xmlns:activity="http://activitystrea.ms/spec/1.0/; 
> xmlns:thr="http://purl.org/syndication/thread/1.0;>urn:uuid:ea6247fc-f01d-3513-9a43-5ca731446347  type="html">a 
> href="https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt;
>  class="activity-item-user activity-item-author">Mohamedvolt /a> 
> commented on a 
> href="https://issues.apache.org/jira/browse/ZOOKEEPER-3084;>ZOOKEEPER-3084 - 
> Exit when ZooKeeper cannot bind to the leader election port/a> 
> blockquote> p>FormatedSqoop 
> (SQOOP).batnbsp;/p> /blockquote>  xmlns:usr="http://streams.atlassian.com/syndication/username/1.0;>Mohamedvolt
>  
> https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt  xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> href="https://issues.apache.org/jira/secure/useravatar?ownerId=mohamedvoltavatarId=36137s=16;
>  media:height="16" media:width="16" /> 

[jira] [Deleted] (SQOOP-3343) format all DTA.bat SQOOP

2018-07-17 Thread Mark Thomas (JIRA)


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

Mark Thomas deleted SQOOP-3343:
---


> format all DTA.bat SQOOP
> 
>
> Key: SQOOP-3343
> URL: https://issues.apache.org/jira/browse/SQOOP-3343
> Project: Sqoop
>  Issue Type: Bug
>Reporter: Mohamedvolt 
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (SQOOP-3343) format all DTA.bat SQOOP

2018-07-17 Thread Szabolcs Vasas (JIRA)


[ 
https://issues.apache.org/jira/browse/SQOOP-3343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16546194#comment-16546194
 ] 

Szabolcs Vasas commented on SQOOP-3343:
---

Thanks [~dvoros]!

> format all DTA.bat SQOOP
> 
>
> Key: SQOOP-3343
> URL: https://issues.apache.org/jira/browse/SQOOP-3343
> Project: Sqoop
>  Issue Type: Bug
>Reporter: Mohamedvolt 
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (SQOOP-3343) format all DTA.bat SQOOP

2018-07-17 Thread Daniel Voros (JIRA)


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

Daniel Voros resolved SQOOP-3343.
-
Resolution: Invalid

see INFRA-16778

> format all DTA.bat SQOOP
> 
>
> Key: SQOOP-3343
> URL: https://issues.apache.org/jira/browse/SQOOP-3343
> Project: Sqoop
>  Issue Type: Bug
>Reporter: Mohamedvolt 
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (SQOOP-3342) rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order by updated DESC

2018-07-17 Thread Daniel Voros (JIRA)


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

Daniel Voros resolved SQOOP-3342.
-
Resolution: Invalid

see INFRA-16778

> rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order 
> by updated DESC
> -
>
> Key: SQOOP-3342
> URL: https://issues.apache.org/jira/browse/SQOOP-3342
> Project: Sqoop
>  Issue Type: New Feature
>Reporter: Mohamedvolt 
>Priority: Major
>
> rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order 
> by updated DESC



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (SQOOP-3342) rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order by updated DESC

2018-07-17 Thread Mohamedvolt (JIRA)


[ 
https://issues.apache.org/jira/browse/SQOOP-3342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16546150#comment-16546150
 ] 

Mohamedvolt  commented on SQOOP-3342:
-

VolT

> rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order 
> by updated DESC
> -
>
> Key: SQOOP-3342
> URL: https://issues.apache.org/jira/browse/SQOOP-3342
> Project: Sqoop
>  Issue Type: New Feature
>Reporter: Mohamedvolt 
>Priority: Major
>
> rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order 
> by updated DESC



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (SQOOP-3342) rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order by updated DESC

2018-07-17 Thread Mohamedvolt (JIRA)
Mohamedvolt  created SQOOP-3342:
---

 Summary: rformat.batalldata:assignee = currentUser() AND 
resolution = Unresolved order by updated DESC
 Key: SQOOP-3342
 URL: https://issues.apache.org/jira/browse/SQOOP-3342
 Project: Sqoop
  Issue Type: New Feature
Reporter: Mohamedvolt 


rformat.batalldata:assignee = currentUser() AND resolution = Unresolved order 
by updated DESC



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (SQOOP-3343) format all DTA.bat SQOOP

2018-07-17 Thread Mohamedvolt (JIRA)
Mohamedvolt  created SQOOP-3343:
---

 Summary: format all DTA.bat SQOOP
 Key: SQOOP-3343
 URL: https://issues.apache.org/jira/browse/SQOOP-3343
 Project: Sqoop
  Issue Type: Bug
Reporter: Mohamedvolt 






--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (SQOOP-3340) Mohamedvolt

2018-07-17 Thread Mohamedvolt (JIRA)


[ 
https://issues.apache.org/jira/browse/SQOOP-3340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16546140#comment-16546140
 ] 

Mohamedvolt  commented on SQOOP-3340:
-

reformatted all day a bug her.bat;

> Mohamedvolt
> ---
>
> Key: SQOOP-3340
> URL: https://issues.apache.org/jira/browse/SQOOP-3340
> Project: Sqoop
>  Issue Type: Bug
> Environment: 
> formated.bather:_Resubmeesonhttps://api.hipchat.com/sign_in?d=%2Fusers%2Fauthorize%3Fredirect_uri%3Dhttps%3A%2F%2Fissues.apache.org%2Fjira%2Frest%2Fhipchat%2Fintegration%2Flatest%2Foauth2%2Fcomplete%26response_type%3Dcode%26scope%3Dadmin_group%2Bview_group%2Bmanage_rooms%26client_id%3D1e4caa2b-674c-4401-9a6a-dd9245f5190c%26state%3Da36f2ebd1f2e04c76ae66e5869508fa6d19f8bf7
>Reporter: Mohamedvolt 
>Priority: Minor
>  Labels: inbox
>
> release.bat all data
> http://www.w3.org/2005/Atom; 
> xmlns:atlassian="http://streams.atlassian.com/syndication/general/1.0;>https://issues.apache.org/jira/activity?maxResults=10streams=user+IS+mohamedvoltos_authType=basictitle=undefined  
> href="https://issues.apache.org/jira/activity?maxResults=10streams=user+IS+mohamedvoltos_authType=basictitle=undefined;
>  rel="self" /> type="text">undefined+2018-07-09T22:55:00.214Z3b515deb-9c05-3575-992e-07c19ddeb26ffisheyehttps://fisheye.apache.orghttps://issues.apache.org/jira/plugins/servlet/applinks/oauth/login-dance/authorize?applicationLinkID=3b515deb-9c05-3575-992e-07c19ddeb26fredirectUrl=https%3A%2F%2Fissues.apache.org%2Fjira%2Fplugins%2Fservlet%2Fstreams%2Fapplinks%2Foauth%2Fcompletion%3FapplinkId%3D3b515deb-9c05-3575-992e-07c19ddeb26f782e50b8-e425-3e98-ad61-834beb7b94abApache
>  Software 
> Foundationhttps://cwiki.apache.org/confluencehttps://issues.apache.org/jira/plugins/servlet/applinks/oauth/login-dance/authorize?applicationLinkID=782e50b8-e425-3e98-ad61-834beb7b94abredirectUrl=https%3A%2F%2Fissues.apache.org%2Fjira%2Fplugins%2Fservlet%2Fstreams%2Fapplinks%2Foauth%2Fcompletion%3FapplinkId%3D782e50b8-e425-3e98-ad61-834beb7b94ab  
> xmlns:activity="http://activitystrea.ms/spec/1.0/;>urn:uuid:9ac2d919-baf6-32f4-aaf3-f0267dd45272  type="html">a 
> href="https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt;
>  class="activity-item-user activity-item-author">Mohamedvolt /a> changed 
> the Labels to 'inbox' on a 
> href="https://issues.apache.org/jira/browse/SQOOP-3340;>SQOOP-3340 - 
> Mohamedvolt/a>  xmlns:usr="http://streams.atlassian.com/syndication/username/1.0;>Mohamedvolt
>  
> https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt  xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> href="https://issues.apache.org/jira/secure/useravatar?ownerId=mohamedvoltavatarId=36137s=16;
>  media:height="16" media:width="16" /> xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> href="https://issues.apache.org/jira/secure/useravatar?ownerId=mohamedvoltavatarId=36137s=48;
>  media:height="48" media:width="48" 
> />mohamedvolthttp://activitystrea.ms/schema/1.0/person2018-07-09T22:54:28.107Z2018-07-09T22:54:28.107Z  href="https://issues.apache.org/jira/browse/SQOOP-3340; rel="alternate" 
> /> href="https://issues.apache.org/jira/secure/viewavatar?size=xsmallavatarId=21133avatarType=issuetype;
>  rel="http://streams.atlassian.com/syndication/icon; title="Bug" /> href="https://issues.apache.org/jira/s/7lkp9w/76005/1c78b578e5c0e813799ab2baea47b6f7/1.0/_/download/resources/jira.webresources:global-static/wiki-renderer.css;
>  rel="http://streams.atlassian.com/syndication/css; /> href="https://issues.apache.org/jira/plugins/servlet/streamscomments/issues/SQOOP-3340;
>  rel="http://streams.atlassian.com/syndication/reply-to; /> uri="https://issues.apache.org/jira; 
> />com.atlassian.jirahttp://activitystrea.ms/schema/1.0/updateurn:uuid:d75de89f-7af8-3cde-a23a-c5eedd06e45e  type="text">SQOOP-3340 type="text">Mohamedvolt href="https://issues.apache.org/jira/browse/SQOOP-3340; 
> />http://streams.atlassian.com/syndication/types/issue+  xmlns:activity="http://activitystrea.ms/spec/1.0/; 
> xmlns:thr="http://purl.org/syndication/thread/1.0;>urn:uuid:ea6247fc-f01d-3513-9a43-5ca731446347  type="html">a 
> href="https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt;
>  class="activity-item-user activity-item-author">Mohamedvolt /a> 
> commented on a 
> href="https://issues.apache.org/jira/browse/ZOOKEEPER-3084;>ZOOKEEPER-3084 - 
> Exit when ZooKeeper cannot bind to the leader election port/a> 
> blockquote> p>FormatedSqoop 
> (SQOOP).batnbsp;/p> /blockquote>  xmlns:usr="http://streams.atlassian.com/syndication/username/1.0;>Mohamedvolt
>  
> https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt  xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> 

[jira] [Commented] (SQOOP-3340) Mohamedvolt

2018-07-17 Thread Mohamedvolt (JIRA)


[ 
https://issues.apache.org/jira/browse/SQOOP-3340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16546137#comment-16546137
 ] 

Mohamedvolt  commented on SQOOP-3340:
-

reformatted all data.batx7her;rformatalldta.bather:(v7.6.3#76005-sha1:8a4e38d

> Mohamedvolt
> ---
>
> Key: SQOOP-3340
> URL: https://issues.apache.org/jira/browse/SQOOP-3340
> Project: Sqoop
>  Issue Type: Bug
> Environment: 
> formated.bather:_Resubmeesonhttps://api.hipchat.com/sign_in?d=%2Fusers%2Fauthorize%3Fredirect_uri%3Dhttps%3A%2F%2Fissues.apache.org%2Fjira%2Frest%2Fhipchat%2Fintegration%2Flatest%2Foauth2%2Fcomplete%26response_type%3Dcode%26scope%3Dadmin_group%2Bview_group%2Bmanage_rooms%26client_id%3D1e4caa2b-674c-4401-9a6a-dd9245f5190c%26state%3Da36f2ebd1f2e04c76ae66e5869508fa6d19f8bf7
>Reporter: Mohamedvolt 
>Priority: Minor
>  Labels: inbox
>
> release.bat all data
> http://www.w3.org/2005/Atom; 
> xmlns:atlassian="http://streams.atlassian.com/syndication/general/1.0;>https://issues.apache.org/jira/activity?maxResults=10streams=user+IS+mohamedvoltos_authType=basictitle=undefined  
> href="https://issues.apache.org/jira/activity?maxResults=10streams=user+IS+mohamedvoltos_authType=basictitle=undefined;
>  rel="self" /> type="text">undefined+2018-07-09T22:55:00.214Z3b515deb-9c05-3575-992e-07c19ddeb26ffisheyehttps://fisheye.apache.orghttps://issues.apache.org/jira/plugins/servlet/applinks/oauth/login-dance/authorize?applicationLinkID=3b515deb-9c05-3575-992e-07c19ddeb26fredirectUrl=https%3A%2F%2Fissues.apache.org%2Fjira%2Fplugins%2Fservlet%2Fstreams%2Fapplinks%2Foauth%2Fcompletion%3FapplinkId%3D3b515deb-9c05-3575-992e-07c19ddeb26f782e50b8-e425-3e98-ad61-834beb7b94abApache
>  Software 
> Foundationhttps://cwiki.apache.org/confluencehttps://issues.apache.org/jira/plugins/servlet/applinks/oauth/login-dance/authorize?applicationLinkID=782e50b8-e425-3e98-ad61-834beb7b94abredirectUrl=https%3A%2F%2Fissues.apache.org%2Fjira%2Fplugins%2Fservlet%2Fstreams%2Fapplinks%2Foauth%2Fcompletion%3FapplinkId%3D782e50b8-e425-3e98-ad61-834beb7b94ab  
> xmlns:activity="http://activitystrea.ms/spec/1.0/;>urn:uuid:9ac2d919-baf6-32f4-aaf3-f0267dd45272  type="html">a 
> href="https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt;
>  class="activity-item-user activity-item-author">Mohamedvolt /a> changed 
> the Labels to 'inbox' on a 
> href="https://issues.apache.org/jira/browse/SQOOP-3340;>SQOOP-3340 - 
> Mohamedvolt/a>  xmlns:usr="http://streams.atlassian.com/syndication/username/1.0;>Mohamedvolt
>  
> https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt  xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> href="https://issues.apache.org/jira/secure/useravatar?ownerId=mohamedvoltavatarId=36137s=16;
>  media:height="16" media:width="16" /> xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
> href="https://issues.apache.org/jira/secure/useravatar?ownerId=mohamedvoltavatarId=36137s=48;
>  media:height="48" media:width="48" 
> />mohamedvolthttp://activitystrea.ms/schema/1.0/person2018-07-09T22:54:28.107Z2018-07-09T22:54:28.107Z  href="https://issues.apache.org/jira/browse/SQOOP-3340; rel="alternate" 
> /> href="https://issues.apache.org/jira/secure/viewavatar?size=xsmallavatarId=21133avatarType=issuetype;
>  rel="http://streams.atlassian.com/syndication/icon; title="Bug" /> href="https://issues.apache.org/jira/s/7lkp9w/76005/1c78b578e5c0e813799ab2baea47b6f7/1.0/_/download/resources/jira.webresources:global-static/wiki-renderer.css;
>  rel="http://streams.atlassian.com/syndication/css; /> href="https://issues.apache.org/jira/plugins/servlet/streamscomments/issues/SQOOP-3340;
>  rel="http://streams.atlassian.com/syndication/reply-to; /> uri="https://issues.apache.org/jira; 
> />com.atlassian.jirahttp://activitystrea.ms/schema/1.0/updateurn:uuid:d75de89f-7af8-3cde-a23a-c5eedd06e45e  type="text">SQOOP-3340 type="text">Mohamedvolt href="https://issues.apache.org/jira/browse/SQOOP-3340; 
> />http://streams.atlassian.com/syndication/types/issue+  xmlns:activity="http://activitystrea.ms/spec/1.0/; 
> xmlns:thr="http://purl.org/syndication/thread/1.0;>urn:uuid:ea6247fc-f01d-3513-9a43-5ca731446347  type="html">a 
> href="https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt;
>  class="activity-item-user activity-item-author">Mohamedvolt /a> 
> commented on a 
> href="https://issues.apache.org/jira/browse/ZOOKEEPER-3084;>ZOOKEEPER-3084 - 
> Exit when ZooKeeper cannot bind to the leader election port/a> 
> blockquote> p>FormatedSqoop 
> (SQOOP).batnbsp;/p> /blockquote>  xmlns:usr="http://streams.atlassian.com/syndication/username/1.0;>Mohamedvolt
>  
> https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mohamedvolt  xmlns:media="http://purl.org/syndication/atommedia; rel="photo" 
>