[jira] [Updated] (HIVE-1434) Cassandra Storage Handler

2011-11-08 Thread John Sichi (Updated) (JIRA)

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

John Sichi updated HIVE-1434:
-

Status: Open  (was: Patch Available)

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: HIVE-1434-r1182878.patch, cas-handle.tar.gz, 
> cass_handler.diff, hive-1434-1.txt, hive-1434-2-patch.txt, 
> hive-1434-2011-02-26.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-14.patch.txt, 
> hive-1434-3-patch.txt, hive-1434-4-patch.txt, hive-1434-5.patch.txt, 
> hive-1434.2011-02-27.diff.txt, hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (HIVE-1434) Cassandra Storage Handler

2011-10-13 Thread Updated

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

Nicolas Lalevée updated HIVE-1434:
--

Status: Patch Available  (was: Open)

I have refreshed the patch, see HIVE-1434-r1182878.patch

- upgraded to use cassandra 0.8.7
- the dependencies of cassandra maybe be in conflict with the dependencies of 
hive. For instance commons-cli 1.2 is "required" by cassandra, and hive doesn't 
compile against it. So the "exclude" in the ivy.xml. I've put the other 
dependency of cassandra that may get into conflict with hive's ones, but 
commented.
- add ASF headers
- commented code removed
- formatted code
- ivy of hive-cassandra-handler make look like the hive-hbase-handler
- in the build, the build of cassandra-handler is now called everywhere the 
build of hbase-handler is also being called
- in order to make it compile, I had to comment the line 93 of 
/hive/cassandra-handler/src/test/org/apache/hadoop/hive/cassandra/CassandraTestSetup.java
 : it required com.google.common.collect.AbstractIterator, not sure why. 

not actually related:
- in the build.xml files, includeantruntime="false" added to every javac, to 
avoid weired build classpath (as per the warning printed by ant). Apart for the 
'ant' module, obviously.
- in build-common.xml, the pattern used made some retrive conflict, so I have 
fixed the pattern
- in build-common.xml, add a description to the targets test and jar to be 
listed into the target listing (ant -p)

But then, tests didn't passed locally, the classpath seems fucked up. I got:
{code:xml}
  
java.lang.IncompatibleClassChangeError:
 Implementing class
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
at 
org.apache.hadoop.hive.cassandra.FramedConnWrapper.getClient(FramedConnWrapper.java:50)
at 
org.apache.hadoop.hive.cassandra.CassandraTestSetup.preTest(CassandraTestSetup.java:69)
at 
org.apache.hadoop.hive.cassandra.CassandraQTestUtil.(CassandraQTestUtil.java:31)
at 
org.apache.hadoop.hive.cli.TestCassandraCliDriver.setUp(TestCassandraCliDriver.java:41)
at junit.framework.TestCase.runBare(TestCase.java:132)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24)
at junit.extensions.TestSetup$1.protect(TestSetup.java:23)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.extensions.TestSetup.run(TestSetup.java:27)
at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:518)
at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:1052)
at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:906)

{code}

And the embedded cassandra is relying on files on /tmp. In the patch, see the 
file cassandra-handler/conf/cassandra.yaml. I don't know if we can make the 
paths relative.


> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: HIVE-1434-r1182878.patch, cas-handle.tar.gz, 
> cass_handler.diff, hive-1434-1.txt, hive-1434-2-patch.txt, 
> hive-1434-2011-02-26.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-14.patch.txt, 
> hive-1434-3-patch.txt, hive-1434-4-patch.txt, hive-1434-5.patch.txt, 
> hive-1434.2011-02-27.diff.txt, hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically genera

[jira] [Updated] (HIVE-1434) Cassandra Storage Handler

2011-10-13 Thread Updated

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

Nicolas Lalevée updated HIVE-1434:
--

Attachment: HIVE-1434-r1182878.patch

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: HIVE-1434-r1182878.patch, cas-handle.tar.gz, 
> cass_handler.diff, hive-1434-1.txt, hive-1434-2-patch.txt, 
> hive-1434-2011-02-26.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-14.patch.txt, 
> hive-1434-3-patch.txt, hive-1434-4-patch.txt, hive-1434-5.patch.txt, 
> hive-1434.2011-02-27.diff.txt, hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (HIVE-1434) Cassandra Storage Handler

2011-03-25 Thread John Sichi (JIRA)

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

John Sichi updated HIVE-1434:
-

Status: Open  (was: Patch Available)

Some other things which need to be addressed:

* Apache headers are missing on many new files
* all commented-out code should be removed
* new classes (e.g. CassandraStorageHandler) should have Javadoc (and for ones 
that have it, like CassandraQTestUtil, eliminate copy-and-paste evidence)
* there is a file in the patch with the name 
cassandra-handler/src/test/results/cassandra_queries; I don't think it's 
supposed to be there (there should only be the .q.out file)

For the HBase handler, there's a wiki page; it would be good to have one here 
too.

Also, for HBase, we originally had some bugs with joins against tables with 
different schemas (and for joining HBase vs non-HBase tables), so you probably 
want to add some tests for those similar to the ones in hbase_queries.q and 
hbase_joins.q.


> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-2011-03-14.patch.txt, hive-1434-3-patch.txt, hive-1434-4-patch.txt, 
> hive-1434-5.patch.txt, hive-1434.2011-02-27.diff.txt, 
> hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-03-14 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Status: Patch Available  (was: Open)

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-2011-03-14.patch.txt, hive-1434-3-patch.txt, hive-1434-4-patch.txt, 
> hive-1434-5.patch.txt, hive-1434.2011-02-27.diff.txt, 
> hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-03-14 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: hive-1434-2011-03-14.patch.txt

