Jump to content
Registration disabled at the moment Read more... ×
david berneda

TeeBI new free demo: One Billion cells in your laptop

Recommended Posts

https://github.com/Steema/TeeBI/blob/master/demos/experiments/bigdata/OneBillion/readme.md

 

This demo shows TeeBI capabilities with big quantities of data, rows and cells.

 

  • It first creates a default dummy database of One Billion cells (thousand millions).
  • Data is saved to a disk file in your TEMP folder: "big_data.bi" (4.5GB) in aprox 4 seconds.
  • Once data has been created it can be loaded again from disk in aprox 2.5 seconds.
  • The "Query and Visualize" form uses this big data to do some visualizations.
    (Queries traversing so many millions of rows are not immediate, of course !)
  • But you can run them in a normal laptop.

 

 // Sum the amount of Sales year by year, all rows:

   BIQuery1.Measures.Add(BigData['Sales']['Total'], TAggregate.Sum);
   BIQuery1.Dimensions.Add(BigData['Sales']['Date']).DatePart := TDateTimePart.Year;

   BIComposer1.Data := BIQuery1.Calculate;

TeeBI_OneBillion_bigdata_Create.png

TeeBI_OneBillion_bigdata_Load.png

TeeBI_OneBillion_Query_Yearly_Sales.png

  • Like 1

Share this post


Link to post

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×