|
Search Solutions & Best Practices
Browse Solutions & Best Practices
|
Summary: Using the data offload pattern.
OverviewIn this pattern, all data is stored in the space (on the server side). Excel in turn loads only the relevant data each time and displays it in the spreadsheet. This removes the load from Excel, which is sometimes unable to cope with such large amounts of data, and, if required, updates the displayed data without delay. Using this pattern is divided into 4 main steps:
1 – Loading Data to SpaceAs a first step, you need to load all your data from its current source to the space. GigaSpaces provides OpenSpaces as its main API. However, it is also possible to load data from different types of applications transparently, using different connectors implemented by GigaSpaces:
2 – Loading Data Subset to ExcelAfter you've loaded your data to the space, you need to load the portion you want to work with into your Excel spreadsheet. A SQL query is performed on the space, thus separating the specified data from all the data and loading it into the spreadsheet. This can be done using the Excel Space Viewer, which allows you to perform queries on the space and display the data in the spreadsheet. 3 – Defining Refresh PolicyIf you need the data displayed in your spreadsheet to be constantly updated, you can do this using the Excel Space Viewer. Simply define the required refresh rate in milliseconds in the New View or Configure View window. Excel in turn loads the updated data from the space according to the specified refresh rate. What's Next? |


Add Comment