Adds repo to grab jug

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-2011-03-14.patch.txt, hive-1434-3-patch.txt, hive-1434-4-patch.txt, 
> hive-1434-5.patch.txt, hive-1434.2011-02-27.diff.txt, 
> hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-03-14 Thread John Sichi (JIRA)

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

John Sichi updated HIVE-1434:
-

Status: Open  (was: Patch Available)

I looked in hive.log after the test failure and noticed the exception below. So 
maybe we need to tweak ivy some more to include org.safehaus.uuid?

{noformat}
2011-03-14 12:45:49,370 ERROR thrift.Cassandra$Processor 
(Cassandra.java:process(3482)) - Internal error processing system_add_keyspace
java.lang.NoClassDefFoundError: org/safehaus/uuid/UUIDGenerator
at 
org.apache.cassandra.utils.UUIDGen.makeType1UUIDFromHost(UUIDGen.java:48)
{noformat}


> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-3-patch.txt, hive-1434-4-patch.txt, hive-1434-5.patch.txt, 
> hive-1434.2011-02-27.diff.txt, hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-03-07 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: hive-1434-2011-03-07.patch.txt
hive-1434-2011-03-07.patch.txt

Fixes the missing lib dir.

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, 
> hive-1434-2011-03-07.patch.txt, hive-1434-2011-03-07.patch.txt, 
> hive-1434-3-patch.txt, hive-1434-4-patch.txt, hive-1434-5.patch.txt, 
> hive-1434.2011-02-27.diff.txt, hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-03-07 Thread John Sichi (JIRA)

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

John Sichi updated HIVE-1434:
-

Comment: was deleted

(was: After applying patch:

{noformat}
ant clean package
... builds fine ...
ant test -Dtestcase=TestCassandraCliDriver
...
BUILD FAILED
/data/users/jsichi/open/hive-trunk/build-common.xml:317: 
/data/users/jsichi/open/hive-trunk/cassandra-handler/lib does not exist.
{noformat}
)

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, hive-1434-3-patch.txt, 
> hive-1434-4-patch.txt, hive-1434-5.patch.txt, hive-1434.2011-02-27.diff.txt, 
> hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-03-07 Thread John Sichi (JIRA)

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

John Sichi updated HIVE-1434:
-

Comment: was deleted

(was: (Ignore deleted comment...I was in the wrong subdir.)
)

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, hive-1434-3-patch.txt, 
> hive-1434-4-patch.txt, hive-1434-5.patch.txt, hive-1434.2011-02-27.diff.txt, 
> hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-02-27 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: hive-1434.2011-02-27.diff.txt

Now working with ivy maven.

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, hive-1434-3-patch.txt, 
> hive-1434-4-patch.txt, hive-1434-5.patch.txt, hive-1434.2011-02-27.diff.txt, 
> hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-02-26 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Status: Patch Available  (was: Open)

ivy is unable to fetch cassandra jars. I think our private repo's are missing 
them. Tests work when cassandra jars are in the lib directory.

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, hive-1434-3-patch.txt, 
> hive-1434-4-patch.txt, hive-1434-5.patch.txt, hive-cassandra.2011-02-25.txt, 
> hive.diff
>
>
> Add a cassandra storage handler.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-02-26 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: hive-1434-2011-02-26.patch.txt

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-2011-02-26.patch.txt, hive-1434-3-patch.txt, 
> hive-1434-4-patch.txt, hive-1434-5.patch.txt, hive-cassandra.2011-02-25.txt, 
> hive.diff
>
>
> Add a cassandra storage handler.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-02-25 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: hive-cassandra.2011-02-25.txt

A working patch! We just need to remove some debug statements. Thanks to 
Brandon Williams and Jeremy Hanna for debugging. Going to clean up the code 
ASAP.

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-3-patch.txt, hive-1434-4-patch.txt, 
> hive-1434-5.patch.txt, hive-cassandra.2011-02-25.txt, hive.diff
>
>
> Add a cassandra storage handler.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-02-22 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: cass_handler.diff

Got a large portion of the handler working, I had a number of magic cookies. 
During the refactor I managed to break it somehow, but very close to a working 
final.

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Attachments: cas-handle.tar.gz, cass_handler.diff, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-3-patch.txt, hive-1434-4-patch.txt, 
> hive-1434-5.patch.txt, hive.diff
>
>
> Add a cassandra storage handler.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-02-02 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: hive-1434-5.patch.txt

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Fix For: 0.7.0
>
> Attachments: cas-handle.tar.gz, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-3-patch.txt, hive-1434-4-patch.txt, 
> hive-1434-5.patch.txt, hive.diff
>
>
> Add a cassandra storage handler.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (HIVE-1434) Cassandra Storage Handler

2011-02-01 Thread Edward Capriolo (JIRA)

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

Edward Capriolo updated HIVE-1434:
--

Attachment: hive.diff

Started re basing for 7.0. Also working on using class names to differentiate 
between ColumnFamily and SuperColumn family support.

> Cassandra Storage Handler
> -
>
> Key: HIVE-1434
> URL: https://issues.apache.org/jira/browse/HIVE-1434
> Project: Hive
>  Issue Type: New Feature
>Affects Versions: 0.7.0
>Reporter: Edward Capriolo
>Assignee: Edward Capriolo
> Fix For: 0.7.0
>
> Attachments: cas-handle.tar.gz, hive-1434-1.txt, 
> hive-1434-2-patch.txt, hive-1434-3-patch.txt, hive-1434-4-patch.txt, hive.diff
>
>
> Add a cassandra storage handler.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira