Batch Processing - Send Current Or Older Events in Batches

Sending events can be done on the spot or in batches, over time. Deciding when to send events depends on your implementation. Here are some use cases that may require batching.

Generally speaking, there are some situations where you cannot send events every time they occur. In this case, you’ll collect events over a period of time and send them in batches later. Other situations include sending historical events.

Insights events (click, conversion, view) used for analytics and/or personalization do not take immediate effect. The delay can range from 10 to 60 minutes depending on how long after the search they are sent. For precise times, see our page on when Insights events take effect.

Batch-Processing

There are two main use cases for this tutorial.

Use Case 1 - historical data

You’ve implemented event-sending. Unfortunately, on day one, you have no events, and so it’s going to take time before you can start personalizing your results.

If you have historical transaction data that can be useful in building your personalization data, this tutorial provide guidelines on how to upload that data into our personalization system.

Use Case 2 - collect and batch

You may want to simply collect events from your front end without immediately sending them to Algolia. This is often done to avoid too much traffic. You collect events during the day and send them all in batches later. Another reason this may be done is to run the events through some sort of algorithm or filtering process before sending the batch.

  • A sale outside of your web app which is still traceable to a certain user; for example, sales in your physical bookshop are still traceable to a customer linked to an account. You might want to collect all physical sales and send them to Algolia in one batch.
  • A conversion for which no search has taken place. For example, when a user directly lands on a page through Google and directly buys the book. This can be done on the spot, or batched.
  • Using your google and other analytics to populate personalization data. This can be done once with historical Google Analytics. You can also collect Google Analytics over the course of time and send them in batches.

How to send batched events

All external events can be sent using any one of our API Clients. All you need is the unique user ID and the objectID.

In the following snippets, we handle a specific scenario: an online bookshop that wants to implement personalization. To achieve that, we will send all historical data we have for each user. In this example, we will send two events - a click and a conversion event - for a user which has the id user-123456 in our system. This user bought the latest Harry Potter book some years ago, which has an objectID of 9780545139700 (the ISBN-13 code for this book).

Click Events

For additional information on sending click events, please refer to the ClickedObjectIds API Ref.

1
2
3
4
5
6
7
8
9
10
$insights = Algolia\AlgoliaSearch\InsightsClient::create(
  'YourApplicationID',
  'YourSearchOnlyAPIKey'
);

$insights->user("user-123456")->clickedObjectIDs(
  'book_click_on_search_page',
  'my_online_bookshop_index',
  ['9780545139700']
);

Conversion Events

For additional information on sending conversion events, please refer to the ConvertedObjectIds API Ref.

1
2
3
4
5
6
7
8
9
10
$insights = Algolia\AlgoliaSearch\InsightsClient::create(
  'YourApplicationID',
  'YourSearchOnlyAPIKey'
);

$insights->user("user-123456")->convertedObjectIDs(
  'book_favorite_on_search_page',
  'my_online_bookshop_index',
  ['9780545139700']
);

Note: You can do the same with all other events - for example, ViewedObjectIds, ClickedFilters, ConvertedFilters, and ViewedFilters.

Did you find this page helpful?