This part of the documentation website is obsolete. Please see the new Solution Hub.

Data Offload - GigaSpaces-Excel Integration


Overview

In 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 all your data to the space.
  2. Loading a subset of your data to the Excel spreadsheet.
  3. If required: Defining a refresh policy.

1 – Loading Data to Space

As 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:

  • For messaging-based applications, refer to the JMS section.
  • If your application is an external data source (like a database), refer to the External Data Source section.

2 – Loading Data Subset to Excel

After 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 Policy

If 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?