[jira] Updated: (PIG-6) Addition of Hbase Storage Option In Load/Store Statement

2008-12-05 Thread Samuel Guo (JIRA)
[ https://issues.apache.org/jira/browse/PIG-6?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Samuel Guo updated PIG-6: - Attachment: PIG-6.patch Attach my patch. Now it implements the function of loading a table from hbase into pig to do

[jira] Updated: (PIG-6) Addition of Hbase Storage Option In Load/Store Statement

2008-12-05 Thread Samuel Guo (JIRA)
[ https://issues.apache.org/jira/browse/PIG-6?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Samuel Guo updated PIG-6: - Attachment: hbase-0.18.1.jar attach the hbase jar. and also the hbase-test jar (the test case *TestHBaseStorage* needs

[jira] Updated: (PIG-6) Addition of Hbase Storage Option In Load/Store Statement

2008-12-05 Thread Samuel Guo (JIRA)
[ https://issues.apache.org/jira/browse/PIG-6?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Samuel Guo updated PIG-6: - Attachment: hbase-0.18.1-test.jar > Addition of Hbase Storage Option In Load/Store Statement > ---

What is a relation?

2008-12-05 Thread Alan Gates
All, A question on types in pig. When you say: A = load 'myfile'; what exactly is A? For the moment let us call A a relation, since it is a set of records, and we can pass it to a relational operator, such as FILTER, ORDER, etc. To clarify the question, is a relation equivalent to a bag

[jira] Created: (PIG-558) Distinct followed by a Join results in Invalid size 0 for a tuple error

2008-12-05 Thread Viraj Bhat (JIRA)
Distinct followed by a Join results in Invalid size 0 for a tuple error --- Key: PIG-558 URL: https://issues.apache.org/jira/browse/PIG-558 Project: Pig Issue Type: Bug

[jira] Updated: (PIG-558) Distinct followed by a Join results in Invalid size 0 for a tuple error

2008-12-05 Thread Viraj Bhat (JIRA)
[ https://issues.apache.org/jira/browse/PIG-558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Viraj Bhat updated PIG-558: --- Attachment: table1 Table1 for test > Distinct followed by a Join results in Invalid size 0 for a tuple error >

[jira] Updated: (PIG-558) Distinct followed by a Join results in Invalid size 0 for a tuple error

2008-12-05 Thread Viraj Bhat (JIRA)
[ https://issues.apache.org/jira/browse/PIG-558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Viraj Bhat updated PIG-558: --- Attachment: table2 Table2 for test > Distinct followed by a Join results in Invalid size 0 for a tuple error >

Re: What is a relation?

2008-12-05 Thread pi song
Here is an example that I have given a while ago in JIRA Pig-158 :- A = LOAD 'fil1' ; B = A.($0,$1) ; STORE B ; which is similar to your top-level projection example. I believe there is no distinction between so-called relations and bags in our context. "A top level relation is assumably spread