[Pig Wiki] Trivial Update of LoadStoreRedesignProposal by DmitriyRyaboy

2009-11-23 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Pig Wiki for change 
notification.

The LoadStoreRedesignProposal page has been changed by DmitriyRyaboy.
http://wiki.apache.org/pig/LoadStoreRedesignProposal?action=diffrev1=36rev2=37

--

  
  /**
   * Set statistics about the data being written.
+  * @throws IOException
   */
- void setStatistics(ResourceStatistics stats);
+ void setStatistics(ResourceStatistics stats, String location, 
Configuration conf) throws IOException;
+ 
+ /**
+  * Set schema of the data being written
+  * @throws IOException 
+  */
+ void setSchema(ResourceSchema schema, String location, Configuration 
conf) throws IOException;
  
  }
  
@@ -699, +706 @@

  Nov 23 2009, Gates
   * Added section Changes to Streaming
  
+ Nov 23 2009, Dmitriy Ryaboy
+  * updated StoreMetadata to match changes made to LoadMetadata
+ 


[Pig Wiki] Trivial Update of LoadStoreRedesignProposal by DmitriyRyaboy

2009-11-11 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Pig Wiki for change 
notification.

The LoadStoreRedesignProposal page has been changed by DmitriyRyaboy.
http://wiki.apache.org/pig/LoadStoreRedesignProposal?action=diffrev1=28rev2=29

--

  // Probably more in here
  }
  
- public long mBytes; // size in megabytes
+ public long mBytes; // disk size in megabytes (file size or 
equivalent)
  public long numRecords;  // number of records
  public ResourceFieldStatistics[] fields;
  
@@ -608, +608 @@

  
  Added a new section 'Implementation details and status'
  
+ Nov 11, Dmitriy Ryaboy
+  Minor clarification of meaning of mBytes in !ResourceStatistics
+